diff --git a/package.json b/package.json index 80edcce24f435c..23ae97139f124c 100644 --- a/package.json +++ b/package.json @@ -197,14 +197,14 @@ "random-seed": "0.3.0", "react": "18.2.0", "react-17": "npm:react@17.0.2", - "react-builtin": "npm:react@18.3.0-canary-aef7ce554-20230503", - "react-experimental-builtin": "npm:react@0.0.0-experimental-aef7ce554-20230503", + "react-builtin": "npm:react@18.3.0-canary-16d053d59-20230506", + "react-experimental-builtin": "npm:react@0.0.0-experimental-16d053d59-20230506", "react-dom": "18.2.0", "react-dom-17": "npm:react-dom@17.0.2", - "react-dom-builtin": "npm:react-dom@18.3.0-canary-aef7ce554-20230503", - "react-dom-experimental-builtin": "npm:react-dom@0.0.0-experimental-aef7ce554-20230503", - "react-server-dom-webpack": "18.3.0-canary-aef7ce554-20230503", - "react-server-dom-webpack-experimental": "npm:react-server-dom-webpack@0.0.0-experimental-aef7ce554-20230503", + "react-dom-builtin": "npm:react-dom@18.3.0-canary-16d053d59-20230506", + "react-dom-experimental-builtin": "npm:react-dom@0.0.0-experimental-16d053d59-20230506", + "react-server-dom-webpack": "18.3.0-canary-16d053d59-20230506", + "react-server-dom-webpack-experimental": "npm:react-server-dom-webpack@0.0.0-experimental-16d053d59-20230506", "react-ssr-prepass": "1.0.8", "react-virtualized": "9.22.3", "relay-compiler": "13.0.2", @@ -215,8 +215,8 @@ "rimraf": "3.0.2", "sass": "1.54.0", "satori": "0.4.4", - "scheduler-builtin": "npm:scheduler@0.24.0-canary-aef7ce554-20230503", - "scheduler-experimental-builtin": "npm:scheduler@0.0.0-experimental-aef7ce554-20230503", + "scheduler-builtin": "npm:scheduler@0.24.0-canary-16d053d59-20230506", + "scheduler-experimental-builtin": "npm:scheduler@0.0.0-experimental-16d053d59-20230506", "seedrandom": "3.0.5", "selenium-webdriver": "4.0.0-beta.4", "semver": "7.3.7", diff --git a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.browser.development.js b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.browser.development.js index 190fd6d8eaeec7..8165cd10705800 100644 --- a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.browser.development.js +++ b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.browser.development.js @@ -17,7 +17,7 @@ if (process.env.NODE_ENV !== "production") { var React = require("next/dist/compiled/react-experimental"); var ReactDOM = require('react-dom'); -var ReactVersion = '18.3.0-experimental-aef7ce554-20230503'; +var ReactVersion = '18.3.0-experimental-16d053d59-20230506'; var ReactSharedInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED; diff --git a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.browser.production.min.js b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.browser.production.min.js index 58b1bf1ad34a6b..d849cf2fb04659 100644 --- a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.browser.production.min.js +++ b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.browser.production.min.js @@ -143,4 +143,4 @@ for(g=0;g")),a.htmlChunks&&(b.push("")),b.push(null))}}function Cc(a){if(!1===a.flushScheduled&&0===a.pingedTasks.length&&null!==a.destination){var b=a.destination;a.flushScheduled=!0;se(a,b)}}function ye(a,b){try{var c=a.abortableTasks;if(0 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) { + args[_key2 - 1] = arguments[_key2]; + } + + printWarning('error', format, args); + } + } +} + +function printWarning(level, format, args) { + // When changing this logic, you might want to also + // update consoleWithStackDev.www.js as well. + { + var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame; + var stack = ReactDebugCurrentFrame.getStackAddendum(); + + if (stack !== '') { + format += '%s'; + args = args.concat([stack]); + } // eslint-disable-next-line react-internal/safe-string-coercion + + + var argsWithFormat = args.map(function (item) { + return String(item); + }); // Careful: RN currently depends on this prefix + + argsWithFormat.unshift('Warning: ' + format); // We intentionally don't use spread (or .apply) directly because it + // breaks IE9: https://github.com/facebook/react/issues/13610 + // eslint-disable-next-line react-internal/no-production-logging + + Function.prototype.apply.call(console[level], console, argsWithFormat); + } +} + +var ReactCurrentDispatcher = ReactSharedInternals.ReactCurrentDispatcher; // Since the "not pending" value is always the same, we can reuse the + +function resolveDispatcher() { + // Copied from react/src/ReactHooks.js. It's the same thing but in a + // different package. + var dispatcher = ReactCurrentDispatcher.current; + + { + if (dispatcher === null) { + error('Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for' + ' one of the following reasons:\n' + '1. You might have mismatching versions of React and the renderer (such as React DOM)\n' + '2. You might be breaking the Rules of Hooks\n' + '3. You might have more than one copy of React in the same app\n' + 'See https://reactjs.org/link/invalid-hook-call for tips about how to debug and fix this problem.'); + } + } // Will result in a null access error if accessed outside render phase. We + // intentionally don't throw our own error because this is in a hot path. + // Also helps ensure this is inlined. + + + return dispatcher; +} + +function useFormStatus() { + { + var dispatcher = resolveDispatcher(); // $FlowFixMe[not-a-function] We know this exists because of the feature check above. + + return dispatcher.useHostTransitionStatus(); + } +} + function createPortal() { throw new Error('createPortal was called on the server. Portals are not currently' + ' supported on the server. Update your program to conditionally call' + ' createPortal on the client only.'); } @@ -93,6 +161,7 @@ function flushSync() { exports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = Internals; exports.createPortal = createPortal; +exports.experimental_useFormStatus = useFormStatus; exports.flushSync = flushSync; exports.preconnect = preconnect; exports.prefetchDNS = prefetchDNS; diff --git a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-rendering-stub.production.min.js b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-rendering-stub.production.min.js index 3112808a265d53..71e3ccf54ed970 100644 --- a/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-rendering-stub.production.min.js +++ b/packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-rendering-stub.production.min.js @@ -7,5 +7,6 @@ * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ -'use strict';var d={usingClientEntryPoint:!1,Events:null,Dispatcher:{current:null}};function e(c){for(var b="https://reactjs.org/docs/error-decoder.html?invariant="+c,a=1;a")),a.htmlChunks&&(b.push("")),b.push(null))}}function fb(a){if(!1===a.flushScheduled&&0===a.pingedTasks.length&&null!==a.destination){var b=a.destination;a.flushScheduled=!0;Oc(a,b)}}function Uc(a,b){try{var c=a.abortableTasks;if(0=14.0.0} - peerDependencies: - '@babel/core': '>=7.11.0' - eslint: ^7.5.0 || ^8.0.0 - dependencies: - '@babel/core': 7.18.0 - eslint: 8.31.0 - eslint-scope: 5.1.1 - eslint-visitor-keys: 2.1.0 - semver: 6.3.0 - dev: true - /@babel/eslint-parser/7.18.2_uxoojzahptggrua2tvdiqlh7xm: resolution: {integrity: sha512-oFQYkE8SuH14+uR51JVAmdqwKYXGRjEXx7s+WiagVjqQ+HPE+nnwyF2qlVG8evUsUHmPcA+6YXMEDbIhEyQc5A==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} @@ -1317,7 +1303,6 @@ packages: dependencies: '@babel/helper-explode-assignable-expression': 7.16.7 '@babel/types': 7.18.0 - dev: true /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9: resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==} @@ -1325,6 +1310,7 @@ packages: dependencies: '@babel/helper-explode-assignable-expression': 7.18.6 '@babel/types': 7.18.0 + dev: true /@babel/helper-compilation-targets/7.16.7_@babel+core@7.18.0: resolution: {integrity: sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==} @@ -1413,6 +1399,7 @@ packages: '@babel/helper-split-export-declaration': 7.18.6 transitivePeerDependencies: - supports-color + dev: true /@babel/helper-create-regexp-features-plugin/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A==} @@ -1434,7 +1421,6 @@ packages: '@babel/core': 7.18.0 '@babel/helper-annotate-as-pure': 7.16.7 regexpu-core: 5.0.1 - dev: true /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.18.0: resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==} @@ -1480,7 +1466,6 @@ packages: semver: 6.3.0 transitivePeerDependencies: - supports-color - dev: true /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.18.0: resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} @@ -1496,6 +1481,7 @@ packages: semver: 6.3.0 transitivePeerDependencies: - supports-color + dev: true /@babel/helper-environment-visitor/7.18.2: resolution: {integrity: sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==} @@ -1517,13 +1503,13 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.18.0 - dev: true /@babel/helper-explode-assignable-expression/7.18.6: resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.18.0 + dev: true /@babel/helper-function-name/7.17.9: resolution: {integrity: sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==} @@ -1544,7 +1530,6 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.18.0 - dev: true /@babel/helper-hoist-variables/7.18.6: resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} @@ -1569,6 +1554,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.18.0 + dev: true /@babel/helper-module-imports/7.16.7: resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==} @@ -1623,6 +1609,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.18.0 + dev: true /@babel/helper-plugin-utils/7.16.7: resolution: {integrity: sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==} @@ -1632,7 +1619,6 @@ packages: /@babel/helper-plugin-utils/7.17.12: resolution: {integrity: sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==} engines: {node: '>=6.9.0'} - dev: true /@babel/helper-plugin-utils/7.19.0: resolution: {integrity: sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==} @@ -1662,7 +1648,6 @@ packages: '@babel/types': 7.18.0 transitivePeerDependencies: - supports-color - dev: true /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.18.0: resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} @@ -1677,6 +1662,7 @@ packages: '@babel/types': 7.18.0 transitivePeerDependencies: - supports-color + dev: true /@babel/helper-replace-supers/7.16.7: resolution: {integrity: sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==} @@ -1713,6 +1699,7 @@ packages: '@babel/types': 7.18.0 transitivePeerDependencies: - supports-color + dev: true /@babel/helper-simple-access/7.18.2: resolution: {integrity: sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ==} @@ -1737,6 +1724,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.18.0 + dev: true /@babel/helper-split-export-declaration/7.16.7: resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==} @@ -1788,7 +1776,6 @@ packages: '@babel/types': 7.18.0 transitivePeerDependencies: - supports-color - dev: true /@babel/helper-wrap-function/7.19.0: resolution: {integrity: sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==} @@ -1800,6 +1787,7 @@ packages: '@babel/types': 7.18.0 transitivePeerDependencies: - supports-color + dev: true /@babel/helpers/7.18.2: resolution: {integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==} @@ -1842,7 +1830,6 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} @@ -1852,6 +1839,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-ZoJS2XCKPBfTmL122iP6NM9dOg+d4lc9fFk3zxc8iDjvt8Pk4+TlsHSKhIPf6X+L5ORCdBzqMZDjL/WHj7WknQ==} @@ -1875,7 +1863,6 @@ packages: '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.0 - dev: true /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.18.0: resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==} @@ -1887,6 +1874,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.0 + dev: true /@babel/plugin-external-helpers/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-wNqc87qjLvsD1PIMQBzLn1bMuTlGzqLzM/1VGQ22Wm51cbCWS9k71ydp5iZS4hjwQNuTWSn/xbZkkusNENwtZg==} @@ -1924,7 +1912,6 @@ packages: '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.0 transitivePeerDependencies: - supports-color - dev: true /@babel/plugin-proposal-async-generator-functions/7.19.1_@babel+core@7.18.0: resolution: {integrity: sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q==} @@ -1939,6 +1926,7 @@ packages: '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.0 transitivePeerDependencies: - supports-color + dev: true /@babel/plugin-proposal-class-properties/7.12.1_@babel+core@7.18.0: resolution: {integrity: sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==} @@ -1988,7 +1976,6 @@ packages: '@babel/helper-plugin-utils': 7.19.0 transitivePeerDependencies: - supports-color - dev: true /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} @@ -2001,6 +1988,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color + dev: true /@babel/plugin-proposal-class-static-block/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-KBAH5ksEnYHCegqseI5N9skTdxgJdmDoAOc0uXa+4QMYKeZD0w5IARh4FMlTNtaHhbB8v+KzMdTgxMMzsIy6Yg==} @@ -2028,7 +2016,6 @@ packages: '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.0 transitivePeerDependencies: - supports-color - dev: true /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==} @@ -2042,6 +2029,7 @@ packages: '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.0 transitivePeerDependencies: - supports-color + dev: true /@babel/plugin-proposal-dynamic-import/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g==} @@ -2063,7 +2051,6 @@ packages: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.0 - dev: true /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} @@ -2074,6 +2061,7 @@ packages: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.0 + dev: true /@babel/plugin-proposal-export-namespace-from/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA==} @@ -2095,7 +2083,6 @@ packages: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.0 - dev: true /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.18.0: resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} @@ -2106,6 +2093,7 @@ packages: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.0 + dev: true /@babel/plugin-proposal-json-strings/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ==} @@ -2127,7 +2115,6 @@ packages: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.0 - dev: true /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} @@ -2138,6 +2125,7 @@ packages: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.0 + dev: true /@babel/plugin-proposal-logical-assignment-operators/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw==} @@ -2159,7 +2147,6 @@ packages: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.0 - dev: true /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.18.0: resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==} @@ -2170,6 +2157,7 @@ packages: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.0 + dev: true /@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.18.0: resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==} @@ -2190,7 +2178,6 @@ packages: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.0 - dev: true /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} @@ -2201,6 +2188,7 @@ packages: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.0 + dev: true /@babel/plugin-proposal-numeric-separator/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg==} @@ -2222,7 +2210,6 @@ packages: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.0 - dev: true /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} @@ -2233,6 +2220,7 @@ packages: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.0 + dev: true /@babel/plugin-proposal-object-rest-spread/7.14.7_@babel+core@7.18.0: resolution: {integrity: sha512-082hsZz+sVabfmDWo1Oct1u1AgbKbUAyVgmX4otIc7bdsRgHBXwTwb3DpDmD4Eyyx6DNiuz5UAATT655k+kL5g==} @@ -2260,7 +2248,6 @@ packages: '@babel/helper-plugin-utils': 7.19.0 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.0 '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.0 - dev: true /@babel/plugin-proposal-object-rest-spread/7.19.4_@babel+core@7.18.0: resolution: {integrity: sha512-wHmj6LDxVDnL+3WhXteUBaoM1aVILZODAUjg11kHqG4cOlfgMQGxw6aCgvrXrmaJR3Bn14oZhImyCPZzRpC93Q==} @@ -2274,6 +2261,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.0 '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.0 + dev: true /@babel/plugin-proposal-optional-catch-binding/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ==} @@ -2295,7 +2283,6 @@ packages: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.0 - dev: true /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} @@ -2306,6 +2293,7 @@ packages: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.0 + dev: true /@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.18.0: resolution: {integrity: sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==} @@ -2328,7 +2316,6 @@ packages: '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.0 - dev: true /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.18.0: resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==} @@ -2340,6 +2327,7 @@ packages: '@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.18.0 + dev: true /@babel/plugin-proposal-private-methods/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g==} @@ -2365,7 +2353,6 @@ packages: '@babel/helper-plugin-utils': 7.19.0 transitivePeerDependencies: - supports-color - dev: true /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} @@ -2378,6 +2365,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color + dev: true /@babel/plugin-proposal-private-property-in-object/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-62EyfyA3WA0mZiF2e2IV9mc9Ghwxcg8YTu8BS4Wss4Y3PY725OmS9M0qLORbJwLqFtGh+jiE4wAmocK2CTUK2Q==} @@ -2407,7 +2395,6 @@ packages: '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.0 transitivePeerDependencies: - supports-color - dev: true /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==} @@ -2422,6 +2409,7 @@ packages: '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.0 transitivePeerDependencies: - supports-color + dev: true /@babel/plugin-proposal-unicode-property-regex/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q==} @@ -2443,7 +2431,6 @@ packages: '@babel/core': 7.18.0 '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.0 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} @@ -2531,7 +2518,6 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.18.0: resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} @@ -2541,6 +2527,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.0: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} @@ -2681,7 +2668,6 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} @@ -2691,6 +2677,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-transform-async-to-generator/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA==} @@ -2718,7 +2705,6 @@ packages: '@babel/helper-remap-async-to-generator': 7.16.8 transitivePeerDependencies: - supports-color - dev: true /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} @@ -2732,6 +2718,7 @@ packages: '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.0 transitivePeerDependencies: - supports-color + dev: true /@babel/plugin-transform-block-scoped-functions/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ==} @@ -2751,7 +2738,6 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} @@ -2761,6 +2747,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-transform-block-scoping/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-LBYm4ZocNgoCqyxMLoOnwpsmQ18HWTQvql64t3GvMUzLQrNoV1BDG0lNftC8QKYERkZgCCT/7J5xWGObGAyHDw==} @@ -2780,7 +2767,6 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-transform-block-scoping/7.20.0_@babel+core@7.18.0: resolution: {integrity: sha512-sXOohbpHZSk7GjxK9b3dKB7CfqUD5DwOH+DggKzOQ7TXYP+RCSbRykfjQmn/zq+rBjycVRtLf9pYhAaEJA786w==} @@ -2790,6 +2776,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-transform-classes/7.14.9_@babel+core@7.18.0: resolution: {integrity: sha512-NfZpTcxU3foGWbl4wxmZ35mTsYJy8oQocbeIMoDAGGFarAmSQlL+LWMkDx/tj6pNotpbX3rltIA4dprgAPOq5A==} @@ -2826,7 +2813,6 @@ packages: globals: 11.12.0 transitivePeerDependencies: - supports-color - dev: true /@babel/plugin-transform-classes/7.19.0_@babel+core@7.18.0: resolution: {integrity: sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==} @@ -2846,6 +2832,7 @@ packages: globals: 11.12.0 transitivePeerDependencies: - supports-color + dev: true /@babel/plugin-transform-computed-properties/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg==} @@ -2865,7 +2852,6 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.18.0: resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} @@ -2875,6 +2861,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-transform-destructuring/7.14.7_@babel+core@7.18.0: resolution: {integrity: sha512-0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw==} @@ -2894,7 +2881,6 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-transform-destructuring/7.20.0_@babel+core@7.18.0: resolution: {integrity: sha512-1dIhvZfkDVx/zn2S1aFwlruspTt4189j7fEkH0Y0VyuDM6bQt7bD6kLcz3l4IlLG+e5OReaBz9ROAbttRtUHqA==} @@ -2904,6 +2890,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-transform-dotall-regex/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw==} @@ -2925,7 +2912,6 @@ packages: '@babel/core': 7.18.0 '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.0 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} @@ -2955,7 +2941,6 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.18.0: resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} @@ -2965,6 +2950,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-transform-exponentiation-operator/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA==} @@ -2986,7 +2972,6 @@ packages: '@babel/core': 7.18.0 '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.7 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} @@ -2997,6 +2982,7 @@ packages: '@babel/core': 7.18.0 '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-transform-flow-strip-types/7.16.7_@babel+core@7.18.0: resolution: {integrity: sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==} @@ -3026,7 +3012,6 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.18.0: resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} @@ -3036,6 +3021,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-transform-function-name/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ==} @@ -3058,7 +3044,6 @@ packages: '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.18.0 '@babel/helper-function-name': 7.17.9 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.18.0: resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} @@ -3070,6 +3055,7 @@ packages: '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.18.0 '@babel/helper-function-name': 7.19.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-transform-literals/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A==} @@ -3089,7 +3075,6 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-transform-literals/7.18.9_@babel+core@7.18.0: resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} @@ -3099,6 +3084,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-transform-member-expression-literals/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q==} @@ -3118,7 +3104,6 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} @@ -3128,6 +3113,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-transform-modules-amd/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g==} @@ -3155,7 +3141,6 @@ packages: babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color - dev: true /@babel/plugin-transform-modules-amd/7.19.6_@babel+core@7.18.0: resolution: {integrity: sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==} @@ -3168,6 +3153,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color + dev: true /@babel/plugin-transform-modules-commonjs/7.16.8_@babel+core@7.18.0: resolution: {integrity: sha512-oflKPvsLT2+uKQopesJt3ApiaIS2HW+hzHFcwRNtyDGieAeC/dIHZX8buJQ2J2X1rxGPy4eRcUijm3qcSPjYcA==} @@ -3196,7 +3182,6 @@ packages: babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color - dev: true /@babel/plugin-transform-modules-commonjs/7.19.6_@babel+core@7.18.0: resolution: {integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==} @@ -3210,6 +3195,7 @@ packages: '@babel/helper-simple-access': 7.19.4 transitivePeerDependencies: - supports-color + dev: true /@babel/plugin-transform-modules-systemjs/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-mNMQdvBEE5DcMQaL5LbzXFMANrQjd2W7FPzg34Y4yEz7dBgdaC+9B84dSO+/1Wba98zoDbInctCDo4JGxz1VYA==} @@ -3241,7 +3227,6 @@ packages: babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color - dev: true /@babel/plugin-transform-modules-systemjs/7.19.6_@babel+core@7.18.0: resolution: {integrity: sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==} @@ -3256,6 +3241,7 @@ packages: '@babel/helper-validator-identifier': 7.19.1 transitivePeerDependencies: - supports-color + dev: true /@babel/plugin-transform-modules-umd/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA==} @@ -3281,7 +3267,6 @@ packages: '@babel/helper-plugin-utils': 7.19.0 transitivePeerDependencies: - supports-color - dev: true /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} @@ -3294,6 +3279,7 @@ packages: '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color + dev: true /@babel/plugin-transform-named-capturing-groups-regex/7.14.9_@babel+core@7.18.0: resolution: {integrity: sha512-l666wCVYO75mlAtGFfyFwnWmIXQm3kSH0C3IRnJqWcZbWkoihyAdDhFm2ZWaxWTqvBvhVFfJjMRQ0ez4oN1yYA==} @@ -3314,7 +3300,6 @@ packages: '@babel/core': 7.18.0 '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.0 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-transform-named-capturing-groups-regex/7.19.1_@babel+core@7.18.0: resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==} @@ -3325,6 +3310,7 @@ packages: '@babel/core': 7.18.0 '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.18.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-transform-new-target/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ==} @@ -3344,7 +3330,6 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} @@ -3354,6 +3339,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-transform-object-super/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg==} @@ -3379,7 +3365,6 @@ packages: '@babel/helper-replace-supers': 7.18.2 transitivePeerDependencies: - supports-color - dev: true /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} @@ -3392,6 +3377,7 @@ packages: '@babel/helper-replace-supers': 7.19.1 transitivePeerDependencies: - supports-color + dev: true /@babel/plugin-transform-parameters/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-Tl7LWdr6HUxTmzQtzuU14SqbgrSKmaR77M0OKyq4njZLQTPfOvzblNKyNkGwOfEFCEx7KeYHQHDI0P3F02IVkA==} @@ -3411,7 +3397,6 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.18.0: resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==} @@ -3421,6 +3406,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-transform-property-literals/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw==} @@ -3440,7 +3426,6 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} @@ -3450,6 +3435,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-transform-react-constant-elements/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-NBqLEx1GxllIOXJInJAQbrnwwYJsV3WaMHIcOwD8rhYS0AabTWn7kHdHgPgu5RmHLU0q4DMxhAMu8ue/KampgQ==} @@ -3570,7 +3556,6 @@ packages: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 regenerator-transform: 0.15.0 - dev: true /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==} @@ -3581,6 +3566,7 @@ packages: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 regenerator-transform: 0.15.0 + dev: true /@babel/plugin-transform-reserved-words/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg==} @@ -3600,7 +3586,6 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} @@ -3610,6 +3595,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-transform-runtime/7.18.0_@babel+core@7.18.0: resolution: {integrity: sha512-7kM/jJ3DD/y1hDPn0jov12DoUIFsxLiItprhNydUSibxaywaxNqKwq+ODk72J9ePn4LWobIc5ik6TAJhVl8IkQ==} @@ -3646,7 +3632,6 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} @@ -3656,6 +3641,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-transform-spread/7.14.6_@babel+core@7.18.0: resolution: {integrity: sha512-Zr0x0YroFJku7n7+/HH3A2eIrGMjbmAIbJSVv0IZ+t3U2WUQUA64S/oeied2e+MaGSjmt4alzBCsK9E8gh+fag==} @@ -3677,7 +3663,6 @@ packages: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 - dev: true /@babel/plugin-transform-spread/7.19.0_@babel+core@7.18.0: resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==} @@ -3688,6 +3673,7 @@ packages: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + dev: true /@babel/plugin-transform-sticky-regex/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A==} @@ -3707,7 +3693,6 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} @@ -3717,6 +3702,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-transform-template-literals/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg==} @@ -3736,7 +3722,6 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.18.0: resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} @@ -3746,6 +3731,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-transform-typeof-symbol/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw==} @@ -3765,7 +3751,6 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.18.0: resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} @@ -3775,6 +3760,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-transform-typescript/7.16.8_@babel+core@7.18.0: resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==} @@ -3835,7 +3821,6 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.18.0: resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} @@ -3845,6 +3830,7 @@ packages: dependencies: '@babel/core': 7.18.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/plugin-transform-unicode-regex/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw==} @@ -3866,7 +3852,6 @@ packages: '@babel/core': 7.18.0 '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.0 '@babel/helper-plugin-utils': 7.19.0 - dev: true /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.18.0: resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} @@ -3877,6 +3862,7 @@ packages: '@babel/core': 7.18.0 '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.18.0 '@babel/helper-plugin-utils': 7.20.2 + dev: true /@babel/preset-env/7.15.0_@babel+core@7.18.0: resolution: {integrity: sha512-FhEpCNFCcWW3iZLg0L2NPE9UerdtsCR6ZcsGHUX6Om6kbCQeL5QZDqFDmeNHC6/fy6UH3jEge7K4qG5uC9In0Q==} @@ -4046,7 +4032,6 @@ packages: semver: 6.3.0 transitivePeerDependencies: - supports-color - dev: true /@babel/preset-env/7.19.4_@babel+core@7.18.0: resolution: {integrity: sha512-5QVOTXUdqTCjQuh2GGtdd7YEhoRXBMVGROAtsBeLGIbIz3obCBIfRMT1I3ZKkMgNzwkyCkftDXSSkHxnfVf4qg==} @@ -4132,6 +4117,7 @@ packages: semver: 6.3.0 transitivePeerDependencies: - supports-color + dev: true /@babel/preset-flow/7.14.5_@babel+core@7.18.0: resolution: {integrity: sha512-pP5QEb4qRUSVGzzKx9xqRuHUrM/jEzMqdrZpdMA+oUCRgd5zM1qGr5y5+ZgAL/1tVv1H0dyk5t4SKJntqyiVtg==} @@ -4552,6 +4538,7 @@ packages: strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color + dev: false /@firebase/analytics-types/0.3.1: resolution: {integrity: sha512-63vVJ5NIBh/JF8l9LuPrQYSzFimk7zYHySQB4Dk9rVdJ8kV/vGQoVTvRu1UW05sEc2Ug5PqtEChtTHU+9hvPcA==} @@ -4878,6 +4865,7 @@ packages: minimatch: 3.1.2 transitivePeerDependencies: - supports-color + dev: false /@humanwhocodes/config-array/0.5.0: resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} @@ -4893,6 +4881,7 @@ packages: /@humanwhocodes/module-importer/1.0.1: resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} engines: {node: '>=12.22'} + dev: false /@humanwhocodes/object-schema/1.2.1: resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} @@ -6058,8 +6047,8 @@ packages: resolution: {integrity: sha512-XQr74QaLeMiqhStEhLn1im9EOMnkypp7MZOwQhGzqp2Weu5eQJbpPxWxixxlYRKWPOmJjsk6qYfYH9kq43yc2w==} dev: true - /@next/react-refresh-utils/13.3.0_react-refresh@0.12.0: - resolution: {integrity: sha512-2t6jzB+H3PLWSGMdULG0t9n/GX3dklUhkQZqS0LYvb2lBpETrm5Ng6Mck+S/U0iEfxFmAE8IJHhOxBAQO3FeLA==} + /@next/react-refresh-utils/13.4.1_react-refresh@0.12.0: + resolution: {integrity: sha512-Yf0HKQRBWiFGjCglj/GJ5CrudPhiEZ9/1oti9zpgZ5aQ3dAlezdfVUQYeERW63jESXCRS94AhL9BXNfM8fssWw==} peerDependencies: react-refresh: 0.12.0 webpack: ^4 || ^5 @@ -7915,18 +7904,26 @@ packages: acorn: 7.4.1 dev: true + /acorn-jsx/5.3.2_acorn@8.5.0: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 8.5.0 + /acorn-jsx/5.3.2_acorn@8.8.0: resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: acorn: 8.8.0 + dev: false /acorn-loose/8.3.0: resolution: {integrity: sha512-75lAs9H19ldmW+fAbyqHdjgdCrz0pWGXKmnqFoh8PyVd1L2RIb4RzYrSjmopeqv3E1G3/Pimu6GgLlrGbrkF7w==} engines: {node: '>=0.4.0'} dependencies: - acorn: 8.8.0 + acorn: 8.5.0 dev: true /acorn-node/1.8.2: @@ -7961,7 +7958,6 @@ packages: resolution: {integrity: sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q==} engines: {node: '>=0.4.0'} hasBin: true - dev: true /acorn/8.8.0: resolution: {integrity: sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==} @@ -8245,6 +8241,7 @@ packages: /argparse/2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + dev: false /args/4.0.0: resolution: {integrity: sha512-4b7lVF58nlo7sNtq8s2OueroOY/UHn0Nt/NVjsx9zn28u6yDVb9bQ/uy/5jKtHCbUDil4MlMyDLF5+OHEgnTug==} @@ -8690,7 +8687,6 @@ packages: semver: 6.3.0 transitivePeerDependencies: - supports-color - dev: true /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.18.0: resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} @@ -8703,6 +8699,7 @@ packages: semver: 6.3.0 transitivePeerDependencies: - supports-color + dev: true /babel-plugin-polyfill-corejs3/0.2.3_@babel+core@7.18.0: resolution: {integrity: sha512-rCOFzEIJpJEAU14XCcV/erIf/wZQMmMT5l5vXOpL5uoznyOGfDIjPj6FVytMvtzaKSTSVKouOCTPJ5OMUZH30g==} @@ -8726,7 +8723,6 @@ packages: core-js-compat: 3.22.7 transitivePeerDependencies: - supports-color - dev: true /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.18.0: resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} @@ -8738,6 +8734,7 @@ packages: core-js-compat: 3.26.0 transitivePeerDependencies: - supports-color + dev: true /babel-plugin-polyfill-regenerator/0.2.2_@babel+core@7.18.0: resolution: {integrity: sha512-Goy5ghsc21HgPDFtzRkSirpZVW35meGoTmTOb2bxqdl60ghub4xOidgNTHaZfQ2FaxQsKmwvXtOAkcIS4SMBWg==} @@ -8759,7 +8756,6 @@ packages: '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.0 transitivePeerDependencies: - supports-color - dev: true /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.18.0: resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} @@ -8770,6 +8766,7 @@ packages: '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.18.0 transitivePeerDependencies: - supports-color + dev: true /babel-plugin-transform-async-to-promises/0.8.15: resolution: {integrity: sha512-fDXP68ZqcinZO2WCiimCL9zhGjGXOnn3D33zvbh+yheZ/qOrNVVDDIBtAaM3Faz8TRvQzHiRKsu3hfrBAhEncQ==} @@ -10220,12 +10217,12 @@ packages: dependencies: browserslist: 4.20.2 semver: 7.0.0 - dev: true /core-js-compat/3.26.0: resolution: {integrity: sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A==} dependencies: browserslist: 4.20.2 + dev: true /core-js-pure/3.8.2: resolution: {integrity: sha512-v6zfIQqL/pzTVAbZvYUozsxNfxcFb6Ks3ZfEbuneJl3FW9Jb8F6vLWB6f+qTmAu72msUdyb84V8d/yBFf7FNnw==} @@ -12074,6 +12071,7 @@ packages: dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 + dev: false /eslint-utils/2.1.0: resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} @@ -12100,6 +12098,7 @@ packages: dependencies: eslint: 8.31.0 eslint-visitor-keys: 2.1.0 + dev: false /eslint-visitor-keys/1.3.0: resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} @@ -12113,6 +12112,7 @@ packages: /eslint-visitor-keys/3.3.0: resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: false /eslint/7.24.0: resolution: {integrity: sha512-k9gaHeHiFmGCDQ2rEfvULlSLruz6tgfA8DEn+rY9/oYPFFTlz55mM/Q/Rij1b2Y42jwZiK3lXvNTw6w6TXzcKQ==} @@ -12255,6 +12255,7 @@ packages: text-table: 0.2.0 transitivePeerDependencies: - supports-color + dev: false /espree/7.3.1: resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} @@ -12272,6 +12273,7 @@ packages: acorn: 8.8.0 acorn-jsx: 5.3.2_acorn@8.8.0 eslint-visitor-keys: 3.3.0 + dev: false /esprima/4.0.1: resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} @@ -12911,6 +12913,7 @@ packages: dependencies: locate-path: 6.0.0 path-exists: 4.0.0 + dev: false /find-up/6.3.0: resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==} @@ -13789,7 +13792,7 @@ packages: hasBin: true dependencies: minimist: 1.2.6 - neo-async: 2.6.2 + neo-async: 2.6.1 source-map: 0.6.1 wordwrap: 1.0.0 optionalDependencies: @@ -16047,6 +16050,7 @@ packages: /js-sdsl/4.2.0: resolution: {integrity: sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ==} + dev: false /js-tokens/4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} @@ -16063,11 +16067,12 @@ packages: hasBin: true dependencies: argparse: 2.0.1 + dev: false /jsbn/0.1.1: resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} - /jscodeshift/0.13.1_@babel+preset-env@7.19.4: + /jscodeshift/0.13.1_@babel+preset-env@7.18.0: resolution: {integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==} hasBin: true peerDependencies: @@ -16079,7 +16084,7 @@ packages: '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.18.0 '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.18.0 '@babel/plugin-transform-modules-commonjs': 7.16.8_@babel+core@7.18.0 - '@babel/preset-env': 7.19.4_@babel+core@7.18.0 + '@babel/preset-env': 7.18.0_@babel+core@7.18.0 '@babel/preset-flow': 7.16.7_@babel+core@7.18.0 '@babel/preset-typescript': 7.16.7_@babel+core@7.18.0 '@babel/register': 7.17.0_@babel+core@7.18.0 @@ -16112,7 +16117,7 @@ packages: optional: true dependencies: abab: 2.0.5 - acorn: 8.8.0 + acorn: 8.5.0 acorn-globals: 6.0.0 cssom: 0.4.4 cssstyle: 2.3.0 @@ -16712,6 +16717,7 @@ packages: engines: {node: '>=10'} dependencies: p-locate: 5.0.0 + dev: false /locate-path/7.2.0: resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} @@ -17567,8 +17573,8 @@ packages: /micromark-extension-mdxjs/0.3.0: resolution: {integrity: sha512-NQuiYA0lw+eFDtSG4+c7ao3RG9dM4P0Kx/sn8OLyPhxtIc6k+9n14k5VfLxRKfAxYRTo8c5PLZPaRNmslGWxJw==} dependencies: - acorn: 8.8.0 - acorn-jsx: 5.3.2_acorn@8.8.0 + acorn: 8.5.0 + acorn-jsx: 5.3.2_acorn@8.5.0 micromark: 2.11.4 micromark-extension-mdx-expression: 0.3.2 micromark-extension-mdx-jsx: 0.3.3 @@ -17581,8 +17587,8 @@ packages: /micromark-extension-mdxjs/1.0.0: resolution: {integrity: sha512-TZZRZgeHvtgm+IhtgC2+uDMR7h8eTKF0QUX9YsgoL9+bADBpBY6SiLvWqnBlLbCEevITmTqmEuY3FoxMKVs1rQ==} dependencies: - acorn: 8.8.0 - acorn-jsx: 5.3.2_acorn@8.8.0 + acorn: 8.5.0 + acorn-jsx: 5.3.2_acorn@8.5.0 micromark-extension-mdx-expression: 1.0.4 micromark-extension-mdx-jsx: 1.0.3 micromark-extension-mdx-md: 1.0.0 @@ -18970,6 +18976,7 @@ packages: engines: {node: '>=10'} dependencies: p-limit: 3.1.0 + dev: false /p-locate/6.0.0: resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} @@ -21230,14 +21237,14 @@ packages: strip-json-comments: 2.0.1 dev: true - /react-dom/0.0.0-experimental-aef7ce554-20230503_react@18.2.0: - resolution: {integrity: sha512-AmTwj71nZz4DV4SSfzSqxelZPgnj+ALs4kp9/4QHacTLohDBn9GED2eRTw+E21KMToqT05j1ZSUWurxwFVnKSA==} + /react-dom/0.0.0-experimental-16d053d59-20230506_react@18.2.0: + resolution: {integrity: sha512-I4PIT9ZAdDgpbav9BxfzPv2p5otJz6BEbFEBvFwd1BnQJmtkKKApUU7RYdGKnwY2/r6hdfxPm2pne+NhiyBkzg==} peerDependencies: - react: 0.0.0-experimental-aef7ce554-20230503 + react: 0.0.0-experimental-16d053d59-20230506 dependencies: loose-envify: 1.4.0 react: 18.2.0 - scheduler: 0.0.0-experimental-aef7ce554-20230503 + scheduler: 0.0.0-experimental-16d053d59-20230506 dev: true /react-dom/17.0.2_react@17.0.2: @@ -21271,14 +21278,14 @@ packages: react: 18.2.0 scheduler: 0.23.0 - /react-dom/18.3.0-canary-aef7ce554-20230503_react@18.2.0: - resolution: {integrity: sha512-XyunYyvQ74LQ70sQefYRte21x3zhBfSvMu3drjd8jONP8LoJmFH0wL5pNLqfE1nH1NeCuatHNhx4MrhOzFKmZA==} + /react-dom/18.3.0-canary-16d053d59-20230506_react@18.2.0: + resolution: {integrity: sha512-5oSZ8QH2eeWRM5s9mMKu8N9PQiBaVPStBqkmLKQFv01iwedUBUQFmYTuGFaGwTnd0gQPewfQU3wqmnHKXatp6g==} peerDependencies: - react: 18.3.0-canary-aef7ce554-20230503 + react: 18.3.0-canary-16d053d59-20230506 dependencies: loose-envify: 1.4.0 react: 18.2.0 - scheduler: 0.24.0-canary-aef7ce554-20230503 + scheduler: 0.24.0-canary-16d053d59-20230506 dev: true /react-is/16.13.1: @@ -21299,28 +21306,28 @@ packages: resolution: {integrity: sha512-suLIhrU2IHKL5JEKR/fAwJv7bbeq4kJ+pJopf77jHwuR+HmJS/HbrPIGsTBUVfw7tXPOmYv7UJ7PCaN49e8x4A==} engines: {node: '>=0.10.0'} - /react-server-dom-webpack/0.0.0-experimental-aef7ce554-20230503_4ifzx734of5j5ymg4ksx54vtqi: - resolution: {integrity: sha512-hkp9P+ZjmgIpC5ZEywaRDLRNCzVmnbAsB9bidnnBlE2gmWy0xZT3AMLBknmg/vSWDIQqf9CC+dVcH3JHtJBzFQ==} + /react-server-dom-webpack/0.0.0-experimental-16d053d59-20230506_4ifzx734of5j5ymg4ksx54vtqi: + resolution: {integrity: sha512-ZzsgPdm4MKyOxvMHpkjYWH2pRYp4dq+BxciRlpJatyzNDy0tXNl8Ar7xwwitxJa4NCIYCLWNslhEgwb0ewqr9A==} engines: {node: '>=0.10.0'} peerDependencies: - react: 0.0.0-experimental-aef7ce554-20230503 - react-dom: 0.0.0-experimental-aef7ce554-20230503 + react: 0.0.0-experimental-16d053d59-20230506 + react-dom: 0.0.0-experimental-16d053d59-20230506 webpack: ^5.59.0 dependencies: acorn-loose: 8.3.0 loose-envify: 1.4.0 - neo-async: 2.6.2 + neo-async: 2.6.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 webpack: 5.74.0_@swc+core@1.3.55 dev: true - /react-server-dom-webpack/18.3.0-canary-aef7ce554-20230503_4ifzx734of5j5ymg4ksx54vtqi: - resolution: {integrity: sha512-pBsyZTIYmzSTsEl9h1ejG6MMSv9fG8bhPjOTMJR0oxLAQEAOu8gmrG0Z/V297Vrj7Q69hr0bpvQBrE/Za1869g==} + /react-server-dom-webpack/18.3.0-canary-16d053d59-20230506_4ifzx734of5j5ymg4ksx54vtqi: + resolution: {integrity: sha512-lcZ81+6ThSa++ZjJrGGPJwNWuKghZxVM82OrjJDy0zkHMMKV55cta9OgHMfopo5XLw9+El47V4oOBkiL6jkRTQ==} engines: {node: '>=0.10.0'} peerDependencies: - react: 18.3.0-canary-aef7ce554-20230503 - react-dom: 18.3.0-canary-aef7ce554-20230503 + react: 18.3.0-canary-16d053d59-20230506 + react-dom: 18.3.0-canary-16d053d59-20230506 webpack: ^5.59.0 dependencies: acorn-loose: 8.3.0 @@ -21379,8 +21386,8 @@ packages: react-lifecycles-compat: 3.0.4 dev: true - /react/0.0.0-experimental-aef7ce554-20230503: - resolution: {integrity: sha512-Q2OrsLvmqV1Vxlwd/Ce3J9RHAiYqPszHAvKVb78nkIZVwtzH31Mao0cygxB8BYKh8uTtTgMCuMDuxtwMC2jFdw==} + /react/0.0.0-experimental-16d053d59-20230506: + resolution: {integrity: sha512-8PdloFcanNcryJLohpr4rVQfB4oJvsL0Z+TzJ8B66RxauwF95QqUNorGsK1heESrtj4As0oHCmiZkoYzA4uW8w==} engines: {node: '>=0.10.0'} dependencies: loose-envify: 1.4.0 @@ -21399,8 +21406,8 @@ packages: dependencies: loose-envify: 1.4.0 - /react/18.3.0-canary-aef7ce554-20230503: - resolution: {integrity: sha512-GOn8HYngztclyxfWt3syY0cwqz3cSVp82PiIijMhWdCgc0wsE1fohXdmGx3vW51ywDUChc78X2sWrRlFtQgTKQ==} + /react/18.3.0-canary-16d053d59-20230506: + resolution: {integrity: sha512-PCPYVjy2okP+BlWcR58JTzfNrRNJEtsskSTvTum9hll0jOjtzZVqgURtw6SC9MWvmYZCcdu/zTRt0cBt3M++WQ==} engines: {node: '>=0.10.0'} dependencies: loose-envify: 1.4.0 @@ -21642,7 +21649,6 @@ packages: engines: {node: '>=4'} dependencies: regenerate: 1.4.2 - dev: true /regenerate-unicode-properties/10.1.0: resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==} @@ -21733,7 +21739,6 @@ packages: regjsparser: 0.8.4 unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.0.0 - dev: true /regexpu-core/5.2.1: resolution: {integrity: sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ==} @@ -21780,7 +21785,6 @@ packages: /regjsgen/0.6.0: resolution: {integrity: sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==} - dev: true /regjsgen/0.7.1: resolution: {integrity: sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==} @@ -21797,7 +21801,6 @@ packages: hasBin: true dependencies: jsesc: 0.5.0 - dev: true /regjsparser/0.9.1: resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} @@ -22456,8 +22459,8 @@ packages: xmlchars: 2.2.0 dev: true - /scheduler/0.0.0-experimental-aef7ce554-20230503: - resolution: {integrity: sha512-LxuC9SEgP4kB8S1/URsCvx8qLtTfvSILZY8/yo0uNC7weIZIMh3Rf/1ltQP7NAA3zcKOpyvOUS+XyEQOSwTNHw==} + /scheduler/0.0.0-experimental-16d053d59-20230506: + resolution: {integrity: sha512-gGnyU4CkC/+msd1dOQW9zuquI3GoEziuS42soP0AvbTCvRkeU4qhR/mRRaU+/a7JK/OFeSSudcz7enkrkZdSPA==} dependencies: loose-envify: 1.4.0 dev: true @@ -22473,8 +22476,8 @@ packages: dependencies: loose-envify: 1.4.0 - /scheduler/0.24.0-canary-aef7ce554-20230503: - resolution: {integrity: sha512-po0PuF+i2m3Mq7Jm82uMRUXnvIUBYFH4t+G+Qs6U24rexQ0bZlCW1woHragjYKDCuvfIrP2bUTQ3Z1s6Eu9GDQ==} + /scheduler/0.24.0-canary-16d053d59-20230506: + resolution: {integrity: sha512-L6O+VuBtx4CgNOTRQhIX3BKNURkpBHqFC0x9hg7alZUA3TWyCEJAs1eDFpVBzUT5ebknEUFR7/t61RSiAfxrYg==} dependencies: loose-envify: 1.4.0 dev: true @@ -22565,7 +22568,6 @@ packages: /semver/7.0.0: resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==} hasBin: true - dev: true /semver/7.3.2: resolution: {integrity: sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==} @@ -23850,7 +23852,7 @@ packages: engines: {node: '>=10'} hasBin: true dependencies: - acorn: 8.8.0 + acorn: 8.5.0 commander: 2.20.3 source-map: 0.7.3 source-map-support: 0.5.20 @@ -25611,7 +25613,7 @@ packages: name: '@vercel/turbopack-dev' version: 0.0.0 dependencies: - '@next/react-refresh-utils': 13.3.0_react-refresh@0.12.0 + '@next/react-refresh-utils': 13.4.1_react-refresh@0.12.0 transitivePeerDependencies: - react-refresh - webpack