From fb86fe693e6eccc1e6737376d46f67cb48603484 Mon Sep 17 00:00:00 2001 From: Quinn Slack Date: Sun, 26 Mar 2023 14:25:20 -0700 Subject: [PATCH] use esbuild live reload (#49999) Now, after you save a file in your editor, the web browser will automatically perform a full-page reload so that your changes are reflected. See https://esbuild.github.io/api/#live-reload. (Note: Unlike "hot module reloading", this performs a full-page reload, not an in-place reload. It's still a nice time-saver.) --- client/web/dev/esbuild/server.ts | 2 + client/web/src/enterprise/main.tsx | 6 + package.json | 2 +- pnpm-lock.yaml | 1857 +++++++++++++++++++++------- 4 files changed, 1413 insertions(+), 454 deletions(-) diff --git a/client/web/dev/esbuild/server.ts b/client/web/dev/esbuild/server.ts index 95aa60c2a3c..616e60ab752 100644 --- a/client/web/dev/esbuild/server.ts +++ b/client/web/dev/esbuild/server.ts @@ -28,6 +28,8 @@ export const esbuildDevelopmentServer = async ( const ctx = await esbuildContext(BUILD_OPTIONS) + await ctx.watch() + // Start esbuild's server on a random local port. const { host: esbuildHost, port: esbuildPort } = await ctx.serve({ host: 'localhost', diff --git a/client/web/src/enterprise/main.tsx b/client/web/src/enterprise/main.tsx index 3fb255c8f1a..8a1f0cc5643 100644 --- a/client/web/src/enterprise/main.tsx +++ b/client/web/src/enterprise/main.tsx @@ -35,3 +35,9 @@ window.addEventListener('DOMContentLoaded', async () => { logger.error('Failed to initialize the app shell', error) } }) + +if (process.env.DEV_WEB_BUILDER === 'esbuild' && process.env.NODE_ENV === 'development') { + new EventSource('/.assets/esbuild').addEventListener('change', () => { + location.reload() + }) +} diff --git a/package.json b/package.json index 2723747c564..2bf506b343c 100644 --- a/package.json +++ b/package.json @@ -244,7 +244,7 @@ "css-loader": "^6.7.2", "css-minimizer-webpack-plugin": "^4.2.2", "envalid": "^7.3.1", - "esbuild": "^0.17.7", + "esbuild": "^0.17.14", "eslint": "^8.13.0", "eslint-plugin-monorepo": "^0.3.2", "events": "^3.3.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1056f28b044..8d73a2f9e92 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -243,7 +243,7 @@ importers: delay: ^4.4.1 downshift: ^3.4.8 envalid: ^7.3.1 - esbuild: ^0.17.7 + esbuild: ^0.17.14 escape-html: ^1.0.3 eslint: ^8.13.0 eslint-plugin-monorepo: ^0.3.2 @@ -410,7 +410,7 @@ importers: yauzl: ^2.10.0 zustand: ^3.6.9 dependencies: - '@apollo/client': 3.8.0-alpha.7_wgohupceissbkfn62czjahgqgi + '@apollo/client': 3.8.0-alpha.7_e3n27dif46whwrj4763pirjq24 '@codemirror/autocomplete': 6.1.0_42luzusa22g3gmuqmbrrjz6ypm '@codemirror/commands': 6.0.1 '@codemirror/lang-json': 6.0.0 @@ -421,7 +421,7 @@ importers: '@codemirror/search': 6.0.1 '@codemirror/state': 6.2.0 '@codemirror/view': 6.7.3 - '@graphiql/react': 0.10.0_bmpw7hwhcl43myn6zvyddat5se + '@graphiql/react': 0.10.0_4r7n3nwits3hhxvoeutasbehiq '@lezer/common': 1.0.0 '@lezer/highlight': 1.0.0 '@mdi/js': 7.1.96 @@ -448,7 +448,7 @@ importers: '@react-aria/live-announcer': 3.1.0 '@sentry/browser': 7.8.1 '@sourcegraph/extension-api-classes': 1.1.0_sohmsbidf4ixb2vnv3mpdkpiau - '@storybook/addon-controls': 6.5.14_x5a4tzug2dohkdw2il3ayjavoy + '@storybook/addon-controls': 6.5.14_zivmixh3gtpk7iajc6ftfjv25q '@testing-library/react': 13.4.0_ef5jwxihqo6n7gxfmzogljlgcm '@visx/annotation': 2.10.0_ef5jwxihqo6n7gxfmzogljlgcm '@visx/axis': 2.11.1_react@18.1.0 @@ -488,7 +488,7 @@ importers: focus-visible: 5.2.0 fzf: 0.5.1 got: 11.8.5 - graphiql: 1.11.5_bmpw7hwhcl43myn6zvyddat5se + graphiql: 1.11.5_4r7n3nwits3hhxvoeutasbehiq highlight.js: 10.7.3 highlightjs-graphql: 1.0.2 history: 4.5.1 @@ -530,7 +530,7 @@ importers: react-grid-layout: 1.3.4_ef5jwxihqo6n7gxfmzogljlgcm react-resizable: 3.0.4_ef5jwxihqo6n7gxfmzogljlgcm react-router-dom: 6.8.1_ef5jwxihqo6n7gxfmzogljlgcm - react-spring: 9.4.2_uhqtmaalq6dzvuj2e7ivp7mfdy + react-spring: 9.4.2_q62pa2zh755ec65gt45qyms3ji react-sticky-box: 1.0.2_react@18.1.0 react-visibility-sensor: 5.1.1_ef5jwxihqo6n7gxfmzogljlgcm recharts: 1.8.5_ef5jwxihqo6n7gxfmzogljlgcm @@ -590,7 +590,7 @@ importers: '@sentry/webpack-plugin': 1.20.0 '@slack/web-api': 5.15.0 '@sourcegraph/eslint-config': 0.32.0_qxbo2xm47qt6fxnlmgbosp4hva - '@sourcegraph/eslint-plugin-sourcegraph': 1.0.5_emkfwyl7gxrlk4vmzhaprx2gq4 + '@sourcegraph/eslint-plugin-sourcegraph': 1.0.5_ftvidnylzkqlsgegxlccclav64 '@sourcegraph/eslint-plugin-wildcard': link:client/eslint-plugin-wildcard '@sourcegraph/extension-api-stubs': 1.6.1 '@sourcegraph/prettierrc': 3.0.3 @@ -601,22 +601,22 @@ importers: '@storybook/addon-a11y': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/addon-actions': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/addon-console': 1.2.3_473b6rbrlfbkiblbxydosemc4u - '@storybook/addon-docs': 6.5.14_spjdccgaapyjgemnwnkgq3qc3q + '@storybook/addon-docs': 6.5.14_d4gn7xvvo56p54oenpfyoci2p4 '@storybook/addon-links': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/addon-storyshots': 6.5.14_pjsl37iubdwilwlznpkfh4lid4 + '@storybook/addon-storyshots': 6.5.14_wrg2stofvhxprqxmgurdpjqb4m '@storybook/addon-storyshots-puppeteer': 6.5.14_5bskxofbdzb2fai5lt3jrwan6e '@storybook/addon-storysource': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/addon-toolbars': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/addons': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/api': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/builder-webpack5': 6.5.14_x5a4tzug2dohkdw2il3ayjavoy + '@storybook/builder-webpack5': 6.5.14_zivmixh3gtpk7iajc6ftfjv25q '@storybook/client-api': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/components': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/core': 6.5.14_tueg4zwudhrrorrhytjuvedwue - '@storybook/core-common': 6.5.14_x5a4tzug2dohkdw2il3ayjavoy + '@storybook/core': 6.5.14_dve7k7rmriut56u4pmn4vsxpvy + '@storybook/core-common': 6.5.14_zivmixh3gtpk7iajc6ftfjv25q '@storybook/core-events': 6.5.14 - '@storybook/manager-webpack5': 6.5.14_x5a4tzug2dohkdw2il3ayjavoy - '@storybook/react': 6.5.14_qddpsyff5p2eyi23cwk4ibl7gq + '@storybook/manager-webpack5': 6.5.14_zivmixh3gtpk7iajc6ftfjv25q + '@storybook/react': 6.5.14_zbcbuyzzinzubd3j4uofsiyyoq '@storybook/theming': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm '@terminus-term/to-string-loader': 1.1.7-beta.1 '@testing-library/dom': 8.13.0 @@ -626,7 +626,7 @@ importers: '@types/babel__core': 7.1.20 '@types/bloomfilter': 0.0.0 '@types/body-parser': 1.19.2 - '@types/case-sensitive-paths-webpack-plugin': 2.1.6_cf7cgeqdkm72g3fdehkr7aaod4 + '@types/case-sensitive-paths-webpack-plugin': 2.1.6_pdcrf7mb3dfag2zju4x4octu4a '@types/chrome': 0.0.127 '@types/classnames': 2.2.10 '@types/command-exists': 1.2.0 @@ -681,15 +681,15 @@ importers: '@types/simmerjs': 0.5.1 '@types/sinon': 9.0.4 '@types/socket.io-client': 1.4.33 - '@types/speed-measure-webpack-plugin': 1.3.4_cf7cgeqdkm72g3fdehkr7aaod4 + '@types/speed-measure-webpack-plugin': 1.3.4_pdcrf7mb3dfag2zju4x4octu4a '@types/stopword': 2.0.0 '@types/stream-json': 1.7.3 '@types/svgo': 2.6.0 '@types/testing-library__jest-dom': 5.9.5 '@types/uuid': 8.0.1 '@types/vscode': 1.76.0 - '@types/webpack-bundle-analyzer': 4.6.0_cf7cgeqdkm72g3fdehkr7aaod4 - '@types/webpack-stats-plugin': 0.3.2_cf7cgeqdkm72g3fdehkr7aaod4 + '@types/webpack-bundle-analyzer': 4.6.0_pdcrf7mb3dfag2zju4x4octu4a + '@types/webpack-stats-plugin': 0.3.2_pdcrf7mb3dfag2zju4x4octu4a '@types/yauzl': 2.10.0 '@vitejs/plugin-react': 3.1.0_vite@4.1.4 '@vscode/test-electron': 2.1.3 @@ -715,11 +715,11 @@ importers: connect-history-api-fallback: 1.6.0 cross-env: 7.0.2 css-loader: 6.7.2_webpack@5.75.0 - css-minimizer-webpack-plugin: 4.2.2_6hyl5w2uqyeivowpusuiulbmoy + css-minimizer-webpack-plugin: 4.2.2_zj7shrtzhjuywytipisjis56au envalid: 7.3.1 - esbuild: 0.17.8 + esbuild: 0.17.14 eslint: 8.34.0 - eslint-plugin-monorepo: 0.3.2_eygauoactempwaq5usy4yjhpgu + eslint-plugin-monorepo: 0.3.2_6pbktzf24qc5a6dtgnl76m6aru events: 3.3.0 execa: 5.1.1 expect: 27.5.1 @@ -765,7 +765,7 @@ importers: postcss-focus-visible: 5.0.0 postcss-loader: 7.0.2_6jdsrmfenkuhhw3gx4zvjlznce prettier: 2.8.1 - prettier-plugin-svelte: 2.9.0_4h247imu46srxjbpsfob5j3nnq + prettier-plugin-svelte: 2.9.0_c25feh7akwshegxdj2xzo3ajiu punycode: 2.1.1 puppeteer: 13.7.0 react-refresh: 0.10.0 @@ -789,7 +789,7 @@ importers: stylelint: 14.3.0 svgo: 2.8.0 term-size: 2.2.0 - terser-webpack-plugin: 5.3.6_6hyl5w2uqyeivowpusuiulbmoy + terser-webpack-plugin: 5.3.6_zj7shrtzhjuywytipisjis56au ts-loader: 9.4.2_uwemawexpmcwp4gcune73namy4 ts-node: 10.9.1_mywb7jd72dw7cd2gthqi4igidu typed-scss-modules: 4.1.1_sass@1.32.4 @@ -797,7 +797,7 @@ importers: utc-version: 2.0.2 vite: 4.1.4_quzsldgljvtfnh5al3s73hgpcq vsce: 2.7.0 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a webpack-bundle-analyzer: 4.7.0 webpack-cli: 5.0.1_y7ttplitmkohdpgkllksfboxwa webpack-dev-server: 4.11.1_rjsyjcrmk25kqsjzwkvj3a2evq @@ -1182,7 +1182,7 @@ packages: js-yaml: 3.14.1 dev: true - /@apollo/client/3.8.0-alpha.7_wgohupceissbkfn62czjahgqgi: + /@apollo/client/3.8.0-alpha.7_e3n27dif46whwrj4763pirjq24: resolution: {integrity: sha512-pwyACANhC4R0VnEXn4Uv7DEIOr3V6kmKC+Eh3wlspuhP7RLHsU31oFYXmNs2THHAMDdXAK96axutd6qP86eZ+Q==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -1206,7 +1206,7 @@ packages: '@wry/trie': 0.3.0 graphql: 15.4.0 graphql-tag: 2.12.6_graphql@15.4.0 - graphql-ws: 5.11.2_graphql@15.4.0 + graphql-ws: 5.12.0_graphql@15.4.0 hoist-non-react-statics: 3.3.2 optimism: 0.16.1 prop-types: 15.8.1 @@ -1319,6 +1319,11 @@ packages: resolution: {integrity: sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==} engines: {node: '>=6.9.0'} + /@babel/compat-data/7.21.0: + resolution: {integrity: sha512-gMuZsmsgxk/ENC3O/fRw5QY8A9/uxQbbCEypnLIiYYc/qVJtEV7ouxC3EllIIwNzMqAQee5tanFabWsUOutS7g==} + engines: {node: '>=6.9.0'} + dev: false + /@babel/core/7.12.9: resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==} engines: {node: '>=6.9.0'} @@ -1374,6 +1379,16 @@ packages: '@jridgewell/trace-mapping': 0.3.17 jsesc: 2.5.2 + /@babel/generator/7.21.3: + resolution: {integrity: sha512-QS3iR1GYC/YGUnW7IdggFeN5c1poPUurnGttOV/bZgPGV+izC/D8HnD6DLwod0fsatNyVn1G3EVWMYIF0nHbeA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.21.3 + '@jridgewell/gen-mapping': 0.3.2 + '@jridgewell/trace-mapping': 0.3.17 + jsesc: 2.5.2 + dev: false + /@babel/helper-annotate-as-pure/7.18.6: resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} engines: {node: '>=6.9.0'} @@ -1488,6 +1503,13 @@ packages: dependencies: '@babel/types': 7.21.2 + /@babel/helper-member-expression-to-functions/7.21.0: + resolution: {integrity: sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.21.3 + dev: false + /@babel/helper-module-imports/7.18.6: resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} engines: {node: '>=6.9.0'} @@ -1549,6 +1571,20 @@ packages: transitivePeerDependencies: - supports-color + /@babel/helper-replace-supers/7.20.7: + resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-member-expression-to-functions': 7.21.0 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/template': 7.20.7 + '@babel/traverse': 7.21.3 + '@babel/types': 7.21.3 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/helper-simple-access/7.20.2: resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} engines: {node: '>=6.9.0'} @@ -1623,6 +1659,14 @@ packages: dependencies: '@babel/types': 7.21.2 + /@babel/parser/7.21.3: + resolution: {integrity: sha512-lobG0d7aOfQRXh8AyklEAgZGvA4FShxo6xQbUrrT/cNBPUdIDojlokwJsQyCC/eKia7ifqM0yP+2DRZ4WKw2RQ==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.21.3 + dev: false + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} @@ -1657,6 +1701,21 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.21.0: + resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.0 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.21.0 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.0 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} @@ -1713,6 +1772,17 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-export-default-from': 7.12.1_@babel+core@7.21.0 + /@babel/plugin-proposal-export-default-from/7.18.10_@babel+core@7.21.0: + resolution: {integrity: sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.0 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.21.0 + dev: false + /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.21.0: resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} @@ -1787,6 +1857,20 @@ packages: '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.0 '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.21.0 + /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.21.0: + resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.21.0 + '@babel/core': 7.21.0 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.0 + '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.21.0 + dev: false + /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} @@ -1808,6 +1892,18 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.0 + /@babel/plugin-proposal-optional-chaining/7.21.0_@babel+core@7.21.0: + resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.0 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.0 + dev: false + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} @@ -1902,6 +1998,16 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-syntax-export-default-from/7.18.6_@babel+core@7.21.0: + resolution: {integrity: sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.0 + '@babel/helper-plugin-utils': 7.20.2 + dev: false + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.21.0: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: @@ -2056,6 +2162,16 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.21.0: + resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.0 + '@babel/helper-plugin-utils': 7.20.2 + dev: false + /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} engines: {node: '>=6.9.0'} @@ -2069,6 +2185,20 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.21.0: + resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.0 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.21.0 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} @@ -2087,6 +2217,16 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-transform-block-scoping/7.21.0_@babel+core@7.21.0: + resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.0 + '@babel/helper-plugin-utils': 7.20.2 + dev: false + /@babel/plugin-transform-classes/7.20.2_@babel+core@7.21.0: resolution: {integrity: sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g==} engines: {node: '>=6.9.0'} @@ -2106,6 +2246,26 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-transform-classes/7.21.0_@babel+core@7.21.0: + resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.0 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.0 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.21.0 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-split-export-declaration': 7.18.6 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.21.0: resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} engines: {node: '>=6.9.0'} @@ -2115,6 +2275,17 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.21.0: + resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.0 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/template': 7.20.7 + dev: false + /@babel/plugin-transform-destructuring/7.20.2_@babel+core@7.21.0: resolution: {integrity: sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==} engines: {node: '>=6.9.0'} @@ -2124,6 +2295,16 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-transform-destructuring/7.21.3_@babel+core@7.21.0: + resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.0 + '@babel/helper-plugin-utils': 7.20.2 + dev: false + /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} @@ -2163,6 +2344,17 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.21.0 + /@babel/plugin-transform-flow-strip-types/7.21.0_@babel+core@7.21.0: + resolution: {integrity: sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.0 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.21.0 + dev: false + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.21.0: resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} engines: {node: '>=6.9.0'} @@ -2226,6 +2418,20 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-transform-modules-commonjs/7.21.2_@babel+core@7.21.0: + resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.0 + '@babel/helper-module-transforms': 7.21.2 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-simple-access': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/plugin-transform-modules-systemjs/7.19.6_@babel+core@7.21.0: resolution: {integrity: sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==} engines: {node: '>=6.9.0'} @@ -2302,6 +2508,16 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-transform-parameters/7.21.3_@babel+core@7.21.0: + resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.0 + '@babel/helper-plugin-utils': 7.20.2 + dev: false + /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} @@ -2337,6 +2553,17 @@ packages: dependencies: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-react-jsx-self/7.21.0_@babel+core@7.21.0: + resolution: {integrity: sha512-f/Eq+79JEu+KUANFks9UZCcvydOOGMgF7jBrcwjHa5jTZD8JivnhCJYvmlhR/WTXBWonDExPoW0eO/CR4QJirA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.0 + '@babel/helper-plugin-utils': 7.20.2 + dev: false /@babel/plugin-transform-react-jsx-source/7.19.6_@babel+core@7.21.0: resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==} @@ -2360,6 +2587,20 @@ packages: '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.21.0 '@babel/types': 7.21.2 + /@babel/plugin-transform-react-jsx/7.21.0_@babel+core@7.21.0: + resolution: {integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.0 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.21.0 + '@babel/types': 7.21.3 + dev: false + /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} engines: {node: '>=6.9.0'} @@ -2389,8 +2630,8 @@ packages: '@babel/core': 7.21.0 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-runtime/7.19.6_@babel+core@7.21.0: - resolution: {integrity: sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==} + /@babel/plugin-transform-runtime/7.21.0_@babel+core@7.21.0: + resolution: {integrity: sha512-ReY6pxwSzEU0b3r2/T/VhqMKg/AkceBT19X0UptA3/tYi5Pe2eXgEUH+NNMC5nok6c6XQz5tyVTUpuezRfSMSg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -2425,6 +2666,17 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + /@babel/plugin-transform-spread/7.20.7_@babel+core@7.21.0: + resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.0 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + dev: false + /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} @@ -2632,6 +2884,20 @@ packages: pirates: 4.0.5 source-map-support: 0.5.21 + /@babel/register/7.21.0_@babel+core@7.21.0: + resolution: {integrity: sha512-9nKsPmYDi5DidAqJaQooxIhsLJiNMkGr8ypQ8Uic7cIox7UCDsM7HuUGxdGT7mSDTYbqzIdsOWzfBton/YJrMw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.21.0 + clone-deep: 4.0.1 + find-cache-dir: 2.1.0 + make-dir: 2.1.0 + pirates: 4.0.5 + source-map-support: 0.5.21 + dev: false + /@babel/runtime-corejs3/7.10.3: resolution: {integrity: sha512-HA7RPj5xvJxQl429r5Cxr2trJwOfPjKiqhCXcdQPSqO2G0RHPZpXu4fkYmBaTKCp2c/jRaMK9GB/lN+7zvvFPw==} dependencies: @@ -2686,6 +2952,24 @@ packages: transitivePeerDependencies: - supports-color + /@babel/traverse/7.21.3: + resolution: {integrity: sha512-XLyopNeaTancVitYZe2MlUEvgKb6YVVPXzofHgqHijCImG33b/uTurMS488ht/Hbsb2XK3U2BnSTxKVNGV3nGQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.21.3 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.21.0 + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/parser': 7.21.3 + '@babel/types': 7.21.3 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/types/7.10.5: resolution: {integrity: sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q==} dependencies: @@ -2702,6 +2986,15 @@ packages: '@babel/helper-validator-identifier': 7.19.1 to-fast-properties: 2.0.0 + /@babel/types/7.21.3: + resolution: {integrity: sha512-sBGdETxC+/M4o/zKC0sl6sjWv62WFR/uzxrJ6uYyMLZOUlPnwzw0tKgVHOXxaAd5l2g8pEDM5RZ495GPQI77kg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.19.4 + '@babel/helper-validator-identifier': 7.19.1 + to-fast-properties: 2.0.0 + dev: false + /@base2/pretty-print-object/1.0.1: resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} dev: true @@ -2891,12 +3184,21 @@ packages: dev: true optional: true + /@esbuild/android-arm/0.17.14: + resolution: {integrity: sha512-0CnlwnjDU8cks0yJLXfkaU/uoLyRf9VZJs4p1PskBr2AlAHeEsFEwJEo0of/Z3g+ilw5mpyDwThlxzNEIxOE4g==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + requiresBuild: true + optional: true + /@esbuild/android-arm/0.17.8: resolution: {integrity: sha512-0/rb91GYKhrtbeglJXOhAv9RuYimgI8h623TplY2X+vA4EXnk3Zj1fXZreJ0J3OJJu1bwmb0W7g+2cT/d8/l/w==} engines: {node: '>=12'} cpu: [arm] os: [android] requiresBuild: true + dev: false optional: true /@esbuild/android-arm64/0.16.17: @@ -2908,12 +3210,21 @@ packages: dev: true optional: true + /@esbuild/android-arm64/0.17.14: + resolution: {integrity: sha512-eLOpPO1RvtsP71afiFTvS7tVFShJBCT0txiv/xjFBo5a7R7Gjw7X0IgIaFoLKhqXYAXhahoXm7qAmRXhY4guJg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + optional: true + /@esbuild/android-arm64/0.17.8: resolution: {integrity: sha512-oa/N5j6v1svZQs7EIRPqR8f+Bf8g6HBDjD/xHC02radE/NjKHK7oQmtmLxPs1iVwYyvE+Kolo6lbpfEQ9xnhxQ==} engines: {node: '>=12'} cpu: [arm64] os: [android] requiresBuild: true + dev: false optional: true /@esbuild/android-x64/0.16.17: @@ -2925,12 +3236,21 @@ packages: dev: true optional: true + /@esbuild/android-x64/0.17.14: + resolution: {integrity: sha512-nrfQYWBfLGfSGLvRVlt6xi63B5IbfHm3tZCdu/82zuFPQ7zez4XjmRtF/wIRYbJQ/DsZrxJdEvYFE67avYXyng==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + optional: true + /@esbuild/android-x64/0.17.8: resolution: {integrity: sha512-bTliMLqD7pTOoPg4zZkXqCDuzIUguEWLpeqkNfC41ODBHwoUgZ2w5JBeYimv4oP6TDVocoYmEhZrCLQTrH89bg==} engines: {node: '>=12'} cpu: [x64] os: [android] requiresBuild: true + dev: false optional: true /@esbuild/darwin-arm64/0.16.17: @@ -2942,12 +3262,21 @@ packages: dev: true optional: true + /@esbuild/darwin-arm64/0.17.14: + resolution: {integrity: sha512-eoSjEuDsU1ROwgBH/c+fZzuSyJUVXQTOIN9xuLs9dE/9HbV/A5IqdXHU1p2OfIMwBwOYJ9SFVGGldxeRCUJFyw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + optional: true + /@esbuild/darwin-arm64/0.17.8: resolution: {integrity: sha512-ghAbV3ia2zybEefXRRm7+lx8J/rnupZT0gp9CaGy/3iolEXkJ6LYRq4IpQVI9zR97ID80KJVoUlo3LSeA/sMAg==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] requiresBuild: true + dev: false optional: true /@esbuild/darwin-x64/0.16.17: @@ -2959,12 +3288,21 @@ packages: dev: true optional: true + /@esbuild/darwin-x64/0.17.14: + resolution: {integrity: sha512-zN0U8RWfrDttdFNkHqFYZtOH8hdi22z0pFm0aIJPsNC4QQZv7je8DWCX5iA4Zx6tRhS0CCc0XC2m7wKsbWEo5g==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + optional: true + /@esbuild/darwin-x64/0.17.8: resolution: {integrity: sha512-n5WOpyvZ9TIdv2V1K3/iIkkJeKmUpKaCTdun9buhGRWfH//osmUjlv4Z5mmWdPWind/VGcVxTHtLfLCOohsOXw==} engines: {node: '>=12'} cpu: [x64] os: [darwin] requiresBuild: true + dev: false optional: true /@esbuild/freebsd-arm64/0.16.17: @@ -2976,12 +3314,21 @@ packages: dev: true optional: true + /@esbuild/freebsd-arm64/0.17.14: + resolution: {integrity: sha512-z0VcD4ibeZWVQCW1O7szaLxGsx54gcCnajEJMdYoYjLiq4g1jrP2lMq6pk71dbS5+7op/L2Aod+erw+EUr28/A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + optional: true + /@esbuild/freebsd-arm64/0.17.8: resolution: {integrity: sha512-a/SATTaOhPIPFWvHZDoZYgxaZRVHn0/LX1fHLGfZ6C13JqFUZ3K6SMD6/HCtwOQ8HnsNaEeokdiDSFLuizqv5A==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] requiresBuild: true + dev: false optional: true /@esbuild/freebsd-x64/0.16.17: @@ -2993,12 +3340,21 @@ packages: dev: true optional: true + /@esbuild/freebsd-x64/0.17.14: + resolution: {integrity: sha512-hd9mPcxfTgJlolrPlcXkQk9BMwNBvNBsVaUe5eNUqXut6weDQH8whcNaKNF2RO8NbpT6GY8rHOK2A9y++s+ehw==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + optional: true + /@esbuild/freebsd-x64/0.17.8: resolution: {integrity: sha512-xpFJb08dfXr5+rZc4E+ooZmayBW6R3q59daCpKZ/cDU96/kvDM+vkYzNeTJCGd8rtO6fHWMq5Rcv/1cY6p6/0Q==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] requiresBuild: true + dev: false optional: true /@esbuild/linux-arm/0.16.17: @@ -3010,12 +3366,21 @@ packages: dev: true optional: true + /@esbuild/linux-arm/0.17.14: + resolution: {integrity: sha512-BNTl+wSJ1omsH8s3TkQmIIIQHwvwJrU9u1ggb9XU2KTVM4TmthRIVyxSp2qxROJHhZuW/r8fht46/QE8hU8Qvg==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + optional: true + /@esbuild/linux-arm/0.17.8: resolution: {integrity: sha512-6Ij8gfuGszcEwZpi5jQIJCVIACLS8Tz2chnEBfYjlmMzVsfqBP1iGmHQPp7JSnZg5xxK9tjCc+pJ2WtAmPRFVA==} engines: {node: '>=12'} cpu: [arm] os: [linux] requiresBuild: true + dev: false optional: true /@esbuild/linux-arm64/0.16.17: @@ -3027,12 +3392,21 @@ packages: dev: true optional: true + /@esbuild/linux-arm64/0.17.14: + resolution: {integrity: sha512-FhAMNYOq3Iblcj9i+K0l1Fp/MHt+zBeRu/Qkf0LtrcFu3T45jcwB6A1iMsemQ42vR3GBhjNZJZTaCe3VFPbn9g==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + optional: true + /@esbuild/linux-arm64/0.17.8: resolution: {integrity: sha512-v3iwDQuDljLTxpsqQDl3fl/yihjPAyOguxuloON9kFHYwopeJEf1BkDXODzYyXEI19gisEsQlG1bM65YqKSIww==} engines: {node: '>=12'} cpu: [arm64] os: [linux] requiresBuild: true + dev: false optional: true /@esbuild/linux-ia32/0.16.17: @@ -3044,12 +3418,21 @@ packages: dev: true optional: true + /@esbuild/linux-ia32/0.17.14: + resolution: {integrity: sha512-91OK/lQ5y2v7AsmnFT+0EyxdPTNhov3y2CWMdizyMfxSxRqHazXdzgBKtlmkU2KYIc+9ZK3Vwp2KyXogEATYxQ==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + optional: true + /@esbuild/linux-ia32/0.17.8: resolution: {integrity: sha512-8svILYKhE5XetuFk/B6raFYIyIqydQi+GngEXJgdPdI7OMKUbSd7uzR02wSY4kb53xBrClLkhH4Xs8P61Q2BaA==} engines: {node: '>=12'} cpu: [ia32] os: [linux] requiresBuild: true + dev: false optional: true /@esbuild/linux-loong64/0.16.17: @@ -3061,12 +3444,21 @@ packages: dev: true optional: true + /@esbuild/linux-loong64/0.17.14: + resolution: {integrity: sha512-vp15H+5NR6hubNgMluqqKza85HcGJgq7t6rMH7O3Y6ApiOWPkvW2AJfNojUQimfTp6OUrACUXfR4hmpcENXoMQ==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true + optional: true + /@esbuild/linux-loong64/0.17.8: resolution: {integrity: sha512-B6FyMeRJeV0NpyEOYlm5qtQfxbdlgmiGdD+QsipzKfFky0K5HW5Td6dyK3L3ypu1eY4kOmo7wW0o94SBqlqBSA==} engines: {node: '>=12'} cpu: [loong64] os: [linux] requiresBuild: true + dev: false optional: true /@esbuild/linux-mips64el/0.16.17: @@ -3078,12 +3470,21 @@ packages: dev: true optional: true + /@esbuild/linux-mips64el/0.17.14: + resolution: {integrity: sha512-90TOdFV7N+fgi6c2+GO9ochEkmm9kBAKnuD5e08GQMgMINOdOFHuYLPQ91RYVrnWwQ5683sJKuLi9l4SsbJ7Hg==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + optional: true + /@esbuild/linux-mips64el/0.17.8: resolution: {integrity: sha512-CCb67RKahNobjm/eeEqeD/oJfJlrWyw29fgiyB6vcgyq97YAf3gCOuP6qMShYSPXgnlZe/i4a8WFHBw6N8bYAA==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] requiresBuild: true + dev: false optional: true /@esbuild/linux-ppc64/0.16.17: @@ -3095,12 +3496,21 @@ packages: dev: true optional: true + /@esbuild/linux-ppc64/0.17.14: + resolution: {integrity: sha512-NnBGeoqKkTugpBOBZZoktQQ1Yqb7aHKmHxsw43NddPB2YWLAlpb7THZIzsRsTr0Xw3nqiPxbA1H31ZMOG+VVPQ==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + optional: true + /@esbuild/linux-ppc64/0.17.8: resolution: {integrity: sha512-bytLJOi55y55+mGSdgwZ5qBm0K9WOCh0rx+vavVPx+gqLLhxtSFU0XbeYy/dsAAD6xECGEv4IQeFILaSS2auXw==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] requiresBuild: true + dev: false optional: true /@esbuild/linux-riscv64/0.16.17: @@ -3112,12 +3522,21 @@ packages: dev: true optional: true + /@esbuild/linux-riscv64/0.17.14: + resolution: {integrity: sha512-0qdlKScLXA8MGVy21JUKvMzCYWovctuP8KKqhtE5A6IVPq4onxXhSuhwDd2g5sRCzNDlDjitc5sX31BzDoL5Fw==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + optional: true + /@esbuild/linux-riscv64/0.17.8: resolution: {integrity: sha512-2YpRyQJmKVBEHSBLa8kBAtbhucaclb6ex4wchfY0Tj3Kg39kpjeJ9vhRU7x4mUpq8ISLXRXH1L0dBYjAeqzZAw==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] requiresBuild: true + dev: false optional: true /@esbuild/linux-s390x/0.16.17: @@ -3129,12 +3548,21 @@ packages: dev: true optional: true + /@esbuild/linux-s390x/0.17.14: + resolution: {integrity: sha512-Hdm2Jo1yaaOro4v3+6/zJk6ygCqIZuSDJHdHaf8nVH/tfOuoEX5Riv03Ka15LmQBYJObUTNS1UdyoMk0WUn9Ww==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + optional: true + /@esbuild/linux-s390x/0.17.8: resolution: {integrity: sha512-QgbNY/V3IFXvNf11SS6exkpVcX0LJcob+0RWCgV9OiDAmVElnxciHIisoSix9uzYzScPmS6dJFbZULdSAEkQVw==} engines: {node: '>=12'} cpu: [s390x] os: [linux] requiresBuild: true + dev: false optional: true /@esbuild/linux-x64/0.16.17: @@ -3146,12 +3574,21 @@ packages: dev: true optional: true + /@esbuild/linux-x64/0.17.14: + resolution: {integrity: sha512-8KHF17OstlK4DuzeF/KmSgzrTWQrkWj5boluiiq7kvJCiQVzUrmSkaBvcLB2UgHpKENO2i6BthPkmUhNDaJsVw==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + optional: true + /@esbuild/linux-x64/0.17.8: resolution: {integrity: sha512-mM/9S0SbAFDBc4OPoyP6SEOo5324LpUxdpeIUUSrSTOfhHU9hEfqRngmKgqILqwx/0DVJBzeNW7HmLEWp9vcOA==} engines: {node: '>=12'} cpu: [x64] os: [linux] requiresBuild: true + dev: false optional: true /@esbuild/netbsd-x64/0.16.17: @@ -3163,12 +3600,21 @@ packages: dev: true optional: true + /@esbuild/netbsd-x64/0.17.14: + resolution: {integrity: sha512-nVwpqvb3yyXztxIT2+VsxJhB5GCgzPdk1n0HHSnchRAcxqKO6ghXwHhJnr0j/B+5FSyEqSxF4q03rbA2fKXtUQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + optional: true + /@esbuild/netbsd-x64/0.17.8: resolution: {integrity: sha512-eKUYcWaWTaYr9zbj8GertdVtlt1DTS1gNBWov+iQfWuWyuu59YN6gSEJvFzC5ESJ4kMcKR0uqWThKUn5o8We6Q==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] requiresBuild: true + dev: false optional: true /@esbuild/openbsd-x64/0.16.17: @@ -3180,12 +3626,21 @@ packages: dev: true optional: true + /@esbuild/openbsd-x64/0.17.14: + resolution: {integrity: sha512-1RZ7uQQ9zcy/GSAJL1xPdN7NDdOOtNEGiJalg/MOzeakZeTrgH/DoCkbq7TaPDiPhWqnDF+4bnydxRqQD7il6g==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + optional: true + /@esbuild/openbsd-x64/0.17.8: resolution: {integrity: sha512-Vc9J4dXOboDyMXKD0eCeW0SIeEzr8K9oTHJU+Ci1mZc5njPfhKAqkRt3B/fUNU7dP+mRyralPu8QUkiaQn7iIg==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] requiresBuild: true + dev: false optional: true /@esbuild/sunos-x64/0.16.17: @@ -3197,12 +3652,21 @@ packages: dev: true optional: true + /@esbuild/sunos-x64/0.17.14: + resolution: {integrity: sha512-nqMjDsFwv7vp7msrwWRysnM38Sd44PKmW8EzV01YzDBTcTWUpczQg6mGao9VLicXSgW/iookNK6AxeogNVNDZA==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + optional: true + /@esbuild/sunos-x64/0.17.8: resolution: {integrity: sha512-0xvOTNuPXI7ft1LYUgiaXtpCEjp90RuBBYovdd2lqAFxje4sEucurg30M1WIm03+3jxByd3mfo+VUmPtRSVuOw==} engines: {node: '>=12'} cpu: [x64] os: [sunos] requiresBuild: true + dev: false optional: true /@esbuild/win32-arm64/0.16.17: @@ -3214,12 +3678,21 @@ packages: dev: true optional: true + /@esbuild/win32-arm64/0.17.14: + resolution: {integrity: sha512-xrD0mccTKRBBIotrITV7WVQAwNJ5+1va6L0H9zN92v2yEdjfAN7864cUaZwJS7JPEs53bDTzKFbfqVlG2HhyKQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + optional: true + /@esbuild/win32-arm64/0.17.8: resolution: {integrity: sha512-G0JQwUI5WdEFEnYNKzklxtBheCPkuDdu1YrtRrjuQv30WsYbkkoixKxLLv8qhJmNI+ATEWquZe/N0d0rpr55Mg==} engines: {node: '>=12'} cpu: [arm64] os: [win32] requiresBuild: true + dev: false optional: true /@esbuild/win32-ia32/0.16.17: @@ -3231,12 +3704,21 @@ packages: dev: true optional: true + /@esbuild/win32-ia32/0.17.14: + resolution: {integrity: sha512-nXpkz9bbJrLLyUTYtRotSS3t5b+FOuljg8LgLdINWFs3FfqZMtbnBCZFUmBzQPyxqU87F8Av+3Nco/M3hEcu1w==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + optional: true + /@esbuild/win32-ia32/0.17.8: resolution: {integrity: sha512-Fqy63515xl20OHGFykjJsMnoIWS+38fqfg88ClvPXyDbLtgXal2DTlhb1TfTX34qWi3u4I7Cq563QcHpqgLx8w==} engines: {node: '>=12'} cpu: [ia32] os: [win32] requiresBuild: true + dev: false optional: true /@esbuild/win32-x64/0.16.17: @@ -3248,12 +3730,21 @@ packages: dev: true optional: true + /@esbuild/win32-x64/0.17.14: + resolution: {integrity: sha512-gPQmsi2DKTaEgG14hc3CHXHp62k8g6qr0Pas+I4lUxRMugGSATh/Bi8Dgusoz9IQ0IfdrvLpco6kujEIBoaogA==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + optional: true + /@esbuild/win32-x64/0.17.8: resolution: {integrity: sha512-1iuezdyDNngPnz8rLRDO2C/ZZ/emJLb72OsZeqQ6gL6Avko/XCXZw+NuxBSNhBAP13Hie418V7VMt9et1FMvpg==} engines: {node: '>=12'} cpu: [x64] os: [win32] requiresBuild: true + dev: false optional: true /@eslint/eslintrc/1.4.1: @@ -3344,14 +3835,14 @@ packages: graphql: 15.4.0 dev: true - /@graphiql/react/0.10.0_bmpw7hwhcl43myn6zvyddat5se: + /@graphiql/react/0.10.0_4r7n3nwits3hhxvoeutasbehiq: resolution: {integrity: sha512-8Xo1O6SQps6R+mOozN7Ht85/07RwyXgJcKNeR2dWPkJz/1Lww8wVHIKM/AUpo0Aaoh6Ps3UK9ep8DDRfBT4XrQ==} peerDependencies: graphql: ^15.5.0 || ^16.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@graphiql/toolkit': 0.6.1_6p63nldjk57zoqgyrzpcfvblsy + '@graphiql/toolkit': 0.6.1_goxv4r3de763reio6oerkrleh4 codemirror: 5.65.9 codemirror-graphql: 1.3.2_xqxvwl775glgjupzokow46f6pm copy-to-clipboard: 3.3.1 @@ -3368,7 +3859,7 @@ packages: - graphql-ws dev: false - /@graphiql/toolkit/0.6.1_6p63nldjk57zoqgyrzpcfvblsy: + /@graphiql/toolkit/0.6.1_goxv4r3de763reio6oerkrleh4: resolution: {integrity: sha512-rRjbHko6aSg1RWGr3yOJQqEV1tKe8yw9mDSr/18B+eDhVLQ30yyKk2NznFUT9NmIDzWFGR2pH/0lbBhHKmUCqw==} peerDependencies: graphql: ^15.5.0 || ^16.0.0 @@ -3376,7 +3867,7 @@ packages: dependencies: '@n1ru4l/push-pull-async-iterable-iterator': 3.2.0 graphql: 15.4.0 - graphql-ws: 5.11.2_graphql@15.4.0 + graphql-ws: 5.12.0_graphql@15.4.0 meros: 1.2.1_@types+node@13.13.5 transitivePeerDependencies: - '@types/node' @@ -4127,11 +4618,11 @@ packages: - ts-node dev: true - /@jest/create-cache-key-function/29.4.2: - resolution: {integrity: sha512-o2weIg3h8/7+jXF6EjcOiz9TAlNMtcmeH5IARTVgHs3IoQGbh5E/ZLLskfEsHVIYoCKgx+v093Vf8hOgMWggvg==} + /@jest/create-cache-key-function/29.5.0: + resolution: {integrity: sha512-LIDZyZgnZss7uikvBKBB/USWwG+GO8+GnwRWT+YkCGDGsqLQlhm9BC3z6+7+eMs1kUlvXQIWEzBR8Q2Pnvx6lg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.4.2 + '@jest/types': 29.5.0 dev: false /@jest/environment/28.1.3: @@ -4143,14 +4634,14 @@ packages: '@types/node': 13.13.5 jest-mock: 28.1.3 - /@jest/environment/29.4.0: - resolution: {integrity: sha512-ocl1VGDcZHfHnYLTqkBY7yXme1bF4x0BevJ9wb6y0sLOSyBCpp8L5fEASChB+wU53WMrIK6kBfGt+ZYoM2kcdw==} + /@jest/environment/29.5.0: + resolution: {integrity: sha512-5FXw2+wD29YU1d4I2htpRX7jYnAyTRjP2CsXQdo9SAM8g3ifxWPSV0HnClSn71xwctr0U3oZIIH+dtbfmnbXVQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/fake-timers': 29.4.0 - '@jest/types': 29.4.2 - '@types/node': 13.13.5 - jest-mock: 29.4.0 + '@jest/fake-timers': 29.5.0 + '@jest/types': 29.5.0 + '@types/node': 16.18.11 + jest-mock: 29.5.0 dev: false /@jest/expect-utils/28.1.3: @@ -4181,16 +4672,16 @@ packages: jest-mock: 28.1.3 jest-util: 28.1.3 - /@jest/fake-timers/29.4.0: - resolution: {integrity: sha512-8sitzN2QrhDwEwH3kKcMMgrv/UIkmm9AUgHixmn4L++GQ0CqVTIztm3YmaIQooLmW3O4GhizNTTCyq3iLbWcMw==} + /@jest/fake-timers/29.5.0: + resolution: {integrity: sha512-9ARvuAAQcBwDAqOnglWq2zwNIRUDtk/SCkp/ToGEhFv5r86K21l+VEs0qNTaXtyiY0lEePl3kylijSYJQqdbDg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.4.2 + '@jest/types': 29.5.0 '@sinonjs/fake-timers': 10.0.2 - '@types/node': 13.13.5 - jest-message-util: 29.4.0 - jest-mock: 29.4.0 - jest-util: 29.4.0 + '@types/node': 16.18.11 + jest-message-util: 29.5.0 + jest-mock: 29.5.0 + jest-util: 29.5.0 dev: false /@jest/globals/28.1.3: @@ -4253,6 +4744,14 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@sinclair/typebox': 0.25.21 + dev: true + + /@jest/schemas/29.4.3: + resolution: {integrity: sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@sinclair/typebox': 0.25.24 + dev: false /@jest/source-map/28.1.2: resolution: {integrity: sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==} @@ -4370,6 +4869,19 @@ packages: '@types/node': 13.13.5 '@types/yargs': 17.0.16 chalk: 4.1.2 + dev: true + + /@jest/types/29.5.0: + resolution: {integrity: sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/schemas': 29.4.3 + '@types/istanbul-lib-coverage': 2.0.4 + '@types/istanbul-reports': 3.0.1 + '@types/node': 16.18.11 + '@types/yargs': 17.0.23 + chalk: 4.1.2 + dev: false /@jridgewell/gen-mapping/0.1.1: resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} @@ -5434,7 +5946,7 @@ packages: react-refresh: 0.10.0 schema-utils: 3.1.1 source-map: 0.7.3 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a webpack-dev-server: 4.11.1_rjsyjcrmk25kqsjzwkvj3a2evq dev: true @@ -5474,7 +5986,7 @@ packages: react-refresh: 0.11.0 schema-utils: 3.1.1 source-map: 0.7.3 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a webpack-dev-server: 4.11.1_rjsyjcrmk25kqsjzwkvj3a2evq dev: true @@ -5528,7 +6040,7 @@ packages: resolution: {integrity: sha512-ogUZCGf0/UILZt6d8PsO4gA4pXh7f0BumXeFkcCe4AQ65PXPKfAkHC0C30Lheh2EgFOpLZm3twDP1Eiww18gew==} engines: {node: '>=14.19'} dependencies: - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 dev: true /@pnpm/lockfile-file/6.0.5_@pnpm+logger@5.0.0: @@ -5966,7 +6478,7 @@ packages: cosmiconfig: 5.2.1 deepmerge: 3.3.0 glob: 7.2.3 - joi: 17.7.0 + joi: 17.9.1 transitivePeerDependencies: - encoding dev: false @@ -5979,11 +6491,11 @@ packages: - supports-color dev: false - /@react-native-community/cli-doctor/10.1.1: - resolution: {integrity: sha512-9uvUhr6aJu4C7pCTsD9iRS/38tx1mzIrWuEQoh2JffTXg9MOq4jesvobkyKFRD90nOvqunEvfpnWnRdWcZO0Wg==} + /@react-native-community/cli-doctor/10.2.2: + resolution: {integrity: sha512-49Ep2aQOF0PkbAR/TcyMjOm9XwBa8VQr+/Zzf4SJeYwiYLCT1NZRAVAVjYRXl0xqvq5S5mAGZZShS4AQl4WsZw==} dependencies: '@react-native-community/cli-config': 10.1.1 - '@react-native-community/cli-platform-ios': 10.1.1 + '@react-native-community/cli-platform-ios': 10.2.1 '@react-native-community/cli-tools': 10.1.1 chalk: 4.1.2 command-exists: 1.2.9 @@ -6002,10 +6514,10 @@ packages: - encoding dev: false - /@react-native-community/cli-hermes/10.1.3: - resolution: {integrity: sha512-uYl8MLBtuu6bj0tDUzVGf30nK5i9haBv7F0u+NCOq31+zVjcwiUplrCuLorb2dMLMF+Fno9wDxi66W9MxoW4nA==} + /@react-native-community/cli-hermes/10.2.0: + resolution: {integrity: sha512-urfmvNeR8IiO/Sd92UU3xPO+/qI2lwCWQnxOkWaU/i2EITFekE47MD6MZrfVulRVYRi5cuaFqKZO/ccOdOB/vQ==} dependencies: - '@react-native-community/cli-platform-android': 10.1.3 + '@react-native-community/cli-platform-android': 10.2.0 '@react-native-community/cli-tools': 10.1.1 chalk: 4.1.2 hermes-profile-transformer: 0.0.6 @@ -6014,8 +6526,8 @@ packages: - encoding dev: false - /@react-native-community/cli-platform-android/10.1.3: - resolution: {integrity: sha512-8YZEpBL6yd9l4CIoFcLOgrV8x2GDujdqrdWrNsNERDAbsiFwqAQvfjyyb57GAZVuEPEJCoqUlGlMCwOh3XQb9A==} + /@react-native-community/cli-platform-android/10.2.0: + resolution: {integrity: sha512-CBenYwGxwFdObZTn1lgxWtMGA5ms2G/ALQhkS+XTAD7KHDrCxFF9yT/fnAjFZKM6vX/1TqGI1RflruXih3kAhw==} dependencies: '@react-native-community/cli-tools': 10.1.1 chalk: 4.1.2 @@ -6026,31 +6538,45 @@ packages: - encoding dev: false - /@react-native-community/cli-platform-ios/10.1.1: - resolution: {integrity: sha512-EB9/L8j1LqrqyfJtLRixU+d8FIP6Pr83rEgUgXgya/u8wk3h/bvX70w+Ff2skwjdPLr5dLUQ/n5KFX4r3bsNmA==} + /@react-native-community/cli-platform-ios/10.2.0: + resolution: {integrity: sha512-hIPK3iL/mL+0ChXmQ9uqqzNOKA48H+TAzg+hrxQLll/6dNMxDeK9/wZpktcsh8w+CyhqzKqVernGcQs7tPeKGw==} dependencies: '@react-native-community/cli-tools': 10.1.1 chalk: 4.1.2 execa: 1.0.0 + fast-xml-parser: 4.1.3 glob: 7.2.3 ora: 5.4.1 transitivePeerDependencies: - encoding dev: false - /@react-native-community/cli-plugin-metro/10.1.1_@babel+core@7.21.0: - resolution: {integrity: sha512-wEp47le4mzlelDF5sfkaaujUDYcuLep5HZqlcMx7PkL7BA3/fSHdDo1SblqaLgZ1ca6vFU+kfbHueLDct+xwFg==} + /@react-native-community/cli-platform-ios/10.2.1: + resolution: {integrity: sha512-hz4zu4Y6eyj7D0lnZx8Mf2c2si8y+zh/zUTgCTaPPLzQD8jSZNNBtUUiA1cARm2razpe8marCZ1QbTMAGbf3mg==} + dependencies: + '@react-native-community/cli-tools': 10.1.1 + chalk: 4.1.2 + execa: 1.0.0 + fast-xml-parser: 4.1.3 + glob: 7.2.3 + ora: 5.4.1 + transitivePeerDependencies: + - encoding + dev: false + + /@react-native-community/cli-plugin-metro/10.2.2_@babel+core@7.21.0: + resolution: {integrity: sha512-sTGjZlD3OGqbF9v1ajwUIXhGmjw9NyJ/14Lo0sg7xH8Pv4qUd5ZvQ6+DWYrQn3IKFUMfGFWYyL81ovLuPylrpw==} dependencies: '@react-native-community/cli-server-api': 10.1.1 '@react-native-community/cli-tools': 10.1.1 chalk: 4.1.2 execa: 1.0.0 - metro: 0.73.7 - metro-config: 0.73.7 - metro-core: 0.73.7 - metro-react-native-babel-transformer: 0.73.7_@babel+core@7.21.0 - metro-resolver: 0.73.7 - metro-runtime: 0.73.7 + metro: 0.73.9 + metro-config: 0.73.9 + metro-core: 0.73.9 + metro-react-native-babel-transformer: 0.73.9_@babel+core@7.21.0 + metro-resolver: 0.73.9 + metro-runtime: 0.73.9 readline: 1.3.0 transitivePeerDependencies: - '@babel/core' @@ -6090,7 +6616,7 @@ packages: open: 6.4.0 ora: 5.4.1 semver: 6.3.0 - shell-quote: 1.7.4 + shell-quote: 1.8.0 transitivePeerDependencies: - encoding dev: false @@ -6098,29 +6624,29 @@ packages: /@react-native-community/cli-types/10.0.0: resolution: {integrity: sha512-31oUM6/rFBZQfSmDQsT1DX/5fjqfxg7sf2u8kTPJK7rXVya5SRpAMaCXsPAG0omsmJxXt+J9HxUi3Ic+5Ux5Iw==} dependencies: - joi: 17.7.0 + joi: 17.9.1 dev: false - /@react-native-community/cli/10.1.3_@babel+core@7.21.0: - resolution: {integrity: sha512-kzh6bYLGN1q1q0IiczKSP1LTrovFeVzppYRTKohPI9VdyZwp7b5JOgaQMB/Ijtwm3MxBDrZgV9AveH/eUmUcKQ==} + /@react-native-community/cli/10.2.0_@babel+core@7.21.0: + resolution: {integrity: sha512-QH7AFBz5FX2zTZRH/o3XehHrZ0aZZEL5Sh+23nSEFgSj3bLFfvjjZhuoiRSAo7iiBdvAoXrfxQ8TXgg4Xf/7fw==} engines: {node: '>=14'} hasBin: true dependencies: '@react-native-community/cli-clean': 10.1.1 '@react-native-community/cli-config': 10.1.1 '@react-native-community/cli-debugger-ui': 10.0.0 - '@react-native-community/cli-doctor': 10.1.1 - '@react-native-community/cli-hermes': 10.1.3 - '@react-native-community/cli-plugin-metro': 10.1.1_@babel+core@7.21.0 + '@react-native-community/cli-doctor': 10.2.2 + '@react-native-community/cli-hermes': 10.2.0 + '@react-native-community/cli-plugin-metro': 10.2.2_@babel+core@7.21.0 '@react-native-community/cli-server-api': 10.1.1 '@react-native-community/cli-tools': 10.1.1 '@react-native-community/cli-types': 10.0.0 chalk: 4.1.2 - commander: 9.4.1 + commander: 9.5.0 execa: 1.0.0 find-up: 4.1.0 fs-extra: 8.1.0 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 prompts: 2.4.2 semver: 6.3.0 transitivePeerDependencies: @@ -6165,7 +6691,7 @@ packages: react: 18.1.0 dev: false - /@react-spring/konva/9.4.2_rsmh77mjf5d3yaipkzbdcdl4ge: + /@react-spring/konva/9.4.2_juvqtg4kykgnkoer6bn4r6lvtu: resolution: {integrity: sha512-wzSfyHp+qS0OjnipQ8FFrtMh4yu62dkaWAFa+9ThqbQ5KLbEdCK4ArN4h4GfxPoJZ38NJoEO7zbX+ewtQn8N1g==} peerDependencies: konva: '>=2.6' @@ -6176,12 +6702,12 @@ packages: '@react-spring/core': 9.4.2_react@18.1.0 '@react-spring/shared': 9.4.2_react@18.1.0 '@react-spring/types': 9.4.2 - konva: 8.4.2 + konva: 8.4.3 react: 18.1.0 - react-konva: 16.8.6_3g5u2h3wvyy4ctli3w3c2pyuhu + react-konva: 16.8.6_ct25jqyodm5lwk4xx6ybhlxjsi dev: false - /@react-spring/native/9.4.2_uospdmtjzgtsmr2g7nqdo5nu5a: + /@react-spring/native/9.4.2_w22g7zrmlirvzlfb2wxddcdohe: resolution: {integrity: sha512-QVKpeuPvnYwvW4NvzzJcTgvZseMaogVH2zhAWpT4DkXIOICbaIlz1BsE+C+wrtREIq0LCgUFVbeUwaG89t68UA==} peerDependencies: react: ^16.8.0 || ^17.0.0 @@ -6192,7 +6718,7 @@ packages: '@react-spring/shared': 9.4.2_react@18.1.0 '@react-spring/types': 9.4.2 react: 18.1.0 - react-native: 0.71.2_cedkertwcryj7hechfcr5dzii4 + react-native: 0.71.4_cedkertwcryj7hechfcr5dzii4 dev: false /@react-spring/rafz/9.4.2: @@ -6209,7 +6735,7 @@ packages: react: 18.1.0 dev: false - /@react-spring/three/9.4.2_3vv36uhpvb56hddpd2m4jzt56q: + /@react-spring/three/9.4.2_n43b4isi3dphbyu4mx37hqycza: resolution: {integrity: sha512-qAPHOMjQjl9V3Eh4Xbdsdx9mAMe+rtSBfEuZGfoF5l8P8zC42gxggbyM1sKUOip3yyz76YTPiosWkmvgCVxMng==} peerDependencies: '@react-three/fiber': '>=6.0' @@ -6220,9 +6746,9 @@ packages: '@react-spring/core': 9.4.2_react@18.1.0 '@react-spring/shared': 9.4.2_react@18.1.0 '@react-spring/types': 9.4.2 - '@react-three/fiber': 8.11.0_hc4j37td32p6c325ogmkqqcs5m + '@react-three/fiber': 8.12.0_pe6vrm3rd5fblzkjsomhevwd4q react: 18.1.0 - three: 0.149.0 + three: 0.150.1 dev: false /@react-spring/types/9.4.2: @@ -6261,8 +6787,8 @@ packages: zdog: 1.1.3 dev: false - /@react-three/fiber/8.11.0_hc4j37td32p6c325ogmkqqcs5m: - resolution: {integrity: sha512-n9eM7hVsHbecexKK0isvUOPq1SYMHcLhUTZsMZQSYo5RT1yjbgQbbrVtF9bXN9rQgrD9l3V3Ho3ckPp0cNNs1w==} + /@react-three/fiber/8.12.0_pe6vrm3rd5fblzkjsomhevwd4q: + resolution: {integrity: sha512-o6DkNtNHqcOFRbxaiY5xayelE/9+Z0z9wWu5awqjVbc0c/1QM6AttJH6rKW0U/O6LWxSfxDTARXVzknZqpDJ7A==} peerDependencies: expo: '>=43.0' expo-asset: '>=8.4' @@ -6285,15 +6811,15 @@ packages: dependencies: '@babel/runtime': 7.20.6 '@types/react-reconciler': 0.26.7 - its-fine: 1.0.9_react@18.1.0 + its-fine: 1.1.0_react@18.1.0 react: 18.1.0 react-dom: 18.1.0_react@18.1.0 - react-native: 0.71.2_cedkertwcryj7hechfcr5dzii4 + react-native: 0.71.4_cedkertwcryj7hechfcr5dzii4 react-reconciler: 0.27.0_react@18.1.0 react-use-measure: 2.1.1_ef5jwxihqo6n7gxfmzogljlgcm scheduler: 0.21.0 suspend-react: 0.0.8_react@18.1.0 - three: 0.149.0 + three: 0.150.1 zustand: 3.7.2_react@18.1.0 dev: false @@ -6396,6 +6922,11 @@ packages: /@sinclair/typebox/0.25.21: resolution: {integrity: sha512-gFukHN4t8K4+wVC+ECqeqwzBDeFeTzBXroBTqE6vcWrQGbEUpHO7LYdG0f4xnvYq4VOEwITSlHlp0JBAIFMS/g==} + dev: true + + /@sinclair/typebox/0.25.24: + resolution: {integrity: sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==} + dev: false /@sindresorhus/fnv1a/1.2.0: resolution: {integrity: sha512-5ezb/dBSTWtKQ4sLQwMgOJyREXJcZZkTMbendMwKrXTghUhWjZhstzkkmt4/WkFy/GSTSGzfJOKU7dEXv3C/XQ==} @@ -6559,7 +7090,7 @@ packages: - typescript dev: true - /@sourcegraph/eslint-plugin-sourcegraph/1.0.5_emkfwyl7gxrlk4vmzhaprx2gq4: + /@sourcegraph/eslint-plugin-sourcegraph/1.0.5_ftvidnylzkqlsgegxlccclav64: resolution: {integrity: sha512-609NL/0nOnGiDJHrTsIsaffNlm70ua5j7ftX6M3UhbMyMREX5xa7SwZmOjlBSwaaDlaP4SUmXwr7CumI7idM7g==} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -6571,7 +7102,7 @@ packages: dependencies: '@sourcegraph/codemod-transforms': 1.0.2 '@typescript-eslint/experimental-utils': 5.4.0_qxbo2xm47qt6fxnlmgbosp4hva - '@typescript-eslint/parser': 5.51.0_qxbo2xm47qt6fxnlmgbosp4hva + '@typescript-eslint/parser': 5.56.0_qxbo2xm47qt6fxnlmgbosp4hva '@typescript-eslint/scope-manager': 5.4.0 debug: 4.3.4 eslint: 8.34.0 @@ -6900,7 +7431,7 @@ packages: global: 4.4.0 dev: true - /@storybook/addon-controls/6.5.14_x5a4tzug2dohkdw2il3ayjavoy: + /@storybook/addon-controls/6.5.14_zivmixh3gtpk7iajc6ftfjv25q: resolution: {integrity: sha512-p16k/69GjwVtnpEiz0fmb1qoqp/H2d5aaSGDt7VleeXsdhs4Kh0kJyxfLpekHmlzT+5IkO08Nm/U8tJOHbw4Hw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -6915,7 +7446,7 @@ packages: '@storybook/api': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/client-logger': 6.5.14 '@storybook/components': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/core-common': 6.5.14_x5a4tzug2dohkdw2il3ayjavoy + '@storybook/core-common': 6.5.14_zivmixh3gtpk7iajc6ftfjv25q '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/node-logger': 6.5.14 '@storybook/store': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm @@ -6936,7 +7467,7 @@ packages: - webpack-cli dev: false - /@storybook/addon-docs/6.5.14_spjdccgaapyjgemnwnkgq3qc3q: + /@storybook/addon-docs/6.5.14_d4gn7xvvo56p54oenpfyoci2p4: resolution: {integrity: sha512-gapuzDY+dqgS4/Ap9zj5L76OSExBYtVNYej9xTiF+v0Gh4/kty9FIGlVWiqskffOmixL4nlyImpfsSH8V0JnCw==} peerDependencies: '@storybook/mdx2-csf': ^0.0.3 @@ -6957,7 +7488,7 @@ packages: '@storybook/addons': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/api': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/components': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/core-common': 6.5.14_x5a4tzug2dohkdw2il3ayjavoy + '@storybook/core-common': 6.5.14_zivmixh3gtpk7iajc6ftfjv25q '@storybook/core-events': 6.5.14 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/docs-tools': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm @@ -7030,7 +7561,7 @@ packages: optional: true dependencies: '@axe-core/puppeteer': 4.4.2_puppeteer@13.7.0 - '@storybook/addon-storyshots': 6.5.14_pjsl37iubdwilwlznpkfh4lid4 + '@storybook/addon-storyshots': 6.5.14_wrg2stofvhxprqxmgurdpjqb4m '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/node-logger': 6.5.14 '@types/jest-image-snapshot': 4.3.0 @@ -7042,7 +7573,7 @@ packages: - jest dev: true - /@storybook/addon-storyshots/6.5.14_pjsl37iubdwilwlznpkfh4lid4: + /@storybook/addon-storyshots/6.5.14_wrg2stofvhxprqxmgurdpjqb4m: resolution: {integrity: sha512-BSYt+GyMeTlxCwMNVwsmfetKjeIZVVRFdhvtyTuSf9MvikBq+SXw6IihkeWbX2g6pssCz9Wc+s6rRK/HJpqTlA==} peerDependencies: '@angular/core': '>=6.0.0' @@ -7097,11 +7628,11 @@ packages: '@storybook/addons': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/babel-plugin-require-context-hook': 1.0.1 '@storybook/client-api': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/core': 6.5.14_tueg4zwudhrrorrhytjuvedwue + '@storybook/core': 6.5.14_dve7k7rmriut56u4pmn4vsxpvy '@storybook/core-client': 6.5.14_vokkpnb6dktbm3jryv66q5y4k4 - '@storybook/core-common': 6.5.14_x5a4tzug2dohkdw2il3ayjavoy + '@storybook/core-common': 6.5.14_zivmixh3gtpk7iajc6ftfjv25q '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/react': 6.5.14_qddpsyff5p2eyi23cwk4ibl7gq + '@storybook/react': 6.5.14_zbcbuyzzinzubd3j4uofsiyyoq '@types/glob': 7.1.3 '@types/jest': 26.0.24 '@types/jest-specific-snapshot': 0.5.4 @@ -7110,8 +7641,8 @@ packages: global: 4.4.0 jest: 28.1.3_sgfsbmxe5qwkqmsj7h2d7flbny jest-specific-snapshot: 4.0.0_jest@28.1.3 - preact: 10.12.0 - preact-render-to-string: 5.1.19_preact@10.12.0 + preact: 10.13.1 + preact-render-to-string: 5.1.19_preact@10.13.1 pretty-format: 26.6.2 react: 18.1.0 react-dom: 18.1.0_react@18.1.0 @@ -7119,7 +7650,7 @@ packages: read-pkg-up: 7.0.1 regenerator-runtime: 0.13.11 rxjs: 6.6.7 - svelte: 3.55.1 + svelte: 3.57.0 ts-dedent: 2.0.0 transitivePeerDependencies: - '@storybook/builder-webpack5' @@ -7240,7 +7771,7 @@ packages: resolution: {integrity: sha512-WM4vjgSVi8epvGiYfru7BtC3f0tGwNs7QK3Uc4xQn4t5hHQvISnCqbNrHdDYmNW56Do+bBztE8SwP6NGUvd7ww==} dev: true - /@storybook/builder-webpack4/6.5.14_x5a4tzug2dohkdw2il3ayjavoy: + /@storybook/builder-webpack4/6.5.14_zivmixh3gtpk7iajc6ftfjv25q: resolution: {integrity: sha512-0pv8BlsMeiP9VYU2CbCZaa3yXDt1ssb8OeTRDbFC0uFFb3eqslsH68I7XsC8ap/dr0RZR0Edtw0OW3HhkjUXXw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -7258,7 +7789,7 @@ packages: '@storybook/client-api': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/client-logger': 6.5.14 '@storybook/components': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/core-common': 6.5.14_x5a4tzug2dohkdw2il3ayjavoy + '@storybook/core-common': 6.5.14_zivmixh3gtpk7iajc6ftfjv25q '@storybook/core-events': 6.5.14 '@storybook/node-logger': 6.5.14 '@storybook/preview-web': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm @@ -7268,7 +7799,7 @@ packages: '@storybook/theming': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/ui': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm '@types/node': 16.18.11 - '@types/webpack': 5.28.0_cf7cgeqdkm72g3fdehkr7aaod4 + '@types/webpack': 5.28.0_pdcrf7mb3dfag2zju4x4octu4a autoprefixer: 9.8.6 babel-loader: 8.2.5_qoaxtqicpzj5p3ubthw53xafqm case-sensitive-paths-webpack-plugin: 2.4.0 @@ -7280,7 +7811,7 @@ packages: glob: 7.2.3 glob-promise: 3.4.0_glob@7.2.3 global: 4.4.0 - html-webpack-plugin: 4.5.2_bxdbt5phjd6rginoy23zynwkc4 + html-webpack-plugin: 4.5.2_5omko5fol2v5opyqys4spzvogi pnp-webpack-plugin: 1.6.4_typescript@5.0.2 postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 @@ -7295,7 +7826,7 @@ packages: typescript: 5.0.2 url-loader: 4.1.1_p5dl6emkcwslbw72e37w4ug7em util-deprecate: 1.0.2 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a webpack-dev-middleware: 3.7.3_webpack@5.75.0 webpack-filter-warnings-plugin: 1.2.1_webpack@5.75.0 webpack-hot-middleware: 2.25.1 @@ -7311,7 +7842,7 @@ packages: - webpack-cli dev: true - /@storybook/builder-webpack5/6.5.14_x5a4tzug2dohkdw2il3ayjavoy: + /@storybook/builder-webpack5/6.5.14_zivmixh3gtpk7iajc6ftfjv25q: resolution: {integrity: sha512-Ukj7Wwxz/3mKn5TI5mkm2mIm583LxOz78ZrpcOgI+vpjeRlMFXmGGEb68R47SiCdZoVCfIeCXXXzBd6Q6As6QQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -7329,7 +7860,7 @@ packages: '@storybook/client-api': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/client-logger': 6.5.14 '@storybook/components': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/core-common': 6.5.14_x5a4tzug2dohkdw2il3ayjavoy + '@storybook/core-common': 6.5.14_zivmixh3gtpk7iajc6ftfjv25q '@storybook/core-events': 6.5.14 '@storybook/node-logger': 6.5.14 '@storybook/preview-web': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm @@ -7354,11 +7885,11 @@ packages: react-dom: 18.1.0_react@18.1.0 stable: 0.1.8 style-loader: 2.0.0_webpack@5.75.0 - terser-webpack-plugin: 5.3.6_6hyl5w2uqyeivowpusuiulbmoy + terser-webpack-plugin: 5.3.6_zj7shrtzhjuywytipisjis56au ts-dedent: 2.0.0 typescript: 5.0.2 util-deprecate: 1.0.2 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a webpack-dev-middleware: 4.3.0_webpack@5.75.0 webpack-hot-middleware: 2.25.1 webpack-virtual-modules: 0.4.3 @@ -7488,10 +8019,10 @@ packages: typescript: 5.0.2 unfetch: 4.2.0 util-deprecate: 1.0.2 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a dev: true - /@storybook/core-common/6.5.14_x5a4tzug2dohkdw2il3ayjavoy: + /@storybook/core-common/6.5.14_zivmixh3gtpk7iajc6ftfjv25q: resolution: {integrity: sha512-MrxhYXYrtN6z/+tydjPkCIwDQm5q8Jx+w4TPdLKBZu7vzfp6T3sT12Ym96j9MJ42CvE4vSDl/Njbw6C0D+yEVw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -7553,7 +8084,7 @@ packages: ts-dedent: 2.0.0 typescript: 5.0.2 util-deprecate: 1.0.2 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a transitivePeerDependencies: - '@swc/core' - esbuild @@ -7568,7 +8099,7 @@ packages: dependencies: core-js: 3.22.8 - /@storybook/core-server/6.5.14_6cqlq4pglcdmbtze7xyumpr3uy: + /@storybook/core-server/6.5.14_yck42acbkndxhtz5vrf62moxvq: resolution: {integrity: sha512-+Z3lHEsDpiBXt6xBwU5AVBoEkicndnHoiLwhEGPkfixy7POYEEny3cm54tteVxV8O5AHMwsHs54/QD+hHxAXnQ==} peerDependencies: '@storybook/builder-webpack5': '*' @@ -7585,23 +8116,23 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.5.14_x5a4tzug2dohkdw2il3ayjavoy - '@storybook/builder-webpack5': 6.5.14_x5a4tzug2dohkdw2il3ayjavoy + '@storybook/builder-webpack4': 6.5.14_zivmixh3gtpk7iajc6ftfjv25q + '@storybook/builder-webpack5': 6.5.14_zivmixh3gtpk7iajc6ftfjv25q '@storybook/core-client': 6.5.14_vokkpnb6dktbm3jryv66q5y4k4 - '@storybook/core-common': 6.5.14_x5a4tzug2dohkdw2il3ayjavoy + '@storybook/core-common': 6.5.14_zivmixh3gtpk7iajc6ftfjv25q '@storybook/core-events': 6.5.14 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/csf-tools': 6.5.14 - '@storybook/manager-webpack4': 6.5.14_x5a4tzug2dohkdw2il3ayjavoy - '@storybook/manager-webpack5': 6.5.14_x5a4tzug2dohkdw2il3ayjavoy + '@storybook/manager-webpack4': 6.5.14_zivmixh3gtpk7iajc6ftfjv25q + '@storybook/manager-webpack5': 6.5.14_zivmixh3gtpk7iajc6ftfjv25q '@storybook/node-logger': 6.5.14 '@storybook/semver': 7.3.2 '@storybook/store': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/telemetry': 6.5.14_x5a4tzug2dohkdw2il3ayjavoy + '@storybook/telemetry': 6.5.14_zivmixh3gtpk7iajc6ftfjv25q '@types/node': 16.18.11 '@types/node-fetch': 2.5.10 '@types/pretty-hrtime': 1.0.0 - '@types/webpack': 5.28.0_cf7cgeqdkm72g3fdehkr7aaod4 + '@types/webpack': 5.28.0_pdcrf7mb3dfag2zju4x4octu4a better-opn: 2.1.1 boxen: 5.1.2 chalk: 4.1.2 @@ -7631,7 +8162,7 @@ packages: typescript: 5.0.2 util-deprecate: 1.0.2 watchpack: 2.4.0 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a ws: 8.11.0 x-default-browser: 0.4.0 transitivePeerDependencies: @@ -7649,7 +8180,7 @@ packages: - webpack-cli dev: true - /@storybook/core/6.5.14_tueg4zwudhrrorrhytjuvedwue: + /@storybook/core/6.5.14_dve7k7rmriut56u4pmn4vsxpvy: resolution: {integrity: sha512-5rjwZXk++NkKWCmHt/CC+h2L4ZbOYkLJpMmaB97CwgQCA6kaF8xuJqlAwG72VUH3oV+6RntW02X6/ypgX1atPw==} peerDependencies: '@storybook/builder-webpack5': '*' @@ -7666,14 +8197,14 @@ packages: typescript: optional: true dependencies: - '@storybook/builder-webpack5': 6.5.14_x5a4tzug2dohkdw2il3ayjavoy + '@storybook/builder-webpack5': 6.5.14_zivmixh3gtpk7iajc6ftfjv25q '@storybook/core-client': 6.5.14_vokkpnb6dktbm3jryv66q5y4k4 - '@storybook/core-server': 6.5.14_6cqlq4pglcdmbtze7xyumpr3uy - '@storybook/manager-webpack5': 6.5.14_x5a4tzug2dohkdw2il3ayjavoy + '@storybook/core-server': 6.5.14_yck42acbkndxhtz5vrf62moxvq + '@storybook/manager-webpack5': 6.5.14_zivmixh3gtpk7iajc6ftfjv25q react: 18.1.0 react-dom: 18.1.0_react@18.1.0 typescript: 5.0.2 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a transitivePeerDependencies: - '@storybook/mdx2-csf' - '@swc/core' @@ -7736,7 +8267,7 @@ packages: - supports-color dev: true - /@storybook/manager-webpack4/6.5.14_x5a4tzug2dohkdw2il3ayjavoy: + /@storybook/manager-webpack4/6.5.14_zivmixh3gtpk7iajc6ftfjv25q: resolution: {integrity: sha512-ixfJuaG0eiOlxn4i+LJNRUZkm+3WMsiaGUm0hw2XHF0pW3cBIA/+HyzkEwVh/fROHbsOERTkjNl0Ygl12Imw9w==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -7751,12 +8282,12 @@ packages: '@babel/preset-react': 7.18.6_@babel+core@7.21.0 '@storybook/addons': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/core-client': 6.5.14_vokkpnb6dktbm3jryv66q5y4k4 - '@storybook/core-common': 6.5.14_x5a4tzug2dohkdw2il3ayjavoy + '@storybook/core-common': 6.5.14_zivmixh3gtpk7iajc6ftfjv25q '@storybook/node-logger': 6.5.14 '@storybook/theming': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/ui': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm '@types/node': 16.18.11 - '@types/webpack': 5.28.0_cf7cgeqdkm72g3fdehkr7aaod4 + '@types/webpack': 5.28.0_pdcrf7mb3dfag2zju4x4octu4a babel-loader: 8.2.5_qoaxtqicpzj5p3ubthw53xafqm case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 @@ -7766,7 +8297,7 @@ packages: file-loader: 6.2.0_webpack@5.75.0 find-up: 5.0.0 fs-extra: 9.0.1 - html-webpack-plugin: 4.5.2_bxdbt5phjd6rginoy23zynwkc4 + html-webpack-plugin: 4.5.2_5omko5fol2v5opyqys4spzvogi node-fetch: 2.6.7 pnp-webpack-plugin: 1.6.4_typescript@5.0.2 react: 18.1.0 @@ -7781,7 +8312,7 @@ packages: typescript: 5.0.2 url-loader: 4.1.1_p5dl6emkcwslbw72e37w4ug7em util-deprecate: 1.0.2 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a webpack-dev-middleware: 3.7.3_webpack@5.75.0 webpack-virtual-modules: 0.2.2 transitivePeerDependencies: @@ -7796,7 +8327,7 @@ packages: - webpack-cli dev: true - /@storybook/manager-webpack5/6.5.14_x5a4tzug2dohkdw2il3ayjavoy: + /@storybook/manager-webpack5/6.5.14_zivmixh3gtpk7iajc6ftfjv25q: resolution: {integrity: sha512-Z9uXhaBPpUhbLEYkZVm95vKSmyxXk+DLqa1apAQEmHz3EBMTNk/2n0aZnNnsspYzjNP6wvXWT0sGyXG6yhX2cw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -7811,7 +8342,7 @@ packages: '@babel/preset-react': 7.18.6_@babel+core@7.21.0 '@storybook/addons': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/core-client': 6.5.14_vokkpnb6dktbm3jryv66q5y4k4 - '@storybook/core-common': 6.5.14_x5a4tzug2dohkdw2il3ayjavoy + '@storybook/core-common': 6.5.14_zivmixh3gtpk7iajc6ftfjv25q '@storybook/node-logger': 6.5.14 '@storybook/theming': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/ui': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm @@ -7834,11 +8365,11 @@ packages: resolve-from: 5.0.0 style-loader: 2.0.0_webpack@5.75.0 telejson: 6.0.8 - terser-webpack-plugin: 5.3.6_6hyl5w2uqyeivowpusuiulbmoy + terser-webpack-plugin: 5.3.6_zj7shrtzhjuywytipisjis56au ts-dedent: 2.0.0 typescript: 5.0.2 util-deprecate: 1.0.2 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a webpack-dev-middleware: 4.3.0_webpack@5.75.0 webpack-virtual-modules: 0.4.3 transitivePeerDependencies: @@ -7926,12 +8457,12 @@ packages: react-docgen-typescript: 2.2.2_typescript@5.0.2 tslib: 2.1.0 typescript: 5.0.2 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a transitivePeerDependencies: - supports-color dev: true - /@storybook/react/6.5.14_qddpsyff5p2eyi23cwk4ibl7gq: + /@storybook/react/6.5.14_zbcbuyzzinzubd3j4uofsiyyoq: resolution: {integrity: sha512-SL0P5czN3g/IZAYw8ur9I/O8MPZI7Lyd46Pw+B1f7+Ou8eLmhqa8Uc8+3fU6v7ohtUDwsBiTsg3TAfTVEPog4A==} engines: {node: '>=10.13.0'} hasBin: true @@ -7964,13 +8495,13 @@ packages: '@babel/preset-react': 7.18.6_@babel+core@7.21.0 '@pmmmwh/react-refresh-webpack-plugin': 0.5.10_unmakpayn7vcxadrrsbqlrpehy '@storybook/addons': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/builder-webpack5': 6.5.14_x5a4tzug2dohkdw2il3ayjavoy + '@storybook/builder-webpack5': 6.5.14_zivmixh3gtpk7iajc6ftfjv25q '@storybook/client-logger': 6.5.14 - '@storybook/core': 6.5.14_tueg4zwudhrrorrhytjuvedwue - '@storybook/core-common': 6.5.14_x5a4tzug2dohkdw2il3ayjavoy + '@storybook/core': 6.5.14_dve7k7rmriut56u4pmn4vsxpvy + '@storybook/core-common': 6.5.14_zivmixh3gtpk7iajc6ftfjv25q '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/docs-tools': 6.5.14_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/manager-webpack5': 6.5.14_x5a4tzug2dohkdw2il3ayjavoy + '@storybook/manager-webpack5': 6.5.14_zivmixh3gtpk7iajc6ftfjv25q '@storybook/node-logger': 6.5.14 '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_uwemawexpmcwp4gcune73namy4 '@storybook/semver': 7.3.2 @@ -8000,7 +8531,7 @@ packages: ts-dedent: 2.0.0 typescript: 5.0.2 util-deprecate: 1.0.2 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a transitivePeerDependencies: - '@storybook/mdx2-csf' - '@swc/core' @@ -8088,11 +8619,11 @@ packages: ts-dedent: 2.0.0 util-deprecate: 1.0.2 - /@storybook/telemetry/6.5.14_x5a4tzug2dohkdw2il3ayjavoy: + /@storybook/telemetry/6.5.14_zivmixh3gtpk7iajc6ftfjv25q: resolution: {integrity: sha512-AVSw7WyKHrVbXMSZZ0fvg3oAb8xAS7OrmNU6++yUfbuqpF0JNtNkNnRSaJ4Nh7Vujzloy5jYhbpfY44nb/hsCw==} dependencies: '@storybook/client-logger': 6.5.14 - '@storybook/core-common': 6.5.14_x5a4tzug2dohkdw2il3ayjavoy + '@storybook/core-common': 6.5.14_zivmixh3gtpk7iajc6ftfjv25q chalk: 4.1.2 core-js: 3.22.8 detect-package-manager: 2.0.1 @@ -8424,10 +8955,10 @@ packages: '@types/responselike': 1.0.0 dev: false - /@types/case-sensitive-paths-webpack-plugin/2.1.6_cf7cgeqdkm72g3fdehkr7aaod4: + /@types/case-sensitive-paths-webpack-plugin/2.1.6_pdcrf7mb3dfag2zju4x4octu4a: resolution: {integrity: sha512-1bk/krfgJ2bVPUusnmvWHg8Xwr/4I29yFxvZBFi5FZOshQzfcZ7XdutFHpYMs1w5RD319pjJbDk7J2ibWSW6QQ==} dependencies: - '@types/webpack': 5.28.0_cf7cgeqdkm72g3fdehkr7aaod4 + '@types/webpack': 5.28.0_pdcrf7mb3dfag2zju4x4octu4a transitivePeerDependencies: - '@swc/core' - esbuild @@ -8673,16 +9204,32 @@ packages: /@types/istanbul-lib-coverage/2.0.1: resolution: {integrity: sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg==} + /@types/istanbul-lib-coverage/2.0.4: + resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} + dev: false + /@types/istanbul-lib-report/1.1.1: resolution: {integrity: sha512-3BUTyMzbZa2DtDI2BkERNC6jJw2Mr2Y0oGI7mRxYNBPxppbtEK1F66u3bKwU2g+wxwWI7PAoRpJnOY1grJqzHg==} dependencies: '@types/istanbul-lib-coverage': 2.0.1 + /@types/istanbul-lib-report/3.0.0: + resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==} + dependencies: + '@types/istanbul-lib-coverage': 2.0.4 + dev: false + /@types/istanbul-reports/3.0.0: resolution: {integrity: sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==} dependencies: '@types/istanbul-lib-report': 1.1.1 + /@types/istanbul-reports/3.0.1: + resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==} + dependencies: + '@types/istanbul-lib-report': 3.0.0 + dev: false + /@types/jest-image-snapshot/4.3.0: resolution: {integrity: sha512-gb6zF1ICfvzBsQYMTq2qFhhiI46Cab/t5PtLK4Z3mpbyQoyKI2HgCFDi71iE7rjs6TrIPnsf2GXw+mnGvZSgrA==} dependencies: @@ -9084,10 +9631,10 @@ packages: dependencies: '@types/node': 13.13.5 - /@types/speed-measure-webpack-plugin/1.3.4_cf7cgeqdkm72g3fdehkr7aaod4: + /@types/speed-measure-webpack-plugin/1.3.4_pdcrf7mb3dfag2zju4x4octu4a: resolution: {integrity: sha512-bTV+ZctiMPqufZXEnfkNL4DgXzgkq0AnN2hnwqfEZn5ZqqxbGi55Rtp3vrnr8U5jgFJoYFONQCCkGPWsLOT2Sg==} dependencies: - '@types/webpack': 5.28.0_cf7cgeqdkm72g3fdehkr7aaod4 + '@types/webpack': 5.28.0_pdcrf7mb3dfag2zju4x4octu4a transitivePeerDependencies: - '@swc/core' - esbuild @@ -9098,6 +9645,10 @@ packages: /@types/stack-utils/2.0.0: resolution: {integrity: sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw==} + /@types/stack-utils/2.0.1: + resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} + dev: false + /@types/stopword/2.0.0: resolution: {integrity: sha512-R9g+FLEFzxRANryn5f2Beg7WMMopGBNI6Ghi3+8WrOZL7C063db0VuVrEpbKrML8o6sOryNN81ms9waSJITJqw==} dev: true @@ -9172,12 +9723,12 @@ packages: resolution: {integrity: sha512-CQcY3+Fe5hNewHnOEAVYj4dd1do/QHliXaknAEYSXx2KEHUzFibDZSKptCon+HPgK55xx20pR+PBJjf0MomnBA==} dev: true - /@types/webpack-bundle-analyzer/4.6.0_cf7cgeqdkm72g3fdehkr7aaod4: + /@types/webpack-bundle-analyzer/4.6.0_pdcrf7mb3dfag2zju4x4octu4a: resolution: {integrity: sha512-XeQmQCCXdZdap+A/60UKmxW5Mz31Vp9uieGlHB3T4z/o2OLVLtTI3bvTuS6A2OWd/rbAAQiGGWIEFQACu16szA==} dependencies: '@types/node': 13.13.5 tapable: 2.2.1 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a transitivePeerDependencies: - '@swc/core' - esbuild @@ -9188,10 +9739,10 @@ packages: /@types/webpack-env/1.18.0: resolution: {integrity: sha512-56/MAlX5WMsPVbOg7tAxnYvNYMMWr/QJiIp6BxVSW3JJXUVzzOn64qW8TzQyMSqSUFM2+PVI4aUHcHOzIz/1tg==} - /@types/webpack-stats-plugin/0.3.2_cf7cgeqdkm72g3fdehkr7aaod4: + /@types/webpack-stats-plugin/0.3.2_pdcrf7mb3dfag2zju4x4octu4a: resolution: {integrity: sha512-wvIJrybgcuNZ+5sr99RAqr1FmC9tRjAyws7x3jPFHZxtyO+c5n/VbFZATKW5Wec3LOpEuLSFlfrmFF8TALAmwQ==} dependencies: - '@types/webpack': 5.28.0_cf7cgeqdkm72g3fdehkr7aaod4 + '@types/webpack': 5.28.0_pdcrf7mb3dfag2zju4x4octu4a transitivePeerDependencies: - '@swc/core' - esbuild @@ -9199,12 +9750,12 @@ packages: - webpack-cli dev: true - /@types/webpack/5.28.0_cf7cgeqdkm72g3fdehkr7aaod4: + /@types/webpack/5.28.0_pdcrf7mb3dfag2zju4x4octu4a: resolution: {integrity: sha512-8cP0CzcxUiFuA9xGJkfeVpqmWTk9nx6CWwamRGCj95ph1SmlRRk9KlCZ6avhCbZd4L68LvYT6l1kpdEnQXrF8w==} dependencies: '@types/node': 13.13.5 tapable: 2.2.1 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a transitivePeerDependencies: - '@swc/core' - esbuild @@ -9220,6 +9771,10 @@ packages: /@types/yargs-parser/13.0.0: resolution: {integrity: sha512-wBlsw+8n21e6eTd4yVv8YD/E3xq0O6nNnJIquutAsFGE7EyMKz7W6RNT6BRu1SmdgmlCZ9tb0X+j+D6HGr8pZw==} + /@types/yargs-parser/21.0.0: + resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} + dev: false + /@types/yargs/15.0.3: resolution: {integrity: sha512-XCMQRK6kfpNBixHLyHUsGmXrpEmFFxzMrcnSXFMziHd8CoNJo8l16FkHyQq4x+xbM7E2XL83/O78OD8u+iZTdQ==} dependencies: @@ -9235,6 +9790,12 @@ packages: dependencies: '@types/yargs-parser': 13.0.0 + /@types/yargs/17.0.23: + resolution: {integrity: sha512-yuogunc04OnzGQCrfHx+Kk883Q4X0aSwmYZhKjI21m+SVYzjIbrWl8dOOwSv5hf2Um2pdCOXWo9isteZTNXUZQ==} + dependencies: + '@types/yargs-parser': 21.0.0 + dev: false + /@types/yauzl/2.10.0: resolution: {integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==} dependencies: @@ -9307,6 +9868,26 @@ packages: - supports-color dev: true + /@typescript-eslint/parser/5.56.0_qxbo2xm47qt6fxnlmgbosp4hva: + resolution: {integrity: sha512-sn1OZmBxUsgxMmR8a8U5QM/Wl+tyqlH//jTqCg8daTAmhAk26L2PFhcqPLlYBhYUJMZJK276qLXlHN3a83o2cg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 5.56.0 + '@typescript-eslint/types': 5.56.0 + '@typescript-eslint/typescript-estree': 5.56.0_typescript@5.0.2 + debug: 4.3.4 + eslint: 8.34.0 + typescript: 5.0.2 + transitivePeerDependencies: + - supports-color + dev: true + /@typescript-eslint/scope-manager/5.4.0: resolution: {integrity: sha512-pRxFjYwoi8R+n+sibjgF9iUiAELU9ihPBtHzocyW8v8D8G8KeQvXTsW7+CBYIyTYsmhtNk50QPGLE3vrvhM5KA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -9331,6 +9912,14 @@ packages: '@typescript-eslint/visitor-keys': 5.54.1 dev: true + /@typescript-eslint/scope-manager/5.56.0: + resolution: {integrity: sha512-jGYKyt+iBakD0SA5Ww8vFqGpoV2asSjwt60Gl6YcO8ksQ8s2HlUEyHBMSa38bdLopYqGf7EYQMUIGdT/Luw+sw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.56.0 + '@typescript-eslint/visitor-keys': 5.56.0 + dev: true + /@typescript-eslint/type-utils/5.54.1_qxbo2xm47qt6fxnlmgbosp4hva: resolution: {integrity: sha512-WREHsTz0GqVYLIbzIZYbmUUr95DKEKIXZNH57W3s+4bVnuF1TKe2jH8ZNH8rO1CeMY3U4j4UQeqPNkHMiGem3g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -9366,6 +9955,11 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true + /@typescript-eslint/types/5.56.0: + resolution: {integrity: sha512-JyAzbTJcIyhuUhogmiu+t79AkdnqgPUEsxMTMc/dCZczGMJQh1MK2wgrju++yMN6AWroVAy2jxyPcPr3SWCq5w==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + /@typescript-eslint/typescript-estree/5.4.0_typescript@5.0.2: resolution: {integrity: sha512-nhlNoBdhKuwiLMx6GrybPT3SFILm5Gij2YBdPEPFlYNFAXUJWX6QRgvi/lwVoadaQEFsizohs6aFRMqsXI2ewA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -9429,6 +10023,27 @@ packages: - supports-color dev: true + /@typescript-eslint/typescript-estree/5.56.0_typescript@5.0.2: + resolution: {integrity: sha512-41CH/GncsLXOJi0jb74SnC7jVPWeVJ0pxQj8bOjH1h2O26jXN3YHKDT1ejkVz5YeTEQPeLCCRY0U2r68tfNOcg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 5.56.0 + '@typescript-eslint/visitor-keys': 5.56.0 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.3.8 + tsutils: 3.21.0_typescript@5.0.2 + typescript: 5.0.2 + transitivePeerDependencies: + - supports-color + dev: true + /@typescript-eslint/utils/5.54.1_qxbo2xm47qt6fxnlmgbosp4hva: resolution: {integrity: sha512-IY5dyQM8XD1zfDe5X8jegX6r2EVU5o/WJnLu/znLPWCBF7KNGC+adacXnt5jEYS9JixDcoccI6CvE4RCjHMzCQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -9473,6 +10088,14 @@ packages: eslint-visitor-keys: 3.3.0 dev: true + /@typescript-eslint/visitor-keys/5.56.0: + resolution: {integrity: sha512-1mFdED7u5bZpX6Xxf5N9U2c18sb+8EvU3tyOIj6LQZ5OOvnmj8BVeNNP603OFPm5KkS1a7IvCIcwrdHXaEMG/Q==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.56.0 + eslint-visitor-keys: 3.3.0 + dev: true + /@ungap/promise-all-settled/1.1.2: resolution: {integrity: sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==} dev: true @@ -9844,7 +10467,7 @@ packages: webpack: 5.x.x webpack-cli: 5.x.x dependencies: - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a webpack-cli: 5.0.1_y7ttplitmkohdpgkllksfboxwa /@webpack-cli/info/2.0.1_rjsyjcrmk25kqsjzwkvj3a2evq: @@ -9854,7 +10477,7 @@ packages: webpack: 5.x.x webpack-cli: 5.x.x dependencies: - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a webpack-cli: 5.0.1_y7ttplitmkohdpgkllksfboxwa /@webpack-cli/serve/2.0.1_ewykyfxtgmraekx43xa23ld4wa: @@ -9868,7 +10491,7 @@ packages: webpack-dev-server: optional: true dependencies: - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a webpack-cli: 5.0.1_y7ttplitmkohdpgkllksfboxwa webpack-dev-server: 4.11.1_rjsyjcrmk25kqsjzwkvj3a2evq @@ -10013,6 +10636,12 @@ packages: engines: {node: '>=0.4.0'} hasBin: true + /acorn/8.8.2: + resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: false + /address/1.1.2: resolution: {integrity: sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==} engines: {node: '>= 0.12.0'} @@ -10150,7 +10779,7 @@ packages: /ansi-fragments/0.2.1: resolution: {integrity: sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==} dependencies: - colorette: 1.2.2 + colorette: 1.4.0 slice-ansi: 2.1.0 strip-ansi: 5.2.0 dev: false @@ -10241,7 +10870,7 @@ packages: peerDependencies: '@apollo/client': ^3.2.5 dependencies: - '@apollo/client': 3.8.0-alpha.7_wgohupceissbkfn62czjahgqgi + '@apollo/client': 3.8.0-alpha.7_e3n27dif46whwrj4763pirjq24 dev: false /app-root-dir/1.0.2: @@ -10671,7 +11300,7 @@ packages: loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.0 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a /babel-loader/9.1.0_qoaxtqicpzj5p3ubthw53xafqm: resolution: {integrity: sha512-Antt61KJPinUMwHwIIz9T5zfMgevnfZkEVWYDWlG888fgdvRRGD0JTuf/fFozQnfT+uq64sk1bmdHDy/mOEWnA==} @@ -10683,7 +11312,7 @@ packages: '@babel/core': 7.21.0 find-cache-dir: 3.3.2 schema-utils: 4.0.0 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a dev: true /babel-plugin-add-react-displayname/0.0.5: @@ -11175,6 +11804,13 @@ packages: resolution: {integrity: sha512-FozP+z0rEpi3AywbeT1QnOrGFJDbC0986aFDR2NlNLF+/WEYdv/7/qb1FVtla+KBWswkQBOA7okWd+85ThWlCQ==} dependencies: node-int64: 0.4.0 + dev: true + + /bser/2.1.1: + resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} + dependencies: + node-int64: 0.4.0 + dev: false /btoa-lite/1.0.0: resolution: {integrity: sha512-gvW7InbIyF8AicrqWoptdW08pUxuhq8BEgowNajy9RhiE86fmGAGl+bLKo6oB8QP0CkqHLowfN0oJdKC/J6LbA==} @@ -11745,6 +12381,11 @@ packages: /ci-info/3.3.1: resolution: {integrity: sha512-SXgeMX9VwDe7iFFaEWkA5AstuER9YKqy4EhHqr4DVqkwmD9rpVimkMKWHdjn30Ja45txyjhSn63lVX69eVCckg==} + /ci-info/3.8.0: + resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==} + engines: {node: '>=8'} + dev: false + /cjs-module-lexer/1.2.2: resolution: {integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==} dev: true @@ -12063,6 +12704,11 @@ packages: /colorette/1.2.2: resolution: {integrity: sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==} + dev: true + + /colorette/1.4.0: + resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} + dev: false /colorette/2.0.19: resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==} @@ -12133,6 +12779,11 @@ packages: resolution: {integrity: sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw==} engines: {node: ^12.20.0 || >=14} + /commander/9.5.0: + resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} + engines: {node: ^12.20.0 || >=14} + dev: false + /comment-json/4.1.0: resolution: {integrity: sha512-WEghmVYaNq9NlWbrkzQTSsya9ycLyxJxpTQfZEan6a5Jomnjw18zS3Podf8q1Zf9BvonvQd/+Z7Z39L7KKzzdQ==} engines: {node: '>= 6'} @@ -12178,7 +12829,7 @@ packages: dependencies: schema-utils: 4.0.0 serialize-javascript: 6.0.0 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a dev: true /compression/1.7.4: @@ -12442,7 +13093,7 @@ packages: resolution: {integrity: sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==} engines: {node: '>=8'} dependencies: - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 make-dir: 3.1.0 nested-error-stacks: 2.1.0 p-event: 4.2.0 @@ -12570,7 +13221,7 @@ packages: postcss-value-parser: 4.2.0 schema-utils: 2.7.0 semver: 6.3.0 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a dev: true /css-loader/5.2.6_webpack@5.75.0: @@ -12589,7 +13240,7 @@ packages: postcss-value-parser: 4.2.0 schema-utils: 3.1.1 semver: 7.3.8 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a dev: true /css-loader/6.7.2_webpack@5.75.0: @@ -12606,9 +13257,9 @@ packages: postcss-modules-values: 4.0.0_postcss@8.4.21 postcss-value-parser: 4.2.0 semver: 7.3.8 - webpack: 5.75.0_esbuild@0.17.8 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a - /css-minimizer-webpack-plugin/4.2.2_6hyl5w2uqyeivowpusuiulbmoy: + /css-minimizer-webpack-plugin/4.2.2_zj7shrtzhjuywytipisjis56au: resolution: {integrity: sha512-s3Of/4jKfw1Hj9CxEO1E5oXhQAxlayuHO2y/ML+C6I9sQ7FdzfEV6QgMLN3vI+qFsjJGIAFLKtQK7t8BOXAIyA==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -12634,13 +13285,13 @@ packages: optional: true dependencies: cssnano: 4.1.10 - esbuild: 0.17.8 + esbuild: 0.17.14 jest-worker: 29.4.0 postcss: 8.4.21 schema-utils: 4.0.0 serialize-javascript: 6.0.0 source-map: 0.6.1 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a dev: true /css-modules-loader-core/1.1.0: @@ -14160,6 +14811,13 @@ packages: resolution: {integrity: sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==} dependencies: stackframe: 1.3.4 + dev: true + + /error-stack-parser/2.1.4: + resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} + dependencies: + stackframe: 1.3.4 + dev: false /errorhandler/1.5.1: resolution: {integrity: sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==} @@ -14336,6 +14994,35 @@ packages: '@esbuild/win32-x64': 0.16.17 dev: true + /esbuild/0.17.14: + resolution: {integrity: sha512-vOO5XhmVj/1XQR9NQ1UPq6qvMYL7QFJU57J5fKBKBKxp17uDt5PgxFDb4A2nEiXhr1qQs4x0F5+66hVVw4ruNw==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/android-arm': 0.17.14 + '@esbuild/android-arm64': 0.17.14 + '@esbuild/android-x64': 0.17.14 + '@esbuild/darwin-arm64': 0.17.14 + '@esbuild/darwin-x64': 0.17.14 + '@esbuild/freebsd-arm64': 0.17.14 + '@esbuild/freebsd-x64': 0.17.14 + '@esbuild/linux-arm': 0.17.14 + '@esbuild/linux-arm64': 0.17.14 + '@esbuild/linux-ia32': 0.17.14 + '@esbuild/linux-loong64': 0.17.14 + '@esbuild/linux-mips64el': 0.17.14 + '@esbuild/linux-ppc64': 0.17.14 + '@esbuild/linux-riscv64': 0.17.14 + '@esbuild/linux-s390x': 0.17.14 + '@esbuild/linux-x64': 0.17.14 + '@esbuild/netbsd-x64': 0.17.14 + '@esbuild/openbsd-x64': 0.17.14 + '@esbuild/sunos-x64': 0.17.14 + '@esbuild/win32-arm64': 0.17.14 + '@esbuild/win32-ia32': 0.17.14 + '@esbuild/win32-x64': 0.17.14 + /esbuild/0.17.8: resolution: {integrity: sha512-g24ybC3fWhZddZK6R3uD2iF/RIPnRpwJAqLov6ouX3hMbY4+tKolP0VMF3zuIYCaXun+yHwS5IPQ91N2BT191g==} engines: {node: '>=12'} @@ -14364,6 +15051,7 @@ packages: '@esbuild/win32-arm64': 0.17.8 '@esbuild/win32-ia32': 0.17.8 '@esbuild/win32-x64': 0.17.8 + dev: false /escalade/3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} @@ -14448,7 +15136,7 @@ packages: - supports-color dev: true - /eslint-module-utils/2.7.3_eygauoactempwaq5usy4yjhpgu: + /eslint-module-utils/2.7.3_6pbktzf24qc5a6dtgnl76m6aru: resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} engines: {node: '>=4'} peerDependencies: @@ -14466,7 +15154,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.51.0_qxbo2xm47qt6fxnlmgbosp4hva + '@typescript-eslint/parser': 5.56.0_qxbo2xm47qt6fxnlmgbosp4hva debug: 3.2.7 find-up: 2.1.0 transitivePeerDependencies: @@ -14606,10 +15294,10 @@ packages: minimatch: 3.1.2 dev: true - /eslint-plugin-monorepo/0.3.2_eygauoactempwaq5usy4yjhpgu: + /eslint-plugin-monorepo/0.3.2_6pbktzf24qc5a6dtgnl76m6aru: resolution: {integrity: sha512-CypTAqHjTR05XxzqDj7x88oVu2GiqqQA/datD9kIwciHzpj0oE4YbTdyEFFKADgd7dbd21KliSlUpOvo626FBw==} dependencies: - eslint-module-utils: 2.7.3_eygauoactempwaq5usy4yjhpgu + eslint-module-utils: 2.7.3_6pbktzf24qc5a6dtgnl76m6aru get-monorepo-packages: 1.2.0 globby: 7.1.1 load-json-file: 4.0.0 @@ -15190,6 +15878,13 @@ packages: resolution: {integrity: sha512-R9bHCvweUxxwkDwhjav5vxpFvdPGlVngtqmx4pIZfSUhM/Q4NiIUHB456BAf+Q1Nwu3HEZYONtu+Rya+af4jiQ==} dev: true + /fast-xml-parser/4.1.3: + resolution: {integrity: sha512-LsNDahCiCcJPe8NO7HijcnukHB24tKbfDDA5IILx9dmW3Frb52lhbeX6MPNUSvyGNfav2VTYpJ/OqkRoVLrh2Q==} + hasBin: true + dependencies: + strnum: 1.0.5 + dev: false + /fastest-levenshtein/1.0.12: resolution: {integrity: sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==} @@ -15217,6 +15912,13 @@ packages: resolution: {integrity: sha512-+6dk4acfiWsbMc8pH0boQDeQprOM4mO/kS4IAvZVJZk4B6CZYLg4DkTGbL82vhglUXDtkJPnLfO0WXv3uxGNfA==} dependencies: bser: 2.0.0 + dev: true + + /fb-watchman/2.0.2: + resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + dependencies: + bser: 2.1.1 + dev: false /fbjs-css-vars/1.0.2: resolution: {integrity: sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==} @@ -15273,7 +15975,7 @@ packages: dependencies: loader-utils: 2.0.4 schema-utils: 3.1.1 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a dev: true /file-system-cache/1.0.5: @@ -15521,7 +16223,7 @@ packages: semver: 5.7.1 tapable: 1.1.3 typescript: 5.0.2 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a worker-rpc: 0.1.1 transitivePeerDependencies: - supports-color @@ -15556,7 +16258,7 @@ packages: semver: 7.3.8 tapable: 1.1.3 typescript: 5.0.2 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a /form-data-encoder/1.7.2: resolution: {integrity: sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==} @@ -16303,18 +17005,21 @@ packages: /graceful-fs/4.2.10: resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} + /graceful-fs/4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + /grapheme-splitter/1.0.4: resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} - /graphiql/1.11.5_bmpw7hwhcl43myn6zvyddat5se: + /graphiql/1.11.5_4r7n3nwits3hhxvoeutasbehiq: resolution: {integrity: sha512-NI92XdSVwXTsqzJc6ykaAkKVMeC8IRRp3XzkxVQwtqDsZlVKtR2ZnssXNYt05TMGbi1ehoipn9tFywVohOlHjg==} peerDependencies: graphql: ^15.5.0 || ^16.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@graphiql/react': 0.10.0_bmpw7hwhcl43myn6zvyddat5se - '@graphiql/toolkit': 0.6.1_6p63nldjk57zoqgyrzpcfvblsy + '@graphiql/react': 0.10.0_4r7n3nwits3hhxvoeutasbehiq + '@graphiql/toolkit': 0.6.1_goxv4r3de763reio6oerkrleh4 entities: 2.1.0 graphql: 15.4.0 graphql-language-service: 5.1.0_graphql@15.4.0 @@ -16416,6 +17121,15 @@ packages: graphql: '>=0.11 <=16' dependencies: graphql: 15.4.0 + dev: true + + /graphql-ws/5.12.0_graphql@15.4.0: + resolution: {integrity: sha512-PA3ImUp8utrpEjoxBMhvxsjkStvFEdU0E1gEBREt8HZIWkxOUymwJBhFnBL7t/iHhUq1GVPeZevPinkZFENxTw==} + engines: {node: '>=10'} + peerDependencies: + graphql: '>=0.11 <=16' + dependencies: + graphql: 15.4.0 /graphql/14.7.0: resolution: {integrity: sha512-l0xWZpoPKpppFzMfvVyFmp9vLN7w/ZZJPefUicMCepfJeQ8sMcztloGYY9DfjVPo6tIUDzU5Hw3MUbIjj9AVVA==} @@ -16520,7 +17234,7 @@ packages: source-map: 0.6.1 wordwrap: 1.0.0 optionalDependencies: - uglify-js: 3.14.2 + uglify-js: 3.17.4 /hard-rejection/2.1.0: resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} @@ -16720,7 +17434,7 @@ packages: resolution: {integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==} engines: {node: '>=8'} dependencies: - source-map: 0.7.3 + source-map: 0.7.4 dev: false /hex-color-regex/1.1.0: @@ -16853,7 +17567,7 @@ packages: resolution: {integrity: sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==} dev: true - /html-webpack-plugin/4.5.2_bxdbt5phjd6rginoy23zynwkc4: + /html-webpack-plugin/4.5.2_5omko5fol2v5opyqys4spzvogi: resolution: {integrity: sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==} engines: {node: '>=6.9'} peerDependencies: @@ -16861,14 +17575,14 @@ packages: dependencies: '@types/html-minifier-terser': 5.1.1 '@types/tapable': 1.0.7 - '@types/webpack': 5.28.0_cf7cgeqdkm72g3fdehkr7aaod4 + '@types/webpack': 5.28.0_pdcrf7mb3dfag2zju4x4octu4a html-minifier-terser: 5.1.1 loader-utils: 1.4.0 lodash: 4.17.21 pretty-error: 2.1.1 tapable: 1.1.3 util.promisify: 1.0.0 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a transitivePeerDependencies: - '@swc/core' - esbuild @@ -16887,7 +17601,7 @@ packages: lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.1 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a dev: true /htmlparser2/6.1.0: @@ -17997,8 +18711,8 @@ packages: iterate-iterator: 1.0.1 dev: true - /its-fine/1.0.9_react@18.1.0: - resolution: {integrity: sha512-Ph+vcp1R100JOM4raXmDx/wCTi4kMkMXiFE108qGzsLdghXFPqad82UJJtqT1jwdyWYkTU6eDpDnol/ZIzW+1g==} + /its-fine/1.1.0_react@18.1.0: + resolution: {integrity: sha512-nEoEt5EYSed1mmvwCRv3l1+6T7pyu4ltyBihzPjUtaSWhFhUPU/c7xkPDIutTh8FeIv0F1F5wOFYI8a2s5rlBA==} peerDependencies: react: '>=18.0' dependencies: @@ -18199,16 +18913,16 @@ packages: jest-util: 28.1.3 dev: true - /jest-environment-node/29.4.0: - resolution: {integrity: sha512-WVveE3fYSH6FhDtZdvXhFKeLsDRItlQgnij+HQv6ZKxTdT1DB5O0sHXKCEC3K5mHraMs1Kzn4ch9jXC7H4L4wA==} + /jest-environment-node/29.5.0: + resolution: {integrity: sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 29.4.0 - '@jest/fake-timers': 29.4.0 - '@jest/types': 29.4.2 - '@types/node': 13.13.5 - jest-mock: 29.4.0 - jest-util: 29.4.0 + '@jest/environment': 29.5.0 + '@jest/fake-timers': 29.5.0 + '@jest/types': 29.5.0 + '@types/node': 16.18.11 + jest-mock: 29.5.0 + jest-util: 29.5.0 dev: false /jest-fetch-mock/3.0.3: @@ -18386,19 +19100,19 @@ packages: slash: 3.0.0 stack-utils: 2.0.5 - /jest-message-util/29.4.0: - resolution: {integrity: sha512-0FvobqymmhE9pDEifvIcni9GeoKLol8eZspzH5u41g1wxYtLS60a9joT95dzzoCgrKRidNz64eaAXyzaULV8og==} + /jest-message-util/29.5.0: + resolution: {integrity: sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@babel/code-frame': 7.18.6 - '@jest/types': 29.4.2 - '@types/stack-utils': 2.0.0 + '@jest/types': 29.5.0 + '@types/stack-utils': 2.0.1 chalk: 4.1.2 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 micromatch: 4.0.5 - pretty-format: 29.4.0 + pretty-format: 29.5.0 slash: 3.0.0 - stack-utils: 2.0.5 + stack-utils: 2.0.6 dev: false /jest-mock-extended/2.0.2-beta2_c5geyxjhvt2brmcoo3ep3renzm: @@ -18419,13 +19133,13 @@ packages: '@jest/types': 28.1.3 '@types/node': 13.13.5 - /jest-mock/29.4.0: - resolution: {integrity: sha512-+ShT5i+hcu/OFQRV0f/V/YtwpdFcHg64JZ9A8b40JueP+X9HNrZAYGdkupGIzsUK8AucecxCt4wKauMchxubLQ==} + /jest-mock/29.5.0: + resolution: {integrity: sha512-GqOzvdWDE4fAV2bWQLQCkujxYWL7RxjCnj71b5VhDAGOevB3qj3Ovg26A5NI84ZpODxyzaozXLOh2NCgkbvyaw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.4.2 - '@types/node': 13.13.5 - jest-util: 29.4.0 + '@jest/types': 29.5.0 + '@types/node': 16.18.11 + jest-util: 29.5.0 dev: false /jest-pnp-resolver/1.2.2_jest-resolve@26.6.2: @@ -18577,8 +19291,8 @@ packages: resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@types/node': 13.13.5 - graceful-fs: 4.2.10 + '@types/node': 16.18.11 + graceful-fs: 4.2.11 dev: false /jest-snapshot/26.6.2: @@ -18664,10 +19378,10 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 13.13.5 + '@types/node': 16.18.11 chalk: 4.1.2 - ci-info: 3.3.1 - graceful-fs: 4.2.10 + ci-info: 3.8.0 + graceful-fs: 4.2.11 picomatch: 2.3.1 dev: false @@ -18692,6 +19406,19 @@ packages: ci-info: 3.3.1 graceful-fs: 4.2.10 picomatch: 2.3.1 + dev: true + + /jest-util/29.5.0: + resolution: {integrity: sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/types': 29.5.0 + '@types/node': 16.18.11 + chalk: 4.1.2 + ci-info: 3.8.0 + graceful-fs: 4.2.11 + picomatch: 2.3.1 + dev: false /jest-validate/26.6.2: resolution: {integrity: sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==} @@ -18787,8 +19514,8 @@ packages: - ts-node dev: true - /joi/17.7.0: - resolution: {integrity: sha512-1/ugc8djfn93rTE3WRKdCzGGt/EtiYKxITMO4Wiv6q5JL1gl9ePt4kBsl1S499nbosspfctIQTpYIhSmHA3WAg==} + /joi/17.9.1: + resolution: {integrity: sha512-FariIi9j6QODKATGBrEX7HZcja8Bsh3rfdGYy/Sb65sGlZWK/QWesU1ghk7aJWDj95knjXlQfSmzFSPPkLVsfw==} dependencies: '@hapi/hoek': 9.3.0 '@hapi/topo': 5.1.0 @@ -18854,8 +19581,8 @@ packages: dependencies: argparse: 2.0.1 - /jsc-android/250230.2.1: - resolution: {integrity: sha512-KmxeBlRjwoqCnBBKGsihFtvsBHyUFlBxJPK4FzeYcIuBfdjv6jFys44JITAgSTbQD+vIdwMEfyZklsuQX0yI1Q==} + /jsc-android/250231.0.0: + resolution: {integrity: sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==} dev: false /jscodeshift/0.13.1_@babel+preset-env@7.20.2: @@ -18865,19 +19592,19 @@ packages: '@babel/preset-env': ^7.1.6 dependencies: '@babel/core': 7.21.0 - '@babel/parser': 7.21.2 + '@babel/parser': 7.21.3 '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0 '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.21.0 + '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-transform-modules-commonjs': 7.21.2_@babel+core@7.21.0 '@babel/preset-env': 7.20.2_@babel+core@7.21.0 '@babel/preset-flow': 7.18.6_@babel+core@7.21.0 '@babel/preset-typescript': 7.18.6_@babel+core@7.21.0 - '@babel/register': 7.18.9_@babel+core@7.21.0 + '@babel/register': 7.21.0_@babel+core@7.21.0 babel-core: 7.0.0-bridge.0_@babel+core@7.21.0 chalk: 4.1.2 flow-parser: 0.185.2 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 micromatch: 3.1.10 neo-async: 2.6.2 node-dir: 0.1.17 @@ -19222,8 +19949,8 @@ packages: resolution: {integrity: sha512-RTSoaUAfLvpR357vWzAz/50Q/BmHfmE6ETSWfutT0AJiw10e6CmcdYRQJlLRd95B53D0Y2aD1jSxD3V3ySF+PA==} dev: true - /konva/8.4.2: - resolution: {integrity: sha512-4VQcrgj/PI8ydJjtLcTuinHBE8o0WGX0YoRwbiN5mpYQiC52aOzJ0XbpKNDJdRvORQphK5LP+jeM0hQJEYIuUA==} + /konva/8.4.3: + resolution: {integrity: sha512-ARqdgAbdNIougRlOKvkQwHlGhXPRBV4KvhCP+qoPpGoVQwwiJe4Hkdu4HHdRPb9rGUp04jDTAxBzEwBsE272pg==} dev: false /language-subtag-registry/0.3.21: @@ -19463,7 +20190,7 @@ packages: resolution: {integrity: sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==} engines: {node: '>=0.10.0'} dependencies: - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 parse-json: 2.2.0 pify: 2.3.0 pinkie-promise: 2.0.1 @@ -19483,7 +20210,7 @@ packages: resolution: {integrity: sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==} engines: {node: '>=6'} dependencies: - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 parse-json: 4.0.0 pify: 4.0.1 strip-bom: 3.0.0 @@ -20087,37 +20814,48 @@ packages: resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} engines: {node: '>= 0.6'} - /metro-babel-transformer/0.73.7: - resolution: {integrity: sha512-s7UVkwovGTEXYEQrv5hcmSBbFJ9s9lhCRNMScn4Itgj3UMdqRr9lU8DXKEFlJ7osgRxN6n5+eXqcvhE4B1H1VQ==} + /metro-babel-transformer/0.73.8: + resolution: {integrity: sha512-GO6H/W2RjZ0/gm1pIvdO9EP34s3XN6kzoeyxqmfqKfYhJmYZf1SzXbyiIHyMbJNwJVrsKuHqu32+GopTlKscWw==} dependencies: '@babel/core': 7.21.0 hermes-parser: 0.8.0 - metro-source-map: 0.73.7 + metro-source-map: 0.73.8 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color dev: false - /metro-cache-key/0.73.7: - resolution: {integrity: sha512-GngYzrHwZU9U0Xl81H4aq9Tn5cjQyU12v9/flB0hzpeiYO5A89TIeilb4Kg8jtfC6JcmmsdK9nxYIGEq7odHhQ==} + /metro-babel-transformer/0.73.9: + resolution: {integrity: sha512-DlYwg9wwYIZTHtic7dyD4BP0SDftoltZ3clma76nHu43blMWsCnrImHeHsAVne3XsQ+RJaSRxhN5nkG2VyVHwA==} + dependencies: + '@babel/core': 7.21.0 + hermes-parser: 0.8.0 + metro-source-map: 0.73.9 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color dev: false - /metro-cache/0.73.7: - resolution: {integrity: sha512-CPPgI+i9yVzOEDCdmEEZ67JgOvZyNDs8kStmGUFgDuLSjj3//HhkqT5XyfWjGeH6KmyGiS8ip3cgLOVn3IsOSA==} + /metro-cache-key/0.73.9: + resolution: {integrity: sha512-uJg+6Al7UoGIuGfoxqPBy6y1Ewq7Y8/YapGYIDh6sohInwt/kYKnPZgLDYHIPvY2deORnQ/2CYo4tOeBTnhCXQ==} + dev: false + + /metro-cache/0.73.9: + resolution: {integrity: sha512-upiRxY8rrQkUWj7ieACD6tna7xXuXdu2ZqrheksT79ePI0aN/t0memf6WcyUtJUMHZetke3j+ppELNvlmp3tOw==} dependencies: - metro-core: 0.73.7 + metro-core: 0.73.9 rimraf: 3.0.2 dev: false - /metro-config/0.73.7: - resolution: {integrity: sha512-pD/F+vK3u37cbj1skYmI6cUsEEscqNRtW2KlDKu1m+n8nooDB2oGTOZatlS5WQa7Ga6jYQRydftlq4CLDexAfA==} + /metro-config/0.73.9: + resolution: {integrity: sha512-NiWl1nkYtjqecDmw77tbRbXnzIAwdO6DXGZTuKSkH+H/c1NKq1eizO8Fe+NQyFtwR9YLqn8Q0WN1nmkwM1j8CA==} dependencies: cosmiconfig: 5.2.1 jest-validate: 26.6.2 - metro: 0.73.7 - metro-cache: 0.73.7 - metro-core: 0.73.7 - metro-runtime: 0.73.7 + metro: 0.73.9 + metro-cache: 0.73.9 + metro-core: 0.73.9 + metro-runtime: 0.73.9 transitivePeerDependencies: - bufferutil - encoding @@ -20125,21 +20863,21 @@ packages: - utf-8-validate dev: false - /metro-core/0.73.7: - resolution: {integrity: sha512-H7j1Egj1VnNnsSYf9ZKv0SRwijgtRKIcaGNQq/T+er73vqqb4kR9H+2VIJYPXi6R8lT+QLIMfs6CWSUHAJUgtg==} + /metro-core/0.73.9: + resolution: {integrity: sha512-1NTs0IErlKcFTfYyRT3ljdgrISWpl1nys+gaHkXapzTSpvtX9F1NQNn5cgAuE+XIuTJhbsCdfIJiM2JXbrJQaQ==} dependencies: lodash.throttle: 4.1.1 - metro-resolver: 0.73.7 + metro-resolver: 0.73.9 dev: false - /metro-file-map/0.73.7: - resolution: {integrity: sha512-BYaCo2e/4FMN4nOajeN+Za5cPfecfikzUYuFWWMyLAmHU6dj7B+PFkaJ4OEJO3vmRoeq5vMOmhpKXgysYbNXJg==} + /metro-file-map/0.73.9: + resolution: {integrity: sha512-R/Wg3HYeQhYY3ehWtfedw8V0ne4lpufG7a21L3GWer8tafnC9pmjoCKEbJz9XZkVj9i1FtxE7UTbrtZNeIILxQ==} dependencies: abort-controller: 3.0.0 anymatch: 3.1.3 debug: 2.6.9 - fb-watchman: 2.0.0 - graceful-fs: 4.2.10 + fb-watchman: 2.0.2 + graceful-fs: 4.2.11 invariant: 2.2.4 jest-regex-util: 27.5.1 jest-serializer: 27.5.1 @@ -20154,73 +20892,73 @@ packages: - supports-color dev: false - /metro-hermes-compiler/0.73.7: - resolution: {integrity: sha512-F8PlJ8mWEEumGNH3eMRA3gjgP70ZvH4Ex5F1KY6ofD/gpn7w5HJHSPTeVw8gtUb1pYLN4nevptpyXGg04Jfcog==} + /metro-hermes-compiler/0.73.9: + resolution: {integrity: sha512-5B3vXIwQkZMSh3DQQY23XpTCpX9kPLqZbA3rDuAcbGW0tzC3f8dCenkyBb0GcCzyTDncJeot/A7oVCVK6zapwg==} dev: false - /metro-inspector-proxy/0.73.7: - resolution: {integrity: sha512-TsAtQeKr9X7NaQHlpshu+ZkGWlPi5fFKNqieLkfqvT1oXN4PQF/4q38INyiZtWLPvoUzTR6PRnm4pcUbJ7+Nzg==} + /metro-inspector-proxy/0.73.9: + resolution: {integrity: sha512-B3WrWZnlYhtTrv0IaX3aUAhi2qVILPAZQzb5paO1e+xrz4YZHk9c7dXv7qe7B/IQ132e3w46y3AL7rFo90qVjA==} hasBin: true dependencies: connect: 3.7.0 debug: 2.6.9 ws: 7.5.9 - yargs: 17.6.2 + yargs: 17.7.1 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate dev: false - /metro-minify-terser/0.73.7: - resolution: {integrity: sha512-gbv1fmMOZm6gJ6dQoD+QktlCi2wk6nlTR8j8lQCjeeXGbs6O9e5XLWNPOexHqo7S69bdbohEnfZnLJFcxgHeNw==} + /metro-minify-terser/0.73.9: + resolution: {integrity: sha512-MTGPu2qV5qtzPJ2SqH6s58awHDtZ4jd7lmmLR+7TXDwtZDjIBA0YVfI0Zak2Haby2SqoNKrhhUns/b4dPAQAVg==} dependencies: - terser: 5.16.1 + terser: 5.16.8 dev: false - /metro-minify-uglify/0.73.7: - resolution: {integrity: sha512-DmDCzfdbaPExQuQ7NQozCNOSOAgp5Ux9kWzmKAT8seQ38/3NtUepW+PTgxXIHmwNjJV4oHsHwlBlTwJmYihKXg==} + /metro-minify-uglify/0.73.9: + resolution: {integrity: sha512-gzxD/7WjYcnCNGiFJaA26z34rjOp+c/Ft++194Wg91lYep3TeWQ0CnH8t2HRS7AYDHU81SGWgvD3U7WV0g4LGA==} dependencies: uglify-es: 3.3.9 dev: false - /metro-react-native-babel-preset/0.73.7_@babel+core@7.21.0: - resolution: {integrity: sha512-RKcmRZREjJCzHKP+JhC9QTCohkeb3xa/DtqHU14U5KWzJHdC0mMrkTZYNXhV0cryxsaVKVEw5873KhbZyZHMVw==} + /metro-react-native-babel-preset/0.73.8_@babel+core@7.21.0: + resolution: {integrity: sha512-spNrcQJTbQntEIqJnCA6yL4S+dzV9fXCk7U+Rm7yJasZ4o4Frn7jP23isu7FlZIp1Azx1+6SbP7SgQM+IP5JgQ==} peerDependencies: '@babel/core': '*' dependencies: '@babel/core': 7.21.0 - '@babel/plugin-proposal-async-generator-functions': 7.20.1_@babel+core@7.21.0 + '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.21.0 '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-export-default-from': 7.12.1_@babel+core@7.21.0 + '@babel/plugin-proposal-export-default-from': 7.18.10_@babel+core@7.21.0 '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-object-rest-spread': 7.20.2_@babel+core@7.21.0 + '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.21.0 '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.21.0 + '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.21.0 '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-syntax-export-default-from': 7.12.1_@babel+core@7.21.0 + '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.21.0 '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.21.0 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.0 '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.0 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-block-scoping': 7.20.5_@babel+core@7.21.0 - '@babel/plugin-transform-classes': 7.20.2_@babel+core@7.21.0 - '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.21.0 - '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.21.0 + '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-destructuring': 7.21.3_@babel+core@7.21.0 + '@babel/plugin-transform-flow-strip-types': 7.21.0_@babel+core@7.21.0 '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.21.0 '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.21.0 - '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.21.0 + '@babel/plugin-transform-modules-commonjs': 7.21.2_@babel+core@7.21.0 '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.21.0 - '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.21.0 + '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.21.0 '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.21.0 - '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-transform-react-jsx': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-transform-react-jsx-self': 7.21.0_@babel+core@7.21.0 '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.21.0 - '@babel/plugin-transform-runtime': 7.19.6_@babel+core@7.21.0 + '@babel/plugin-transform-runtime': 7.21.0_@babel+core@7.21.0 '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.0 - '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.21.0 + '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.21.0 '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.21.0 '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.0 '@babel/plugin-transform-typescript': 7.20.2_@babel+core@7.21.0 @@ -20231,57 +20969,142 @@ packages: - supports-color dev: false - /metro-react-native-babel-transformer/0.73.7_@babel+core@7.21.0: - resolution: {integrity: sha512-73HW8betjX+VPm3iqsMBe8F/F2Tt+hONO6YJwcF7FonTqQYW1oTz0dOp0dClZGfHUXxpJBz6Vuo7J6TpdzDD+w==} + /metro-react-native-babel-preset/0.73.9_@babel+core@7.21.0: + resolution: {integrity: sha512-AoD7v132iYDV4K78yN2OLgTPwtAKn0XlD2pOhzyBxiI8PeXzozhbKyPV7zUOJUPETj+pcEVfuYj5ZN/8+bhbCw==} + peerDependencies: + '@babel/core': '*' + dependencies: + '@babel/core': 7.21.0 + '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-proposal-export-default-from': 7.18.10_@babel+core@7.21.0 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.0 + '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.0 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.0 + '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-destructuring': 7.21.3_@babel+core@7.21.0 + '@babel/plugin-transform-flow-strip-types': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.21.0 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.21.0 + '@babel/plugin-transform-modules-commonjs': 7.21.2_@babel+core@7.21.0 + '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.21.0 + '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.21.0 + '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-transform-react-jsx': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-transform-react-jsx-self': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.21.0 + '@babel/plugin-transform-runtime': 7.21.0_@babel+core@7.21.0 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.21.0 + '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.21.0 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.0 + '@babel/plugin-transform-typescript': 7.20.2_@babel+core@7.21.0 + '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.21.0 + '@babel/template': 7.20.7 + react-refresh: 0.4.3 + transitivePeerDependencies: + - supports-color + dev: false + + /metro-react-native-babel-transformer/0.73.8_@babel+core@7.21.0: + resolution: {integrity: sha512-oH/LCCJPauteAE28c0KJAiSrkV+1VJbU0PwA9UwaWnle+qevs/clpKQ8LrIr33YbBj4CiI1kFoVRuNRt5h4NFg==} peerDependencies: '@babel/core': '*' dependencies: '@babel/core': 7.21.0 babel-preset-fbjs: 3.4.0_@babel+core@7.21.0 hermes-parser: 0.8.0 - metro-babel-transformer: 0.73.7 - metro-react-native-babel-preset: 0.73.7_@babel+core@7.21.0 - metro-source-map: 0.73.7 + metro-babel-transformer: 0.73.8 + metro-react-native-babel-preset: 0.73.8_@babel+core@7.21.0 + metro-source-map: 0.73.8 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color dev: false - /metro-resolver/0.73.7: - resolution: {integrity: sha512-mGW3XPeKBCwZnkHcKo1dhFa9olcx7SyNzG1vb5kjzJYe4Qs3yx04r/qFXIJLcIgLItB69TIGvosznUhpeOOXzg==} + /metro-react-native-babel-transformer/0.73.9_@babel+core@7.21.0: + resolution: {integrity: sha512-DSdrEHuQ22ixY7DyipyKkIcqhOJrt5s6h6X7BYJCP9AMUfXOwLe2biY3BcgJz5GOXv8/Akry4vTCvQscVS1otQ==} + peerDependencies: + '@babel/core': '*' + dependencies: + '@babel/core': 7.21.0 + babel-preset-fbjs: 3.4.0_@babel+core@7.21.0 + hermes-parser: 0.8.0 + metro-babel-transformer: 0.73.9 + metro-react-native-babel-preset: 0.73.9_@babel+core@7.21.0 + metro-source-map: 0.73.9 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color + dev: false + + /metro-resolver/0.73.9: + resolution: {integrity: sha512-Ej3wAPOeNRPDnJmkK0zk7vJ33iU07n+oPhpcf5L0NFkWneMmSM2bflMPibI86UjzZGmRfn0AhGhs8yGeBwQ/Xg==} dependencies: absolute-path: 0.0.0 dev: false - /metro-runtime/0.73.7: - resolution: {integrity: sha512-2fxRGrF8FyrwwHY0TCitdUljzutfW6CWEpdvPilfrs8p0PI5X8xOWg8ficeYtw+DldHtHIAL2phT59PqzHTyVA==} + /metro-runtime/0.73.8: + resolution: {integrity: sha512-M+Bg9M4EN5AEpJ8NkiUsawD75ifYvYfHi05w6QzHXaqOrsTeaRbbeLuOGCYxU2f/tPg17wQV97/rqUQzs9qEtA==} dependencies: '@babel/runtime': 7.20.6 react-refresh: 0.4.3 dev: false - /metro-source-map/0.73.7: - resolution: {integrity: sha512-gbC/lfUN52TtQhEsTTA+987MaFUpQlufuCI05blLGLosDcFCsARikHsxa65Gtslm/rG2MqvFLiPA5hviONNv9g==} + /metro-runtime/0.73.9: + resolution: {integrity: sha512-d5Hs83FpKB9r8q8Vb95+fa6ESpwysmPr4lL1I2rM2qXAFiO7OAPT9Bc23WmXgidkBtD0uUFdB2lG+H1ATz8rZg==} dependencies: - '@babel/traverse': 7.21.2 - '@babel/types': 7.21.2 + '@babel/runtime': 7.20.6 + react-refresh: 0.4.3 + dev: false + + /metro-source-map/0.73.8: + resolution: {integrity: sha512-wozFXuBYMAy7b8BCYwC+qoXsvayVJBHWtSTlSLva99t+CoUSG9JO9kg1umzbOz28YYPxKmvb/wbnLMkHdas2cA==} + dependencies: + '@babel/traverse': 7.21.3 + '@babel/types': 7.21.3 invariant: 2.2.4 - metro-symbolicate: 0.73.7 + metro-symbolicate: 0.73.8 nullthrows: 1.1.1 - ob1: 0.73.7 + ob1: 0.73.8 source-map: 0.5.7 vlq: 1.0.1 transitivePeerDependencies: - supports-color dev: false - /metro-symbolicate/0.73.7: - resolution: {integrity: sha512-571ThWmX5o8yGNzoXjlcdhmXqpByHU/bSZtWKhtgV2TyIAzYCYt4hawJAS5+/qDazUvjHdm8BbdqFUheM0EKNQ==} + /metro-source-map/0.73.9: + resolution: {integrity: sha512-l4VZKzdqafipriETYR6lsrwtavCF1+CMhCOY9XbyWeTrpGSNgJQgdeJpttzEZTHQQTLR0csQo0nD1ef3zEP6IQ==} + dependencies: + '@babel/traverse': 7.21.3 + '@babel/types': 7.21.3 + invariant: 2.2.4 + metro-symbolicate: 0.73.9 + nullthrows: 1.1.1 + ob1: 0.73.9 + source-map: 0.5.7 + vlq: 1.0.1 + transitivePeerDependencies: + - supports-color + dev: false + + /metro-symbolicate/0.73.8: + resolution: {integrity: sha512-xkBAcceYYp0GGdCCuMzkCF1ejHsd0lYlbKBkjSRgM0Nlj80VapPaSwumYoAvSaDxcbkvS7/sCjURGp5DsSFgRQ==} engines: {node: '>=8.3'} hasBin: true dependencies: invariant: 2.2.4 - metro-source-map: 0.73.7 + metro-source-map: 0.73.8 nullthrows: 1.1.1 source-map: 0.5.7 through2: 2.0.5 @@ -20290,33 +21113,48 @@ packages: - supports-color dev: false - /metro-transform-plugins/0.73.7: - resolution: {integrity: sha512-M5isiWEau0jMudb5ezaNBZnYqXxcATMqnAYc+Cu25IahT1NHi5aWwLok9EBmBpN5641IZUZXScf+KnS7fPxPCQ==} + /metro-symbolicate/0.73.9: + resolution: {integrity: sha512-4TUOwxRHHqbEHxRqRJ3wZY5TA8xq7AHMtXrXcjegMH9FscgYztsrIG9aNBUBS+VLB6g1qc6BYbfIgoAnLjCDyw==} + engines: {node: '>=8.3'} + hasBin: true + dependencies: + invariant: 2.2.4 + metro-source-map: 0.73.9 + nullthrows: 1.1.1 + source-map: 0.5.7 + through2: 2.0.5 + vlq: 1.0.1 + transitivePeerDependencies: + - supports-color + dev: false + + /metro-transform-plugins/0.73.9: + resolution: {integrity: sha512-r9NeiqMngmooX2VOKLJVQrMuV7PAydbqst5bFhdVBPcFpZkxxqyzjzo+kzrszGy2UpSQBZr2P1L6OMjLHwQwfQ==} dependencies: '@babel/core': 7.21.0 - '@babel/generator': 7.21.1 + '@babel/generator': 7.21.3 '@babel/template': 7.20.7 - '@babel/traverse': 7.21.2 + '@babel/traverse': 7.21.3 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color dev: false - /metro-transform-worker/0.73.7: - resolution: {integrity: sha512-gZYIu9JAqEI9Rxi0xGMuMW6QsHGbMSptozlTOwOd7T7yXX3WwYS/I3yLPbLhbZTjOhwMHkTt8Nhm2qBo8nh14g==} + /metro-transform-worker/0.73.9: + resolution: {integrity: sha512-Rq4b489sIaTUENA+WCvtu9yvlT/C6zFMWhU4sq+97W29Zj0mPBjdk+qGT5n1ZBgtBIJzZWt1KxeYuc17f4aYtQ==} dependencies: '@babel/core': 7.21.0 - '@babel/generator': 7.21.1 - '@babel/parser': 7.21.2 - '@babel/types': 7.21.2 + '@babel/generator': 7.21.3 + '@babel/parser': 7.21.3 + '@babel/types': 7.21.3 babel-preset-fbjs: 3.4.0_@babel+core@7.21.0 - metro: 0.73.7 - metro-babel-transformer: 0.73.7 - metro-cache: 0.73.7 - metro-cache-key: 0.73.7 - metro-hermes-compiler: 0.73.7 - metro-source-map: 0.73.7 - metro-transform-plugins: 0.73.7 + metro: 0.73.9 + metro-babel-transformer: 0.73.9 + metro-cache: 0.73.9 + metro-cache-key: 0.73.9 + metro-hermes-compiler: 0.73.9 + metro-source-map: 0.73.9 + metro-transform-plugins: 0.73.9 nullthrows: 1.1.1 transitivePeerDependencies: - bufferutil @@ -20325,17 +21163,17 @@ packages: - utf-8-validate dev: false - /metro/0.73.7: - resolution: {integrity: sha512-pkRqFhuGUvkiu8HxKPUQelbCuyy6te6okMssTyLzQwsKilNLK4YMI2uD6PHnypg5SiMJ58lwfqkp/t5w72jEvw==} + /metro/0.73.9: + resolution: {integrity: sha512-BlYbPmTF60hpetyNdKhdvi57dSqutb+/oK0u3ni4emIh78PiI0axGo7RfdsZ/mn3saASXc94tDbpC5yn7+NpEg==} hasBin: true dependencies: '@babel/code-frame': 7.18.6 '@babel/core': 7.21.0 - '@babel/generator': 7.21.1 - '@babel/parser': 7.21.2 + '@babel/generator': 7.21.3 + '@babel/parser': 7.21.3 '@babel/template': 7.20.7 - '@babel/traverse': 7.21.2 - '@babel/types': 7.21.2 + '@babel/traverse': 7.21.3 + '@babel/types': 7.21.3 absolute-path: 0.0.0 accepts: 1.3.8 async: 3.2.4 @@ -20344,30 +21182,30 @@ packages: connect: 3.7.0 debug: 2.6.9 denodeify: 1.2.1 - error-stack-parser: 2.0.6 - graceful-fs: 4.2.10 + error-stack-parser: 2.1.4 + graceful-fs: 4.2.11 hermes-parser: 0.8.0 image-size: 0.6.3 invariant: 2.2.4 jest-worker: 27.5.1 lodash.throttle: 4.1.1 - metro-babel-transformer: 0.73.7 - metro-cache: 0.73.7 - metro-cache-key: 0.73.7 - metro-config: 0.73.7 - metro-core: 0.73.7 - metro-file-map: 0.73.7 - metro-hermes-compiler: 0.73.7 - metro-inspector-proxy: 0.73.7 - metro-minify-terser: 0.73.7 - metro-minify-uglify: 0.73.7 - metro-react-native-babel-preset: 0.73.7_@babel+core@7.21.0 - metro-resolver: 0.73.7 - metro-runtime: 0.73.7 - metro-source-map: 0.73.7 - metro-symbolicate: 0.73.7 - metro-transform-plugins: 0.73.7 - metro-transform-worker: 0.73.7 + metro-babel-transformer: 0.73.9 + metro-cache: 0.73.9 + metro-cache-key: 0.73.9 + metro-config: 0.73.9 + metro-core: 0.73.9 + metro-file-map: 0.73.9 + metro-hermes-compiler: 0.73.9 + metro-inspector-proxy: 0.73.9 + metro-minify-terser: 0.73.9 + metro-minify-uglify: 0.73.9 + metro-react-native-babel-preset: 0.73.9_@babel+core@7.21.0 + metro-resolver: 0.73.9 + metro-runtime: 0.73.9 + metro-source-map: 0.73.9 + metro-symbolicate: 0.73.9 + metro-transform-plugins: 0.73.9 + metro-transform-worker: 0.73.9 mime-types: 2.1.35 node-fetch: 2.6.7 nullthrows: 1.1.1 @@ -20378,7 +21216,7 @@ packages: temp: 0.8.3 throat: 5.0.0 ws: 7.5.9 - yargs: 17.6.2 + yargs: 17.7.1 transitivePeerDependencies: - bufferutil - encoding @@ -20482,7 +21320,7 @@ packages: webpack: ^5.0.0 dependencies: schema-utils: 4.0.0 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a dev: true /minimalistic-assert/1.0.1: @@ -20518,6 +21356,10 @@ packages: /minimist/1.2.6: resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} + /minimist/1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + dev: false + /minipass-collect/1.0.2: resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} engines: {node: '>= 8'} @@ -20577,6 +21419,14 @@ packages: hasBin: true dependencies: minimist: 1.2.6 + dev: true + + /mkdirp/0.5.6: + resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + hasBin: true + dependencies: + minimist: 1.2.8 + dev: false /mkdirp/1.0.4: resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} @@ -21096,8 +21946,12 @@ packages: - supports-color dev: true - /ob1/0.73.7: - resolution: {integrity: sha512-DfelfvR843KADhSUATGGhuepVMRcf5VQX+6MQLy5AW0BKDLlO7Usj6YZeAAZP7P86QwsoTxB0RXCFiA7t6S1IQ==} + /ob1/0.73.8: + resolution: {integrity: sha512-1F7j+jzD+edS6ohQP7Vg5f3yiIk5i3x1uLrNIHOmLHWzWK1t3zrDpjnoXghccdVlsU+UjbyURnDynm4p0GgXeA==} + dev: false + + /ob1/0.73.9: + resolution: {integrity: sha512-kHOzCOFXmAM26fy7V/YuXNKne2TyRiXbFAvPBIbuedJCZZWQZHLdPzMeXJI4Egt6IcfDttRzN3jQ90wOwq1iNw==} dev: false /object-assign/4.0.1: @@ -21595,7 +22449,7 @@ packages: resolution: {integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==} engines: {node: '>=8'} dependencies: - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 hasha: 5.2.0 lodash.flattendeep: 4.4.0 release-zalgo: 1.0.0 @@ -21816,7 +22670,7 @@ packages: resolution: {integrity: sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==} engines: {node: '>=0.10.0'} dependencies: - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 pify: 2.3.0 pinkie-promise: 2.0.1 dev: true @@ -22167,7 +23021,7 @@ packages: postcss: 7.0.39 schema-utils: 3.1.1 semver: 7.3.8 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a dev: true /postcss-loader/7.0.2_6jdsrmfenkuhhw3gx4zvjlznce: @@ -22181,7 +23035,7 @@ packages: klona: 2.0.5 postcss: 8.4.21 semver: 7.3.8 - webpack: 5.75.0_esbuild@0.17.8 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a /postcss-media-query-parser/0.2.3: resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==} @@ -22564,17 +23418,17 @@ packages: picocolors: 1.0.0 source-map-js: 1.0.2 - /preact-render-to-string/5.1.19_preact@10.12.0: + /preact-render-to-string/5.1.19_preact@10.13.1: resolution: {integrity: sha512-bj8sn/oytIKO6RtOGSS/1+5CrQyRSC99eLUnEVbqUa6MzJX5dYh7wu9bmT0d6lm/Vea21k9KhCQwvr2sYN3rrQ==} peerDependencies: preact: '>=10' dependencies: - preact: 10.12.0 + preact: 10.13.1 pretty-format: 3.8.0 dev: true - /preact/10.12.0: - resolution: {integrity: sha512-+w8ix+huD8CNZemheC53IPjMUFk921i02o30u0K6h53spMX41y/QhVDnG/nU2k42/69tvqWmVsgNLIiwRAcmxg==} + /preact/10.13.1: + resolution: {integrity: sha512-KyoXVDU5OqTpG9LXlB3+y639JAGzl8JSBXLn1J9HTSB3gbKcuInga7bZnXLlxmK94ntTs1EFeZp0lrja2AuBYQ==} dev: true /prebuild-install/7.0.1: @@ -22625,6 +23479,16 @@ packages: svelte: 3.55.1 dev: true + /prettier-plugin-svelte/2.9.0_c25feh7akwshegxdj2xzo3ajiu: + resolution: {integrity: sha512-3doBi5NO4IVgaNPtwewvrgPpqAcvNv0NwJNflr76PIGgi9nf1oguQV1Hpdm9TI2ALIQVn/9iIwLpBO5UcD2Jiw==} + peerDependencies: + prettier: ^1.16.4 || ^2.0.0 + svelte: ^3.2.0 + dependencies: + prettier: 2.8.1 + svelte: 3.57.0 + dev: true + /prettier/2.0.5: resolution: {integrity: sha512-7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg==} engines: {node: '>=10.13.0'} @@ -22688,11 +23552,11 @@ packages: ansi-styles: 5.2.0 react-is: 18.2.0 - /pretty-format/29.4.0: - resolution: {integrity: sha512-J+EVUPXIBHCdWAbvGBwXs0mk3ljGppoh/076g1S8qYS8nVG4u/yrhMvyTFHYYYKWnDdgRLExx0vA7pzxVGdlNw==} + /pretty-format/29.5.0: + resolution: {integrity: sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/schemas': 29.4.2 + '@jest/schemas': 29.4.3 ansi-styles: 5.2.0 react-is: 18.2.0 dev: false @@ -23015,7 +23879,7 @@ packages: dependencies: loader-utils: 2.0.4 schema-utils: 3.1.1 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a dev: true /rc/1.2.8: @@ -23059,10 +23923,10 @@ packages: react: 18.1.0 dev: false - /react-devtools-core/4.27.1: - resolution: {integrity: sha512-qXhcxxDWiFmFAOq48jts9YQYe1+wVoUXzJTlY4jbaATzyio6dd6CUGu3dXBhREeVgpZ+y4kg6vFJzIOZh6vY2w==} + /react-devtools-core/4.27.4: + resolution: {integrity: sha512-dvZjrAJjahd6NNl7dDwEk5TyHsWJxDpYL7VnD9jdEr98EEEsVhw9G8JDX54Nrb3XIIOBlJDpjo3AuBuychX9zg==} dependencies: - shell-quote: 1.7.4 + shell-quote: 1.8.0 ws: 7.5.9 transitivePeerDependencies: - bufferutil @@ -23189,14 +24053,14 @@ packages: /react-is/18.2.0: resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} - /react-konva/16.8.6_3g5u2h3wvyy4ctli3w3c2pyuhu: + /react-konva/16.8.6_ct25jqyodm5lwk4xx6ybhlxjsi: resolution: {integrity: sha512-6KRIqHyJuTTMuAehDIXvw+ZrtEj2aMc2fwolhmFlg1HBzH4PJimsMByTcEx292Afh9d38TcHdjXP1C58qqDOlg==} peerDependencies: konva: ^3.2.3 react: 16.8.x react-dom: 16.8.x dependencies: - konva: 8.4.2 + konva: 8.4.3 react: 18.1.0 react-dom: 18.1.0_react@18.1.0 react-reconciler: 0.20.4_react@18.1.0 @@ -23207,10 +24071,10 @@ packages: resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==} dev: false - /react-native-codegen/0.71.3_@babel+preset-env@7.20.2: - resolution: {integrity: sha512-5AvdHVU1sAaXg05i0dG664ZTaCaIFaY1znV5vNsj+wUu6MGxNEUNbDKk9dxKUkkxOyk2KZOK5uhzWL0p5H5yZQ==} + /react-native-codegen/0.71.5_@babel+preset-env@7.20.2: + resolution: {integrity: sha512-rfsuc0zkuUuMjFnrT55I1mDZ+pBRp2zAiRwxck3m6qeGJBGK5OV5JH66eDQ4aa+3m0of316CqrJDRzVlYufzIg==} dependencies: - '@babel/parser': 7.21.2 + '@babel/parser': 7.21.3 flow-parser: 0.185.2 jscodeshift: 0.13.1_@babel+preset-env@7.20.2 nullthrows: 1.1.1 @@ -23219,21 +24083,21 @@ packages: - supports-color dev: false - /react-native-gradle-plugin/0.71.14: - resolution: {integrity: sha512-nnLawTZEPPRAKq92UqDkzoGgCBl9aa9zAihFHMwmwzn4WRVdK4O6Cd4XYiyoNOiQzx3Hh9k5WOckHE80C92ivQ==} + /react-native-gradle-plugin/0.71.16: + resolution: {integrity: sha512-H2BjG2zk7B7Wii9sXvd9qhCVRQYDAHSWdMw9tscmZBqSP62DkIWEQSk4/B2GhQ4aK9ydVXgtqR6tBeg3yy8TSA==} dev: false - /react-native/0.71.2_cedkertwcryj7hechfcr5dzii4: - resolution: {integrity: sha512-ZSianM+j+09LoEdVIhrAP/uP8sQhT7dH6olCqM2xlpxmfCgA5NubsK6NABIuZiBlmmqjigyijm5Y/GhBIHDvEg==} + /react-native/0.71.4_cedkertwcryj7hechfcr5dzii4: + resolution: {integrity: sha512-3hSYqvWrOdKhpV3HpEKp1/CkWx8Sr/N/miCrmUIAsVTSJUR7JW0VvIsrV9urDhUj/s6v2WF4n7qIEEJsmTCrPw==} engines: {node: '>=14'} hasBin: true peerDependencies: react: 18.2.0 dependencies: - '@jest/create-cache-key-function': 29.4.2 - '@react-native-community/cli': 10.1.3_@babel+core@7.21.0 - '@react-native-community/cli-platform-android': 10.1.3 - '@react-native-community/cli-platform-ios': 10.1.1 + '@jest/create-cache-key-function': 29.5.0 + '@react-native-community/cli': 10.2.0_@babel+core@7.21.0 + '@react-native-community/cli-platform-android': 10.2.0 + '@react-native-community/cli-platform-ios': 10.2.0 '@react-native/assets': 1.0.0 '@react-native/normalize-color': 2.1.0 '@react-native/polyfills': 2.0.0 @@ -23243,27 +24107,27 @@ packages: deprecated-react-native-prop-types: 3.0.1 event-target-shim: 5.0.1 invariant: 2.2.4 - jest-environment-node: 29.4.0 - jsc-android: 250230.2.1 + jest-environment-node: 29.5.0 + jsc-android: 250231.0.0 memoize-one: 5.2.1 - metro-react-native-babel-transformer: 0.73.7_@babel+core@7.21.0 - metro-runtime: 0.73.7 - metro-source-map: 0.73.7 - mkdirp: 0.5.5 + metro-react-native-babel-transformer: 0.73.8_@babel+core@7.21.0 + metro-runtime: 0.73.8 + metro-source-map: 0.73.8 + mkdirp: 0.5.6 nullthrows: 1.1.1 pretty-format: 26.6.2 promise: 8.3.0 react: 18.1.0 - react-devtools-core: 4.27.1 - react-native-codegen: 0.71.3_@babel+preset-env@7.20.2 - react-native-gradle-plugin: 0.71.14 + react-devtools-core: 4.27.4 + react-native-codegen: 0.71.5_@babel+preset-env@7.20.2 + react-native-gradle-plugin: 0.71.16 react-refresh: 0.4.3 react-shallow-renderer: 16.15.0_react@18.1.0 regenerator-runtime: 0.13.11 scheduler: 0.23.0 stacktrace-parser: 0.1.10 use-sync-external-store: 1.2.0_react@18.1.0 - whatwg-fetch: 3.5.0 + whatwg-fetch: 3.6.2 ws: 6.2.2 transitivePeerDependencies: - '@babel/core' @@ -23437,13 +24301,13 @@ packages: react-transition-group: 2.9.0_ef5jwxihqo6n7gxfmzogljlgcm dev: false - /react-spring/9.4.2_uhqtmaalq6dzvuj2e7ivp7mfdy: + /react-spring/9.4.2_q62pa2zh755ec65gt45qyms3ji: resolution: {integrity: sha512-mK9xdq1kAhbe5YpP4EG2IzRa2C1M1UfR/MO1f83PE+IpHwCm1nGQhteF3MGyX6I3wnkoBWTXbY6n4443Dp52Og==} dependencies: '@react-spring/core': 9.4.2_react@18.1.0 - '@react-spring/konva': 9.4.2_rsmh77mjf5d3yaipkzbdcdl4ge - '@react-spring/native': 9.4.2_uospdmtjzgtsmr2g7nqdo5nu5a - '@react-spring/three': 9.4.2_3vv36uhpvb56hddpd2m4jzt56q + '@react-spring/konva': 9.4.2_juvqtg4kykgnkoer6bn4r6lvtu + '@react-spring/native': 9.4.2_w22g7zrmlirvzlfb2wxddcdohe + '@react-spring/three': 9.4.2_n43b4isi3dphbyu4mx37hqycza '@react-spring/web': 9.4.2_ef5jwxihqo6n7gxfmzogljlgcm '@react-spring/zdog': 9.4.2_77gplihovuwhn6erb2kol6s2xa transitivePeerDependencies: @@ -23584,7 +24448,7 @@ packages: slide: 1.1.6 util-extend: 1.0.3 optionalDependencies: - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 dev: true /read-package-json/2.1.1: @@ -23595,7 +24459,7 @@ packages: normalize-package-data: 2.5.0 npm-normalize-package-bin: 1.0.1 optionalDependencies: - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 dev: true /read-pkg-up/1.0.1: @@ -23683,7 +24547,7 @@ packages: dependencies: debuglog: 1.0.1 dezalgo: 1.0.3 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 once: 1.4.0 dev: true @@ -23691,7 +24555,7 @@ packages: resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==} engines: {node: '>=0.10'} dependencies: - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 micromatch: 3.1.10 readable-stream: 2.3.7 transitivePeerDependencies: @@ -24427,7 +25291,7 @@ packages: klona: 2.0.5 neo-async: 2.6.2 sass: 1.32.4 - webpack: 5.75.0_esbuild@0.17.8 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a /sass/1.32.4: resolution: {integrity: sha512-N0BT0PI/t3+gD8jKa83zJJUb7ssfQnRRfqN+GIErokW6U4guBpfYl8qYB+OFLEho+QvnV5ZH1R9qhUC/Z2Ch9w==} @@ -24709,6 +25573,11 @@ packages: /shell-quote/1.7.4: resolution: {integrity: sha512-8o/QEhSSRb1a5i7TFR0iM4G16Z0vYB2OQVs4G3aAFXjn3T6yEx8AZxy1PgDF7I00LZHYA3WxaSYIf5e5sAX8Rw==} + dev: true + + /shell-quote/1.8.0: + resolution: {integrity: sha512-QHsz8GgQIGKlRi24yFc6a6lN69Idnx634w49ay6+jA5yFh7a1UY+4Rp6HPx/L/1zcEDPEij8cIsiqR6bQsE5VQ==} + dev: false /shelljs/0.8.5: resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} @@ -25080,6 +25949,12 @@ packages: /source-map/0.7.3: resolution: {integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==} engines: {node: '>= 8'} + dev: true + + /source-map/0.7.4: + resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} + engines: {node: '>= 8'} + dev: false /sourcegraph/25.7.0_graphql@15.4.0: resolution: {integrity: sha512-3Xdr480Ojkl9fZfaOH7xDy4N8YeQOyccNKVlObOJcj4SR7oFLOra1EFYoMrJPZ9axuD1hSi+34YCx5vocGlRzQ==} @@ -25194,7 +26069,7 @@ packages: webpack: ^1 || ^2 || ^3 || ^4 || ^5 dependencies: chalk: 4.1.2 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a dev: true /speedline-core/1.4.3: @@ -25252,6 +26127,13 @@ packages: dependencies: escape-string-regexp: 2.0.0 + /stack-utils/2.0.6: + resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} + engines: {node: '>=10'} + dependencies: + escape-string-regexp: 2.0.0 + dev: false + /stackframe/1.3.4: resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} @@ -25542,6 +26424,10 @@ packages: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} + /strnum/1.0.5: + resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} + dev: false + /style-loader/1.3.0_webpack@5.75.0: resolution: {integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==} engines: {node: '>= 8.9.0'} @@ -25550,7 +26436,7 @@ packages: dependencies: loader-utils: 2.0.4 schema-utils: 2.7.0 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a dev: true /style-loader/2.0.0_webpack@5.75.0: @@ -25561,7 +26447,7 @@ packages: dependencies: loader-utils: 2.0.4 schema-utils: 3.1.1 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a dev: true /style-loader/3.3.1_webpack@5.75.0: @@ -25570,7 +26456,7 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - webpack: 5.75.0_esbuild@0.17.8 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a /style-mod/4.0.0: resolution: {integrity: sha512-OPhtyEjyyN9x3nhPsu76f52yUGXiZcgvsrFVtvTkyGRQJ0XK+GPc6ov1z+lRpbeabka+MYEQxOYRnt5nF30aMw==} @@ -25887,6 +26773,11 @@ packages: engines: {node: '>= 8'} dev: true + /svelte/3.57.0: + resolution: {integrity: sha512-WMXEvF+RtAaclw0t3bPDTUe19pplMlfyKDsixbHQYgCWi9+O9VN0kXU1OppzrB9gPAvz4NALuoca2LfW2bOjTQ==} + engines: {node: '>= 8'} + dev: true + /sver-compat/1.5.0: resolution: {integrity: sha512-aFTHfmjwizMNlNE6dsGmoAM4lHjL0CyiobWaFiXWSlD7cIxshW422Nb8KbXCmR6z+0ZEPY+daXJrDyh/vuwTyg==} dependencies: @@ -26081,7 +26972,7 @@ packages: serialize-javascript: 5.0.1 source-map: 0.6.1 terser: 5.16.1 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a webpack-sources: 1.4.3 transitivePeerDependencies: - bluebird @@ -26110,6 +27001,31 @@ packages: serialize-javascript: 6.0.0 terser: 5.16.1 webpack: 5.75.0_esbuild@0.17.8 + dev: false + + /terser-webpack-plugin/5.3.6_zj7shrtzhjuywytipisjis56au: + resolution: {integrity: sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' + webpack: ^5.1.0 + peerDependenciesMeta: + '@swc/core': + optional: true + esbuild: + optional: true + uglify-js: + optional: true + dependencies: + '@jridgewell/trace-mapping': 0.3.17 + esbuild: 0.17.14 + jest-worker: 27.5.1 + schema-utils: 3.1.1 + serialize-javascript: 6.0.0 + terser: 5.16.1 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a /terser/4.8.1: resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==} @@ -26132,6 +27048,17 @@ packages: commander: 2.20.3 source-map-support: 0.5.21 + /terser/5.16.8: + resolution: {integrity: sha512-QI5g1E/ef7d+PsDifb+a6nnVgC4F22Bg6T0xrBrz6iloVB4PUkkunp6V8nzoOOZJIzjWVdAGqCdlKlhLq/TbIA==} + engines: {node: '>=10'} + hasBin: true + dependencies: + '@jridgewell/source-map': 0.3.2 + acorn: 8.8.2 + commander: 2.20.3 + source-map-support: 0.5.21 + dev: false + /test-exclude/6.0.0: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} engines: {node: '>=8'} @@ -26164,8 +27091,8 @@ packages: resolution: {integrity: sha512-A8YS1bpOzm9os0w7wH/BbN5WZgzyf0zbrrWHckX57v+EkCaM7jZPoRpzgqrakh2e7IWP1KwAnMtlcGTATYZw8A==} dev: true - /three/0.149.0: - resolution: {integrity: sha512-tohpUxPDht0qExRLDTM8sjRLc5d9STURNrdnK3w9A+V4pxaTBfKWWT/IqtiLfg23Vfc3Z+ImNfvRw1/0CtxrkQ==} + /three/0.150.1: + resolution: {integrity: sha512-5C1MqKUWaHYo13BX0Q64qcdwImgnnjSOFgBscOzAo8MYCzEtqfQqorEKMcajnA3FHy1yVlIe9AmaMQ0OQracNA==} dev: false /throat/5.0.0: @@ -26441,7 +27368,7 @@ packages: micromatch: 4.0.5 semver: 7.3.8 typescript: 5.0.2 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a dev: true /ts-log/2.2.3: @@ -26706,8 +27633,8 @@ packages: source-map: 0.6.1 dev: false - /uglify-js/3.14.2: - resolution: {integrity: sha512-rtPMlmcO4agTUfz10CbgJ1k6UAoXM2gWb3GoMPPZB/+/Ackf8lNWk11K4rYi2D0apgoFRLtQOZhb+/iGNJq26A==} + /uglify-js/3.17.4: + resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} engines: {node: '>=0.8.0'} hasBin: true requiresBuild: true @@ -27091,7 +28018,7 @@ packages: loader-utils: 2.0.4 mime-types: 2.1.35 schema-utils: 3.1.1 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a dev: true /url-parse-lax/1.0.0: @@ -27686,7 +28613,7 @@ packages: import-local: 3.0.2 interpret: 3.1.1 rechoir: 0.8.0 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a webpack-bundle-analyzer: 4.7.0 webpack-dev-server: 4.11.1_rjsyjcrmk25kqsjzwkvj3a2evq webpack-merge: 5.7.3 @@ -27701,7 +28628,7 @@ packages: mime: 2.6.0 mkdirp: 0.5.5 range-parser: 1.2.1 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a webpack-log: 2.0.0 dev: true @@ -27717,7 +28644,7 @@ packages: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 3.1.1 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a dev: true /webpack-dev-middleware/5.3.3_webpack@5.75.0: @@ -27731,7 +28658,7 @@ packages: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.0.0 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a /webpack-dev-server/4.11.1_rjsyjcrmk25kqsjzwkvj3a2evq: resolution: {integrity: sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw==} @@ -27771,7 +28698,7 @@ packages: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a webpack-cli: 5.0.1_y7ttplitmkohdpgkllksfboxwa webpack-dev-middleware: 5.3.3_webpack@5.75.0 ws: 8.11.0 @@ -27787,7 +28714,7 @@ packages: peerDependencies: webpack: ^2.0.0 || ^3.0.0 || ^4.0.0 dependencies: - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a dev: true /webpack-hot-middleware/2.25.1: @@ -27814,7 +28741,7 @@ packages: webpack: ^5.47.0 dependencies: tapable: 2.2.1 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a webpack-sources: 2.3.0 dev: true @@ -27860,46 +28787,6 @@ packages: resolution: {integrity: sha512-5NUqC2JquIL2pBAAo/VfBP6KuGkHIZQXW/lNKupLPfhViwh8wNsu0BObtl09yuKZszeEUfbXz8xhrHvSG16Nqw==} dev: true - /webpack/5.75.0_cf7cgeqdkm72g3fdehkr7aaod4: - resolution: {integrity: sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true - dependencies: - '@types/eslint-scope': 3.7.3 - '@types/estree': 0.0.51 - '@webassemblyjs/ast': 1.11.1 - '@webassemblyjs/wasm-edit': 1.11.1 - '@webassemblyjs/wasm-parser': 1.11.1 - acorn: 8.8.1 - acorn-import-assertions: 1.8.0_acorn@8.8.1 - browserslist: 4.21.4 - chrome-trace-event: 1.0.2 - enhanced-resolve: 5.10.0 - es-module-lexer: 0.9.3 - eslint-scope: 5.1.1 - events: 3.3.0 - glob-to-regexp: 0.4.1 - graceful-fs: 4.2.10 - json-parse-even-better-errors: 2.3.1 - loader-runner: 4.2.0 - mime-types: 2.1.35 - neo-async: 2.6.2 - schema-utils: 3.1.1 - tapable: 2.2.1 - terser-webpack-plugin: 5.3.6_6hyl5w2uqyeivowpusuiulbmoy - watchpack: 2.4.0 - webpack-cli: 5.0.1_y7ttplitmkohdpgkllksfboxwa - webpack-sources: 3.2.3 - transitivePeerDependencies: - - '@swc/core' - - esbuild - - uglify-js - /webpack/5.75.0_esbuild@0.17.8: resolution: {integrity: sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==} engines: {node: '>=10.13.0'} @@ -27938,6 +28825,47 @@ packages: - '@swc/core' - esbuild - uglify-js + dev: false + + /webpack/5.75.0_pdcrf7mb3dfag2zju4x4octu4a: + resolution: {integrity: sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==} + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + dependencies: + '@types/eslint-scope': 3.7.3 + '@types/estree': 0.0.51 + '@webassemblyjs/ast': 1.11.1 + '@webassemblyjs/wasm-edit': 1.11.1 + '@webassemblyjs/wasm-parser': 1.11.1 + acorn: 8.8.1 + acorn-import-assertions: 1.8.0_acorn@8.8.1 + browserslist: 4.21.4 + chrome-trace-event: 1.0.2 + enhanced-resolve: 5.10.0 + es-module-lexer: 0.9.3 + eslint-scope: 5.1.1 + events: 3.3.0 + glob-to-regexp: 0.4.1 + graceful-fs: 4.2.10 + json-parse-even-better-errors: 2.3.1 + loader-runner: 4.2.0 + mime-types: 2.1.35 + neo-async: 2.6.2 + schema-utils: 3.1.1 + tapable: 2.2.1 + terser-webpack-plugin: 5.3.6_zj7shrtzhjuywytipisjis56au + watchpack: 2.4.0 + webpack-cli: 5.0.1_y7ttplitmkohdpgkllksfboxwa + webpack-sources: 3.2.3 + transitivePeerDependencies: + - '@swc/core' + - esbuild + - uglify-js /websocket-driver/0.7.4: resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} @@ -27966,6 +28894,11 @@ packages: /whatwg-fetch/3.5.0: resolution: {integrity: sha512-jXkLtsR42xhXg7akoDKvKWE40eJeI+2KZqcp2h3NsOrRnDvtWX36KcKl30dy+hxECivdk2BVUHVNrPtoMBUx6A==} + dev: true + + /whatwg-fetch/3.6.2: + resolution: {integrity: sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==} + dev: false /whatwg-mimetype/2.3.0: resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} @@ -28078,7 +29011,7 @@ packages: '@apollo/client': ^3.3.15 graphql: ^14.5.8 || ^15.0.0 dependencies: - '@apollo/client': 3.8.0-alpha.7_wgohupceissbkfn62czjahgqgi + '@apollo/client': 3.8.0-alpha.7_e3n27dif46whwrj4763pirjq24 delay: 5.0.0 fast-json-stable-stringify: 2.1.0 graphql: 15.4.0 @@ -28109,7 +29042,7 @@ packages: dependencies: loader-utils: 2.0.4 schema-utils: 3.1.1 - webpack: 5.75.0_cf7cgeqdkm72g3fdehkr7aaod4 + webpack: 5.75.0_pdcrf7mb3dfag2zju4x4octu4a dev: true /worker-rpc/0.1.1: @@ -28195,7 +29128,7 @@ packages: engines: {node: '>=4'} dependencies: detect-indent: 5.0.0 - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 make-dir: 1.3.0 pify: 3.0.0 sort-keys: 2.0.0 @@ -28360,6 +29293,11 @@ packages: resolution: {integrity: sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg==} engines: {node: '>=10'} + /y18n/5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + dev: false + /yallist/2.1.2: resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} dev: true @@ -28503,6 +29441,19 @@ packages: y18n: 5.0.5 yargs-parser: 21.1.1 + /yargs/17.7.1: + resolution: {integrity: sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==} + engines: {node: '>=12'} + dependencies: + cliui: 8.0.1 + escalade: 3.1.1 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.1.1 + dev: false + /yargs/7.1.0: resolution: {integrity: sha512-JHLTJJ5uqdt0peYp5mHzmSNV4uHXWphgSlKk5jg3sY5XYPTBw0hzw0SDNnYISn7pAXeAv5pKT4CNY+EcCTptBg==} dependencies: