diff --git a/apps/backend-infrastructure/package.json b/apps/backend-infrastructure/package.json index 5f67e1e7..307737fe 100644 --- a/apps/backend-infrastructure/package.json +++ b/apps/backend-infrastructure/package.json @@ -18,6 +18,7 @@ "source-map-support": "^0.5.21" }, "devDependencies": { + "@babel/core": "7.23.3", "@types/jest": "^29.4.0", "@types/node": "18.11.18", "aws-cdk": "2.63.2", diff --git a/apps/frontend/.eslintignore b/apps/frontend/.eslintignore new file mode 100644 index 00000000..ce7eafef --- /dev/null +++ b/apps/frontend/.eslintignore @@ -0,0 +1,2 @@ +out/ +public/__ENV.js diff --git a/apps/frontend/.eslintrc.js b/apps/frontend/.eslintrc.js index edff7e22..9e1793e6 100644 --- a/apps/frontend/.eslintrc.js +++ b/apps/frontend/.eslintrc.js @@ -1,4 +1,9 @@ module.exports = { + parserOptions: { + project: 'tsconfig.json', + tsconfigRootDir: __dirname, + sourceType: 'module', + }, root: true, extends: ['custom/next'], }; diff --git a/apps/frontend/components/Layout/Layout.tsx b/apps/frontend/components/Layout/Layout.tsx index fec58e72..a07d39ab 100644 --- a/apps/frontend/components/Layout/Layout.tsx +++ b/apps/frontend/components/Layout/Layout.tsx @@ -2,9 +2,10 @@ import { Box } from '@mui/material'; import { ReactNode } from 'react'; interface Props { + alignItems?: string; children: ReactNode; } -export const Layout = ({ children }: Props): JSX.Element => { +export const Layout = ({ alignItems, children }: Props): JSX.Element => { // Warning: the maxWidth will influence the way the PDF are generated // TODO investigate how to reduce this value without changing th PDF display return ( @@ -12,7 +13,7 @@ export const Layout = ({ children }: Props): JSX.Element => { flexGrow={1} display="flex" flexDirection="column" - alignItems="left" + alignItems={alignItems ?? 'left'} sx={{ p: 1 }} > {children} diff --git a/apps/frontend/components/NavBar/NavMenuContent.tsx b/apps/frontend/components/NavBar/NavMenuContent.tsx index 061e4a84..670ab012 100644 --- a/apps/frontend/components/NavBar/NavMenuContent.tsx +++ b/apps/frontend/components/NavBar/NavMenuContent.tsx @@ -1,31 +1,26 @@ import ContentPasteIcon from '@mui/icons-material/ContentPaste'; import HomeIcon from '@mui/icons-material/Home'; -import LanguageIcon from '@mui/icons-material/Language'; import LogoutIcon from '@mui/icons-material/Logout'; import StarIcon from '@mui/icons-material/Star'; import SupervisorAccountIcon from '@mui/icons-material/SupervisorAccount'; import { Box, Button, - FormControl, IconButton, List, ListItem, ListItemButton, ListItemIcon, ListItemText, - MenuItem, - Select, - SelectChangeEvent, Typography, } from '@mui/material'; import Logo from 'next/image'; import Link from 'next/link'; import { FormattedMessage, useIntl } from 'react-intl'; -import { useLanguageContext } from 'context'; +import SelectLanguage from 'components/SelectLanguage'; +import { apiBaseUrl } from 'services/api/client'; import { useIsSignedInUserAdmin } from 'services/api/user/useUser'; -import { env } from 'services/env'; import { logout } from 'utils/logout'; export const NavMenuContent = (): JSX.Element => { @@ -33,18 +28,10 @@ export const NavMenuContent = (): JSX.Element => { const isAdmin = useIsSignedInUserAdmin(); const handleAdminClick = () => { - // TODO - Use apiClient.baseUrl? - const baseURL = env('NEXT_PUBLIC_API_BASE_URL'); - const path = new URL('/admin/login', baseURL).toString(); + const path = new URL('/admin/login', apiBaseUrl).toString(); window.location.href = path; }; - const { language, setLanguage } = useLanguageContext(); - const handleLanguageChange = (e: SelectChangeEvent) => { - const newLanguage = e.target.value; - setLanguage(newLanguage); - }; - const handleLogoutClick = () => { void logout(); }; @@ -148,26 +135,7 @@ export const NavMenuContent = (): JSX.Element => { )} - - - + + ); diff --git a/apps/frontend/package.json b/apps/frontend/package.json index 8bd4dce1..1992240e 100644 --- a/apps/frontend/package.json +++ b/apps/frontend/package.json @@ -6,7 +6,7 @@ "build": "next build", "build:analyze": "DEV_ANALYZE_BUNDLE=true next build", "dev": "./gen_env.sh local && next dev -p 3000", - "lint": "eslint --cache --cache-location .next/cache/eslint/ './**/*.{js,ts,tsx}'", + "lint": "eslint --cache --cache-location .next/cache/eslint/ './!(out)/**/*.{js,ts,tsx}'", "lint:fix": "pnpm lint --fix", "lint:style": "stylelint './**/*.module.css'", "lint:style:fix": "stylelint --fix './**/*.module.css'", diff --git a/apps/frontend/pages/login.tsx b/apps/frontend/pages/login.tsx index 99000bf3..c09b5aac 100644 --- a/apps/frontend/pages/login.tsx +++ b/apps/frontend/pages/login.tsx @@ -4,7 +4,7 @@ import { Login } from 'components'; import { Layout } from 'components/Layout'; const LoginPage: NextPage = () => ( - + ); diff --git a/apps/frontend/services/api/client.ts b/apps/frontend/services/api/client.ts index feb1bb1a..bc749f29 100644 --- a/apps/frontend/services/api/client.ts +++ b/apps/frontend/services/api/client.ts @@ -16,8 +16,10 @@ import { setAccessToken, } from './auth/utils'; +export const apiBaseUrl = env('NEXT_PUBLIC_API_BASE_URL'); + export const apiClient = axios.create({ - baseURL: env('NEXT_PUBLIC_API_BASE_URL'), + baseURL: apiBaseUrl, withCredentials: true, headers: { 'Content-Type': 'application/json', diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 660efd1a..3c937b48 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -180,7 +180,7 @@ importers: jest: 29.0.3_@types+node@16.11.59 prettier: 2.7.1 supertest: 6.2.4 - ts-jest: 28.0.8_3rf23fkdql6lla6jd4mas5qdae + ts-jest: 28.0.8_t4de3flloj4attbxvng6paourq ts-loader: 9.3.1_xnp4kzegbjokq62cajex2ovgkm tsconfig: link:../../packages/tsconfig typescript: 4.7.4 @@ -188,6 +188,7 @@ importers: apps/backend-infrastructure: specifiers: + '@babel/core': 7.23.3 '@types/jest': ^29.4.0 '@types/node': 18.11.18 aws-cdk: 2.63.2 @@ -205,12 +206,13 @@ importers: constructs: 10.1.263 source-map-support: 0.5.21 devDependencies: + '@babel/core': 7.23.3 '@types/jest': 29.4.0 '@types/node': 18.11.18 aws-cdk: 2.63.2 eslint-config-custom: link:../../packages/eslint-config-custom jest: 29.4.3_zfha7dvnw4nti6zkbsmhmn6xo4 - ts-jest: 29.0.5_3x4pphrevujhyvnwb35tsnkguy + ts-jest: 29.0.5_l7j4jp6epwl24wdabdn4i6ukb4 ts-node: 10.9.1_bdgp3l2zgaopogaavxusmetvge tsconfig: link:../../packages/tsconfig typescript: 4.9.5 @@ -281,7 +283,7 @@ importers: dayjs: 1.11.7 jwt-decode: 3.1.2 lodash: 4.17.21 - next: 13.4.2_vyk55zyolcaieh7zfm7nf7uva4 + next: 13.4.2_e6u26dziv7qi4e3sszfxx7umhi react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-hook-form: 7.35.0_react@18.2.0 @@ -378,7 +380,7 @@ importers: dependency-cruiser-config-custom: link:../dependency-cruiser-config-custom eslint-config-custom: link:../eslint-config-custom jest: 29.0.3_@types+node@18.15.11 - ts-jest: 28.0.8_3rf23fkdql6lla6jd4mas5qdae + ts-jest: 28.0.8_t4de3flloj4attbxvng6paourq tsconfig: link:../tsconfig typescript: 4.7.4 @@ -603,194 +605,206 @@ packages: resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/highlight': 7.18.6 + '@babel/highlight': 7.22.20 + dev: true + + /@babel/code-frame/7.22.13: + resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': 7.22.20 + chalk: 2.4.2 - /@babel/compat-data/7.19.0: - resolution: {integrity: sha512-y5rqgTTPTmaF5e2nVhOxw+Ur9HDJLsWb6U/KpgUzRZEdPfE6VOubXBKLdbcUTijzRptednSBDQbYZBOSqJxpJw==} + /@babel/compat-data/7.23.3: + resolution: {integrity: sha512-BmR4bWbDIoFJmJ9z2cZ8Gmm2MXgEDgjdWgpKmKWUt54UGFJdlj31ECtbaDvCG/qVdG3AQ1SfpZEs01lUFbzLOQ==} engines: {node: '>=6.9.0'} - /@babel/core/7.19.0: - resolution: {integrity: sha512-reM4+U7B9ss148rh2n1Qs9ASS+w94irYXga7c2jaQv9RVzpS7Mv1a9rnYYwuDa45G+DkORt9g6An2k/V4d9LbQ==} + /@babel/core/7.23.3: + resolution: {integrity: sha512-Jg+msLuNuCJDyBvFv5+OKOUjWMZgd85bKjbICd3zWrKAo+bJ49HJufi7CQE0q0uR8NGyO6xkCACScNqyjHSZew==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 - '@babel/code-frame': 7.18.6 - '@babel/generator': 7.19.0 - '@babel/helper-compilation-targets': 7.19.0_@babel+core@7.19.0 - '@babel/helper-module-transforms': 7.19.0 - '@babel/helpers': 7.19.0 - '@babel/parser': 7.19.0 - '@babel/template': 7.18.10 - '@babel/traverse': 7.19.0 - '@babel/types': 7.19.0 - convert-source-map: 1.8.0 + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.23.3 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-module-transforms': 7.23.3_@babel+core@7.23.3 + '@babel/helpers': 7.23.2 + '@babel/parser': 7.23.3 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.3 + '@babel/types': 7.23.3 + convert-source-map: 2.0.0 debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.2 - semver: 6.3.0 + semver: 6.3.1 transitivePeerDependencies: - supports-color - /@babel/eslint-parser/7.18.9_hm6vqv4ex5fhdkmijv63vh5xsy: + /@babel/eslint-parser/7.18.9_xdnwaumbynp2hu5iqq3gmuajgi: resolution: {integrity: sha512-KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: '@babel/core': '>=7.11.0' eslint: ^7.5.0 || ^8.0.0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 eslint: 8.29.0 eslint-scope: 5.1.1 eslint-visitor-keys: 2.1.0 semver: 6.3.0 dev: true - /@babel/generator/7.19.0: - resolution: {integrity: sha512-S1ahxf1gZ2dpoiFgA+ohK9DIpz50bJ0CWs7Zlzb54Z4sG8qmdIrGrVqmy1sAtTVRb+9CU6U8VqT9L0Zj7hxHVg==} + /@babel/generator/7.23.3: + resolution: {integrity: sha512-keeZWAV4LU3tW0qRi19HRpabC/ilM0HRBBzf9/k8FFiG4KVpiv0FIy4hHfLfFQZNhziCTPTmd59zoyv6DNISzg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.0 + '@babel/types': 7.23.3 '@jridgewell/gen-mapping': 0.3.2 + '@jridgewell/trace-mapping': 0.3.20 jsesc: 2.5.2 /@babel/helper-annotate-as-pure/7.18.6: resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.0 + '@babel/types': 7.23.3 /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9: resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-explode-assignable-expression': 7.18.6 - '@babel/types': 7.19.0 + '@babel/types': 7.23.3 - /@babel/helper-compilation-targets/7.19.0_@babel+core@7.19.0: - resolution: {integrity: sha512-Ai5bNWXIvwDvWM7njqsG3feMlL9hCVQsPYXodsZyLwshYkZVJt59Gftau4VrE8S9IT9asd2uSP1hG6wCNw+sXA==} + /@babel/helper-compilation-targets/7.22.15: + resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.19.0 - '@babel/core': 7.19.0 - '@babel/helper-validator-option': 7.18.6 - browserslist: 4.21.3 - semver: 6.3.0 + '@babel/compat-data': 7.23.3 + '@babel/helper-validator-option': 7.22.15 + browserslist: 4.22.1 + lru-cache: 5.1.1 + semver: 6.3.1 - /@babel/helper-create-class-features-plugin/7.19.0_@babel+core@7.19.0: + /@babel/helper-create-class-features-plugin/7.19.0_@babel+core@7.23.3: resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.19.0 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 '@babel/helper-member-expression-to-functions': 7.18.9 '@babel/helper-optimise-call-expression': 7.18.6 '@babel/helper-replace-supers': 7.18.9 - '@babel/helper-split-export-declaration': 7.18.6 + '@babel/helper-split-export-declaration': 7.22.6 transitivePeerDependencies: - supports-color - /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.19.0: + /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.23.3: resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-annotate-as-pure': 7.18.6 regexpu-core: 5.1.0 - /@babel/helper-define-polyfill-provider/0.3.2_@babel+core@7.19.0: + /@babel/helper-define-polyfill-provider/0.3.2_@babel+core@7.23.3: resolution: {integrity: sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-compilation-targets': 7.19.0_@babel+core@7.19.0 + '@babel/core': 7.23.3 + '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.19.0 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.1 - semver: 6.3.0 + semver: 6.3.1 transitivePeerDependencies: - supports-color - /@babel/helper-environment-visitor/7.18.9: - resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} + /@babel/helper-environment-visitor/7.22.20: + resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} engines: {node: '>=6.9.0'} /@babel/helper-explode-assignable-expression/7.18.6: resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.0 + '@babel/types': 7.23.3 - /@babel/helper-function-name/7.19.0: - resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==} + /@babel/helper-function-name/7.23.0: + resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.18.10 - '@babel/types': 7.19.0 + '@babel/template': 7.22.15 + '@babel/types': 7.23.3 - /@babel/helper-hoist-variables/7.18.6: - resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} + /@babel/helper-hoist-variables/7.22.5: + resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.0 + '@babel/types': 7.23.3 /@babel/helper-member-expression-to-functions/7.18.9: resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.0 + '@babel/types': 7.23.3 /@babel/helper-module-imports/7.18.6: resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.0 + '@babel/types': 7.23.3 + dev: false - /@babel/helper-module-transforms/7.19.0: - resolution: {integrity: sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==} + /@babel/helper-module-imports/7.22.15: + resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-module-imports': 7.18.6 - '@babel/helper-simple-access': 7.18.6 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/helper-validator-identifier': 7.18.6 - '@babel/template': 7.18.10 - '@babel/traverse': 7.19.0 - '@babel/types': 7.19.0 - transitivePeerDependencies: - - supports-color + '@babel/types': 7.23.3 + + /@babel/helper-module-transforms/7.23.3_@babel+core@7.23.3: + resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.3 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-simple-access': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-validator-identifier': 7.22.20 /@babel/helper-optimise-call-expression/7.18.6: resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.0 + '@babel/types': 7.23.3 /@babel/helper-plugin-utils/7.19.0: resolution: {integrity: sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==} engines: {node: '>=6.9.0'} - /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.19.0: + /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.23.3: resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-wrap-function': 7.19.0 - '@babel/types': 7.19.0 + '@babel/types': 7.23.3 transitivePeerDependencies: - supports-color @@ -798,70 +812,70 @@ packages: resolution: {integrity: sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-member-expression-to-functions': 7.18.9 '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/traverse': 7.19.0 - '@babel/types': 7.19.0 + '@babel/traverse': 7.23.3 + '@babel/types': 7.23.3 transitivePeerDependencies: - supports-color - /@babel/helper-simple-access/7.18.6: - resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==} + /@babel/helper-simple-access/7.22.5: + resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.0 + '@babel/types': 7.23.3 /@babel/helper-skip-transparent-expression-wrappers/7.18.9: resolution: {integrity: sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.0 + '@babel/types': 7.23.3 - /@babel/helper-split-export-declaration/7.18.6: - resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} + /@babel/helper-split-export-declaration/7.22.6: + resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.0 + '@babel/types': 7.23.3 - /@babel/helper-string-parser/7.18.10: - resolution: {integrity: sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==} + /@babel/helper-string-parser/7.22.5: + resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-identifier/7.18.6: - resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==} + /@babel/helper-validator-identifier/7.22.20: + resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-option/7.18.6: - resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==} + /@babel/helper-validator-option/7.22.15: + resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==} engines: {node: '>=6.9.0'} /@babel/helper-wrap-function/7.19.0: resolution: {integrity: sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-function-name': 7.19.0 - '@babel/template': 7.18.10 - '@babel/traverse': 7.19.0 - '@babel/types': 7.19.0 + '@babel/helper-function-name': 7.23.0 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.3 + '@babel/types': 7.23.3 transitivePeerDependencies: - supports-color - /@babel/helpers/7.19.0: - resolution: {integrity: sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg==} + /@babel/helpers/7.23.2: + resolution: {integrity: sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.18.10 - '@babel/traverse': 7.19.0 - '@babel/types': 7.19.0 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.3 + '@babel/types': 7.23.3 transitivePeerDependencies: - supports-color - /@babel/highlight/7.18.6: - resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} + /@babel/highlight/7.22.20: + resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': 7.18.6 + '@babel/helper-validator-identifier': 7.22.20 chalk: 2.4.2 js-tokens: 4.0.0 @@ -870,803 +884,802 @@ packages: engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.19.0 + '@babel/types': 7.23.3 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.19.0: + /@babel/parser/7.23.3: + resolution: {integrity: sha512-uVsWNvlVsIninV2prNz/3lHCb+5CJ+e+IUBfbjToAHODtfGYLfCFuY4AU7TskI+dAKk+njsPiBjq1gKTvZOBaw==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.23.3 + + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.19.0: + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.23.3: resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.0 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.23.3 - /@babel/plugin-proposal-async-generator-functions/7.19.0_@babel+core@7.19.0: + /@babel/plugin-proposal-async-generator-functions/7.19.0_@babel+core@7.23.3: resolution: {integrity: sha512-nhEByMUTx3uZueJ/QkJuSlCfN4FGg+xy+vRsfGQGzSauq5ks2Deid2+05Q3KhfaUjvec1IGhw/Zm3cFm8JigTQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-environment-visitor': 7.18.9 + '@babel/core': 7.23.3 + '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.0 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.23.3 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.23.3 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.19.0: + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.0 + '@babel/core': 7.23.3 + '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.23.3 '@babel/helper-plugin-utils': 7.19.0 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.19.0: + /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.0 + '@babel/core': 7.23.3 + '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.23.3 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.19.0 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.23.3 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-decorators/7.19.0_@babel+core@7.19.0: + /@babel/plugin-proposal-decorators/7.19.0_@babel+core@7.23.3: resolution: {integrity: sha512-Bo5nOSjiJccjv00+BrDkmfeBLBi2B0qe8ygj24KdL8VdwtZz+710NCwehF+x/Ng+0mkHx5za2eAofmvVFLF4Fg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.0 + '@babel/core': 7.23.3 + '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.23.3 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-replace-supers': 7.18.9 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/plugin-syntax-decorators': 7.19.0_@babel+core@7.19.0 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/plugin-syntax-decorators': 7.19.0_@babel+core@7.23.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.19.0: + /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.0 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.23.3 - /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.19.0: + /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.23.3: resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.19.0 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.23.3 - /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.19.0: + /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.0 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.23.3 - /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.19.0: + /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.23.3: resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.0 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.23.3 - /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.19.0: + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.0 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.23.3 - /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.19.0: + /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.0 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.23.3 - /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.19.0: + /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.23.3: resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.19.0 - '@babel/core': 7.19.0 - '@babel/helper-compilation-targets': 7.19.0_@babel+core@7.19.0 + '@babel/compat-data': 7.23.3 + '@babel/core': 7.23.3 + '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.0 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.23.3 + '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.23.3 - /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.19.0: + /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.0 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.23.3 - /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.19.0: + /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.23.3: resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.0 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.23.3 - /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.19.0: + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.0 + '@babel/core': 7.23.3 + '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.23.3 '@babel/helper-plugin-utils': 7.19.0 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.19.0: + /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.0 + '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.23.3 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.19.0 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.23.3 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.19.0: + /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.0 + '@babel/core': 7.23.3 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.19.0: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.23.3: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.19.0: + /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.23.3: resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.19.0: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.23.3: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.19.0: + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.23.3: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-decorators/7.19.0_@babel+core@7.19.0: + /@babel/plugin-syntax-decorators/7.19.0_@babel+core@7.23.3: resolution: {integrity: sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.19.0: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.23.3: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.19.0: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.23.3: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.19.0: + /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.19.0: + /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.19.0: + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.23.3: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.19.0: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.23.3: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.19.0: + /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.19.0: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.23.3: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.19.0: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.23.3: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.19.0: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.23.3: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.19.0: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.23.3: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.19.0: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.23.3: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.19.0: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.23.3: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.19.0: + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.23.3: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.19.0: + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.23.3: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.19.0: + /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-module-imports': 7.18.6 + '@babel/core': 7.23.3 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.19.0 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.23.3 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.19.0: + /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.23.3: resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-classes/7.19.0_@babel+core@7.19.0: + /@babel/plugin-transform-classes/7.19.0_@babel+core@7.23.3: resolution: {integrity: sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-compilation-targets': 7.19.0_@babel+core@7.19.0 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.19.0 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 '@babel/helper-optimise-call-expression': 7.18.6 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-replace-supers': 7.18.9 - '@babel/helper-split-export-declaration': 7.18.6 + '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.19.0: + /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.23.3: resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-destructuring/7.18.13_@babel+core@7.19.0: + /@babel/plugin-transform-destructuring/7.18.13_@babel+core@7.23.3: resolution: {integrity: sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.0 + '@babel/core': 7.23.3 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.19.0: + /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.23.3: resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-flow-strip-types/7.19.0_@babel+core@7.19.0: + /@babel/plugin-transform-flow-strip-types/7.19.0_@babel+core@7.23.3: resolution: {integrity: sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.19.0 + '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.23.3 dev: true - /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.19.0: + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.23.3: resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.19.0: + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.23.3: resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-compilation-targets': 7.19.0_@babel+core@7.19.0 - '@babel/helper-function-name': 7.19.0 + '@babel/core': 7.23.3 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-literals/7.18.9_@babel+core@7.19.0: + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.23.3: resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-module-transforms': 7.19.0 + '@babel/core': 7.23.3 + '@babel/helper-module-transforms': 7.23.3_@babel+core@7.23.3 '@babel/helper-plugin-utils': 7.19.0 babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-module-transforms': 7.19.0 + '@babel/core': 7.23.3 + '@babel/helper-module-transforms': 7.23.3_@babel+core@7.23.3 '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-simple-access': 7.18.6 + '@babel/helper-simple-access': 7.22.5 babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-modules-systemjs/7.19.0_@babel+core@7.19.0: + /@babel/plugin-transform-modules-systemjs/7.19.0_@babel+core@7.23.3: resolution: {integrity: sha512-x9aiR0WXAWmOWsqcsnrzGR+ieaTMVyGyffPVA7F8cXAGt/UxefYv6uSHZLkAFChN5M5Iy1+wjE+xJuPt22H39A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-module-transforms': 7.19.0 + '@babel/core': 7.23.3 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-module-transforms': 7.23.3_@babel+core@7.23.3 '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-validator-identifier': 7.18.6 + '@babel/helper-validator-identifier': 7.22.20 babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-module-transforms': 7.19.0 + '@babel/core': 7.23.3 + '@babel/helper-module-transforms': 7.23.3_@babel+core@7.23.3 '@babel/helper-plugin-utils': 7.19.0 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-named-capturing-groups-regex/7.19.0_@babel+core@7.19.0: + /@babel/plugin-transform-named-capturing-groups-regex/7.19.0_@babel+core@7.23.3: resolution: {integrity: sha512-HDSuqOQzkU//kfGdiHBt71/hkDTApw4U/cMVgKgX7PqfB3LOaK+2GtCEsBu1dL9CkswDm0Gwehht1dCr421ULQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.0 + '@babel/core': 7.23.3 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-replace-supers': 7.18.9 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.19.0: + /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.23.3: resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.19.0 + '@babel/core': 7.23.3 + '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.23.3 - /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.19.0: + /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.23.3: resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-module-imports': 7.18.6 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.0 - '@babel/types': 7.19.0 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.23.3 + '@babel/types': 7.23.3 - /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 regenerator-transform: 0.15.0 - /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-runtime/7.18.10_@babel+core@7.19.0: + /@babel/plugin-transform-runtime/7.18.10_@babel+core@7.23.3: resolution: {integrity: sha512-q5mMeYAdfEbpBAgzl7tBre/la3LeCxmDO1+wMXRdPWbcoMjR3GiXlCLk7JBZVVye0bqTGNMbt0yYVXX1B1jEWQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-module-imports': 7.18.6 + '@babel/core': 7.23.3 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.19.0 - babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.19.0 - babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.19.0 - babel-plugin-polyfill-regenerator: 0.4.0_@babel+core@7.19.0 - semver: 6.3.0 + babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.23.3 + babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.23.3 + babel-plugin-polyfill-regenerator: 0.4.0_@babel+core@7.23.3 + semver: 6.3.1 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-spread/7.19.0_@babel+core@7.19.0: + /@babel/plugin-transform-spread/7.19.0_@babel+core@7.23.3: resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 - /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.19.0: + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.23.3: resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.19.0: + /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.23.3: resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-typescript/7.19.0_@babel+core@7.19.0: + /@babel/plugin-transform-typescript/7.19.0_@babel+core@7.23.3: resolution: {integrity: sha512-DOOIywxPpkQHXijXv+s9MDAyZcLp12oYRl3CMWZ6u7TjSoCBq/KqHR/nNFR3+i2xqheZxoF0H2XyL7B6xeSRuA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.0 + '@babel/core': 7.23.3 + '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.23.3 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.19.0 + '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.23.3 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.19.0: + /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.23.3: resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.19.0: + /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.0 + '@babel/core': 7.23.3 + '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.23.3 '@babel/helper-plugin-utils': 7.19.0 /@babel/polyfill/7.12.1: @@ -1677,137 +1690,137 @@ packages: regenerator-runtime: 0.13.11 dev: false - /@babel/preset-env/7.19.0_@babel+core@7.19.0: + /@babel/preset-env/7.19.0_@babel+core@7.23.3: resolution: {integrity: sha512-1YUju1TAFuzjIQqNM9WsF4U6VbD/8t3wEAlw3LFYuuEr+ywqLRcSXxFKz4DCEj+sN94l/XTDiUXYRrsvMpz9WQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.19.0 - '@babel/core': 7.19.0 - '@babel/helper-compilation-targets': 7.19.0_@babel+core@7.19.0 + '@babel/compat-data': 7.23.3 + '@babel/core': 7.23.3 + '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-proposal-async-generator-functions': 7.19.0_@babel+core@7.19.0 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.0 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.19.0 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.19.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.19.0 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.19.0 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.19.0 - '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.19.0 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.19.0 - '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-modules-systemjs': 7.19.0_@babel+core@7.19.0 - '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-named-capturing-groups-regex': 7.19.0_@babel+core@7.19.0 - '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.0 - '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.19.0 - '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.19.0 - '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.19.0 - '@babel/preset-modules': 0.1.5_@babel+core@7.19.0 - '@babel/types': 7.19.0 - babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.19.0 - babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.19.0 - babel-plugin-polyfill-regenerator: 0.4.0_@babel+core@7.19.0 + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.23.3 + '@babel/plugin-proposal-async-generator-functions': 7.19.0_@babel+core@7.23.3 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.23.3 + '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.23.3 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.23.3 + '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.23.3 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.23.3 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.23.3 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.23.3 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.23.3 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.23.3 + '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.23.3 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.23.3 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.23.3 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.23.3 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.23.3 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.23.3 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.23.3 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.23.3 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.23.3 + '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.23.3 + '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.23.3 + '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.23.3 + '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.23.3 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.23.3 + '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.23.3 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.23.3 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.23.3 + '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-transform-modules-systemjs': 7.19.0_@babel+core@7.23.3 + '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-transform-named-capturing-groups-regex': 7.19.0_@babel+core@7.23.3 + '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.23.3 + '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.23.3 + '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.23.3 + '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.23.3 + '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.23.3 + '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.23.3 + '@babel/preset-modules': 0.1.5_@babel+core@7.23.3 + '@babel/types': 7.23.3 + babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.23.3 + babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.23.3 + babel-plugin-polyfill-regenerator: 0.4.0_@babel+core@7.23.3 core-js-compat: 3.25.1 - semver: 6.3.0 + semver: 6.3.1 transitivePeerDependencies: - supports-color - /@babel/preset-modules/0.1.5_@babel+core@7.19.0: + /@babel/preset-modules/0.1.5_@babel+core@7.23.3: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.19.0 - '@babel/types': 7.19.0 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.23.3 + '@babel/types': 7.23.3 esutils: 2.0.3 - /@babel/preset-react/7.18.6_@babel+core@7.19.0: + /@babel/preset-react/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.19.0 - '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.19.0 + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.23.3 + '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.23.3 - /@babel/preset-typescript/7.18.6_@babel+core@7.19.0: + /@babel/preset-typescript/7.18.6_@babel+core@7.23.3: resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-typescript': 7.19.0_@babel+core@7.19.0 + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-transform-typescript': 7.19.0_@babel+core@7.23.3 transitivePeerDependencies: - supports-color - /@babel/register/7.18.9_@babel+core@7.19.0: + /@babel/register/7.18.9_@babel+core@7.23.3: resolution: {integrity: sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 @@ -1843,43 +1856,61 @@ packages: dependencies: regenerator-runtime: 0.13.11 - /@babel/template/7.18.10: - resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==} + /@babel/template/7.22.15: + resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.18.6 - '@babel/parser': 7.19.0 - '@babel/types': 7.19.0 + '@babel/code-frame': 7.22.13 + '@babel/parser': 7.23.3 + '@babel/types': 7.23.3 /@babel/traverse/7.19.0: resolution: {integrity: sha512-4pKpFRDh+utd2mbRC8JLnlsMUii3PMHjpL6a0SZ4NMZy7YFP9aXORxEhdMVOc9CpWtDF09IkciQLEhK7Ml7gRA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.18.6 - '@babel/generator': 7.19.0 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.19.0 - '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.19.0 - '@babel/types': 7.19.0 + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.23.3 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/parser': 7.23.3 + '@babel/types': 7.23.3 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color + dev: true - /@babel/traverse/7.19.0_supports-color@5.5.0: - resolution: {integrity: sha512-4pKpFRDh+utd2mbRC8JLnlsMUii3PMHjpL6a0SZ4NMZy7YFP9aXORxEhdMVOc9CpWtDF09IkciQLEhK7Ml7gRA==} + /@babel/traverse/7.23.3: + resolution: {integrity: sha512-+K0yF1/9yR0oHdE0StHuEj3uTPzwwbrLGfNOndVJVV2TqA5+j3oljJUb4nmB954FLGjNem976+B+eDuLIjesiQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.18.6 - '@babel/generator': 7.19.0 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.19.0 - '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.19.0 - '@babel/types': 7.19.0 + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.23.3 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/parser': 7.23.3 + '@babel/types': 7.23.3 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + /@babel/traverse/7.23.3_supports-color@5.5.0: + resolution: {integrity: sha512-+K0yF1/9yR0oHdE0StHuEj3uTPzwwbrLGfNOndVJVV2TqA5+j3oljJUb4nmB954FLGjNem976+B+eDuLIjesiQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.23.3 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/parser': 7.23.3 + '@babel/types': 7.23.3 debug: 4.3.4_supports-color@5.5.0 globals: 11.12.0 transitivePeerDependencies: @@ -1890,8 +1921,17 @@ packages: resolution: {integrity: sha512-YuGopBq3ke25BVSiS6fgF49Ul9gH1x70Bcr6bqRLjWCkcX8Hre1/5+z+IiWOIerRMSSEfGZVB9z9kyq7wVs9YA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-string-parser': 7.18.10 - '@babel/helper-validator-identifier': 7.18.6 + '@babel/helper-string-parser': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 + to-fast-properties: 2.0.0 + dev: true + + /@babel/types/7.23.3: + resolution: {integrity: sha512-OZnvoH2l8PK5eUvEcUyCt/sXgr/h+UWpVuBbOljwcrAgUl6lpchoQ++PHGyQy1AtYnVA6CEq3y5xeEI10brpXw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 to-fast-properties: 2.0.0 /@balena/dockerignore/1.0.2: @@ -2788,7 +2828,7 @@ packages: '@jest/test-result': 29.0.3 '@jest/transform': 29.0.3 '@jest/types': 29.4.3 - '@jridgewell/trace-mapping': 0.3.15 + '@jridgewell/trace-mapping': 0.3.20 '@types/node': 18.15.11 chalk: 4.1.2 collect-v8-coverage: 1.0.1 @@ -2874,7 +2914,7 @@ packages: resolution: {integrity: sha512-nOr+0EM8GiHf34mq2GcJyz/gYFyLQ2INDhAylrZJ9mMWoW21mLBfZa0BUVPPMxVYrLjeiRe2Z7kWXOGnS0TFhQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jridgewell/trace-mapping': 0.3.15 + '@jridgewell/trace-mapping': 0.3.20 callsites: 3.1.0 graceful-fs: 4.2.10 dev: true @@ -2883,7 +2923,7 @@ packages: resolution: {integrity: sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jridgewell/trace-mapping': 0.3.15 + '@jridgewell/trace-mapping': 0.3.20 callsites: 3.1.0 graceful-fs: 4.2.10 dev: true @@ -2932,9 +2972,9 @@ packages: resolution: {integrity: sha512-C5ihFTRYaGDbi/xbRQRdbo5ddGtI4VSpmL6AIcZxdhwLbXMa7PcXxxqyI91vGOFHnn5aVM3WYnYKCHEqmLVGzg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@jest/types': 29.4.3 - '@jridgewell/trace-mapping': 0.3.15 + '@jridgewell/trace-mapping': 0.3.20 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 1.8.0 @@ -2955,7 +2995,7 @@ packages: resolution: {integrity: sha512-8u0+fBGWolDshsFgPQJESkDa72da/EVwvL+II0trN2DR66wMwiQ9/CihaGfHdlLGFzbBZwMykFtxuwFdZqlKwg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@jest/types': 29.4.3 '@jridgewell/trace-mapping': 0.3.15 babel-plugin-istanbul: 6.1.1 @@ -3023,7 +3063,7 @@ packages: dependencies: '@jridgewell/set-array': 1.1.2 '@jridgewell/sourcemap-codec': 1.4.14 - '@jridgewell/trace-mapping': 0.3.15 + '@jridgewell/trace-mapping': 0.3.20 /@jridgewell/resolve-uri/3.1.0: resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} @@ -3037,7 +3077,7 @@ packages: resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==} dependencies: '@jridgewell/gen-mapping': 0.3.2 - '@jridgewell/trace-mapping': 0.3.15 + '@jridgewell/trace-mapping': 0.3.20 /@jridgewell/sourcemap-codec/1.4.14: resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} @@ -3048,6 +3088,12 @@ packages: '@jridgewell/resolve-uri': 3.1.0 '@jridgewell/sourcemap-codec': 1.4.14 + /@jridgewell/trace-mapping/0.3.20: + resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==} + dependencies: + '@jridgewell/resolve-uri': 3.1.0 + '@jridgewell/sourcemap-codec': 1.4.14 + /@jridgewell/trace-mapping/0.3.9: resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} dependencies: @@ -3760,7 +3806,7 @@ packages: engines: {node: '>=14'} dev: false - /@rollup/plugin-babel/5.3.1_loko3dyoqyfrad2b2tv6icqcai: + /@rollup/plugin-babel/5.3.1_gzdrilr2jis4dctob4jwdprlgq: resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -3771,8 +3817,8 @@ packages: '@types/babel__core': optional: true dependencies: - '@babel/core': 7.19.0 - '@babel/helper-module-imports': 7.18.6 + '@babel/core': 7.23.3 + '@babel/helper-module-imports': 7.22.15 '@rollup/pluginutils': 3.1.0_rollup@2.79.1 rollup: 2.79.1 dev: false @@ -4424,8 +4470,8 @@ packages: /@types/babel__core/7.1.19: resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==} dependencies: - '@babel/parser': 7.19.0 - '@babel/types': 7.19.0 + '@babel/parser': 7.23.3 + '@babel/types': 7.23.3 '@types/babel__generator': 7.6.4 '@types/babel__template': 7.4.1 '@types/babel__traverse': 7.18.1 @@ -4434,20 +4480,20 @@ packages: /@types/babel__generator/7.6.4: resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} dependencies: - '@babel/types': 7.19.0 + '@babel/types': 7.23.3 dev: true /@types/babel__template/7.4.1: resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} dependencies: - '@babel/parser': 7.19.0 - '@babel/types': 7.19.0 + '@babel/parser': 7.23.3 + '@babel/types': 7.23.3 dev: true /@types/babel__traverse/7.18.1: resolution: {integrity: sha512-FSdLaZh2UxaMuLp9lixWaHq/golWTRWOnRsAXzDTDSDOQLuZb1nsdCt6pJSPWSEQt2eFZ2YVk3oYhn+1kLMeMA==} dependencies: - '@babel/types': 7.19.0 + '@babel/types': 7.23.3 dev: true /@types/babylon/6.16.6: @@ -5446,16 +5492,16 @@ packages: hasBin: true dependencies: '@adminjs/design-system': 3.1.5_qo5p4ufmg4r5yzj47ec6hu3jty - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@babel/parser': 7.19.0 - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.19.0 + '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.23.3 '@babel/polyfill': 7.12.1 - '@babel/preset-env': 7.19.0_@babel+core@7.19.0 - '@babel/preset-react': 7.18.6_@babel+core@7.19.0 - '@babel/preset-typescript': 7.18.6_@babel+core@7.19.0 - '@babel/register': 7.18.9_@babel+core@7.19.0 + '@babel/preset-env': 7.19.0_@babel+core@7.23.3 + '@babel/preset-react': 7.18.6_@babel+core@7.23.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.23.3 + '@babel/register': 7.18.9_@babel+core@7.23.3 '@hello-pangea/dnd': 16.2.0_nylzxt5ale4dsv666zkb25cgtm - '@rollup/plugin-babel': 5.3.1_loko3dyoqyfrad2b2tv6icqcai + '@rollup/plugin-babel': 5.3.1_gzdrilr2jis4dctob4jwdprlgq '@rollup/plugin-commonjs': 22.0.2_rollup@2.79.1 '@rollup/plugin-json': 4.1.0_rollup@2.79.1 '@rollup/plugin-node-resolve': 13.3.0_rollup@2.79.1 @@ -5838,17 +5884,17 @@ packages: - supports-color dev: true - /babel-jest/29.0.3_@babel+core@7.19.0: + /babel-jest/29.0.3_@babel+core@7.23.3: resolution: {integrity: sha512-ApPyHSOhS/sVzwUOQIWJmdvDhBsMG01HX9z7ogtkp1TToHGGUWFlnXJUIzCgKPSfiYLn3ibipCYzsKSURHEwLg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@jest/transform': 29.4.3 '@types/babel__core': 7.1.19 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.0.2_@babel+core@7.19.0 + babel-preset-jest: 29.0.2_@babel+core@7.23.3 chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 @@ -5856,17 +5902,17 @@ packages: - supports-color dev: true - /babel-jest/29.4.3_@babel+core@7.19.0: + /babel-jest/29.4.3_@babel+core@7.23.3: resolution: {integrity: sha512-o45Wyn32svZE+LnMVWv/Z4x0SwtLbh4FyGcYtR20kIWd+rdrDZ9Fzq8Ml3MYLD+mZvEdzCjZsCnYZ2jpJyQ+Nw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@jest/transform': 29.4.3 '@types/babel__core': 7.1.19 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.4.3_@babel+core@7.19.0 + babel-preset-jest: 29.4.3_@babel+core@7.23.3 chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 @@ -5896,8 +5942,8 @@ packages: resolution: {integrity: sha512-mB6q2q3oahKphy5V7CpnNqZOCkxxZ9aokf1eh82Dy3jQmg4xvM1tGrh5y6BQUJh4a3Pj9+eLfwvAZ7VNKg7H8Q==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/template': 7.18.10 - '@babel/types': 7.19.0 + '@babel/template': 7.22.15 + '@babel/types': 7.23.3 '@types/babel__core': 7.1.19 '@types/babel__traverse': 7.18.1 dev: true @@ -5910,36 +5956,36 @@ packages: cosmiconfig: 7.0.1 resolve: 1.22.1 - /babel-plugin-polyfill-corejs2/0.3.2_@babel+core@7.19.0: + /babel-plugin-polyfill-corejs2/0.3.2_@babel+core@7.23.3: resolution: {integrity: sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.19.0 - '@babel/core': 7.19.0 - '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.19.0 - semver: 6.3.0 + '@babel/compat-data': 7.23.3 + '@babel/core': 7.23.3 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.23.3 + semver: 6.3.1 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs3/0.5.3_@babel+core@7.19.0: + /babel-plugin-polyfill-corejs3/0.5.3_@babel+core@7.23.3: resolution: {integrity: sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.19.0 + '@babel/core': 7.23.3 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.23.3 core-js-compat: 3.25.1 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-regenerator/0.4.0_@babel+core@7.19.0: + /babel-plugin-polyfill-regenerator/0.4.0_@babel+core@7.23.3: resolution: {integrity: sha512-RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.19.0 - '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.19.0 + '@babel/core': 7.23.3 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.23.3 transitivePeerDependencies: - supports-color @@ -5949,7 +5995,7 @@ packages: styled-components: '>= 2' dependencies: '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-module-imports': 7.18.6 + '@babel/helper-module-imports': 7.22.15 babel-plugin-syntax-jsx: 6.18.0 lodash: 4.17.21 styled-components: 5.3.6_7i5myeigehqah43i5u7wbekgba @@ -5963,65 +6009,65 @@ packages: resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==} dev: true - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.19.0: + /babel-preset-current-node-syntax/1.0.1_@babel+core@7.23.3: resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.19.0 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.0 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.19.0 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.19.0 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.0 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.19.0 - dev: true - - /babel-preset-jest/29.0.2_@babel+core@7.19.0: + '@babel/core': 7.23.3 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.23.3 + '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.23.3 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.23.3 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.23.3 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.23.3 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.23.3 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.23.3 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.23.3 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.23.3 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.23.3 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.23.3 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.23.3 + dev: true + + /babel-preset-jest/29.0.2_@babel+core@7.23.3: resolution: {integrity: sha512-BeVXp7rH5TK96ofyEnHjznjLMQ2nAeDJ+QzxKnHAAMs0RgrQsCywjAN8m4mOm5Di0pxU//3AoEeJJrerMH5UeA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 babel-plugin-jest-hoist: 29.4.3 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.19.0 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.23.3 dev: true - /babel-preset-jest/29.4.3_@babel+core@7.19.0: + /babel-preset-jest/29.4.3_@babel+core@7.23.3: resolution: {integrity: sha512-gWx6COtSuma6n9bw+8/F+2PCXrIgxV/D1TJFnp6OyBK2cxPWg0K9p/sriNYeifKjpUkMViWQ09DSWtzJQRETsw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 babel-plugin-jest-hoist: 29.4.3 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.19.0 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.23.3 dev: true /babel-preset-react-app/10.0.1: resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==} dependencies: - '@babel/core': 7.19.0 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-decorators': 7.19.0_@babel+core@7.19.0 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.0 - '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.19.0 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.19.0 - '@babel/preset-env': 7.19.0_@babel+core@7.19.0 - '@babel/preset-react': 7.18.6_@babel+core@7.19.0 - '@babel/preset-typescript': 7.18.6_@babel+core@7.19.0 + '@babel/core': 7.23.3 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-proposal-decorators': 7.19.0_@babel+core@7.23.3 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.23.3 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.23.3 + '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-transform-runtime': 7.18.10_@babel+core@7.23.3 + '@babel/preset-env': 7.19.0_@babel+core@7.23.3 + '@babel/preset-react': 7.18.6_@babel+core@7.23.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.23.3 '@babel/runtime': 7.21.0 babel-plugin-macros: 3.1.0 babel-plugin-transform-react-remove-prop-types: 0.4.24 @@ -6114,6 +6160,17 @@ packages: electron-to-chromium: 1.4.247 node-releases: 2.0.6 update-browserslist-db: 1.0.7_browserslist@4.21.3 + dev: true + + /browserslist/4.22.1: + resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + dependencies: + caniuse-lite: 1.0.30001561 + electron-to-chromium: 1.4.579 + node-releases: 2.0.13 + update-browserslist-db: 1.0.13_browserslist@4.22.1 /bs-logger/0.2.6: resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} @@ -6204,6 +6261,9 @@ packages: /caniuse-lite/1.0.30001410: resolution: {integrity: sha512-QoblBnuE+rG0lc3Ur9ltP5q47lbguipa/ncNMyyGuqPk44FxbScWAeEO+k5fSQ8WekdAK4mWqNs1rADDAiN5xQ==} + /caniuse-lite/1.0.30001561: + resolution: {integrity: sha512-NTt0DNoKe958Q0BE0j0c1V9jbUzhBxHIEJy7asmGrpE0yG63KTV7PLHPnK2E1O9RsQrQ081I3NLuXGS6zht3cw==} + /case/1.6.3: resolution: {integrity: sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ==} engines: {node: '>= 0.8.0'} @@ -6607,7 +6667,6 @@ packages: /convert-source-map/2.0.0: resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - dev: true /cookie-parser/1.4.6: resolution: {integrity: sha512-z3IzaNjdwUC2olLIB5/ITd0/setiaFMLYiZJle7xg5Fe9KWAceil7xszYfHHBtDFYLSgJduS2Ty0P1uJdPDJeA==} @@ -6641,7 +6700,7 @@ packages: /core-js-compat/3.25.1: resolution: {integrity: sha512-pOHS7O0i8Qt4zlPW/eIFjwp+NrTPx+wTL0ctgI2fHn31sZOq89rDsmtc/A2vAX7r6shl+bmVI+678He46jgBlw==} dependencies: - browserslist: 4.21.3 + browserslist: 4.22.1 /core-js-pure/3.25.1: resolution: {integrity: sha512-7Fr74bliUDdeJCBMxkkIuQ4xfxn/SwrVg+HkJUAoNEXVqYLv55l6Af0dJ5Lq2YBUW9yKqSkLXaS5SYPK6MGa/A==} @@ -7124,6 +7183,10 @@ packages: /electron-to-chromium/1.4.247: resolution: {integrity: sha512-FLs6R4FQE+1JHM0hh3sfdxnYjKvJpHZyhQDjc2qFq/xFvmmRt/TATNToZhrcGUFzpF2XjeiuozrA8lI0PZmYYw==} + dev: true + + /electron-to-chromium/1.4.579: + resolution: {integrity: sha512-bJKvA+awBIzYR0xRced7PrQuRIwGQPpo6ZLP62GAShahU9fWpsNN2IP6BSP1BLDDSbxvBVRGAMWlvVVq3npmLA==} /emittery/0.10.2: resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==} @@ -7377,8 +7440,8 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.19.0 - '@babel/eslint-parser': 7.18.9_hm6vqv4ex5fhdkmijv63vh5xsy + '@babel/core': 7.23.3 + '@babel/eslint-parser': 7.18.9_xdnwaumbynp2hu5iqq3gmuajgi '@rushstack/eslint-patch': 1.1.4 '@typescript-eslint/eslint-plugin': 5.46.1_rtwdi4vrcidpgfdm5jq4m6mmyy '@typescript-eslint/parser': 5.46.1_zbm6mgjew7sm4ssghrxdqoiad4 @@ -7585,8 +7648,8 @@ packages: '@babel/plugin-transform-react-jsx': ^7.14.9 eslint: ^8.1.0 dependencies: - '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.19.0 + '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.23.3 eslint: 8.29.0 lodash: 4.17.21 string-natural-compare: 3.0.1 @@ -8480,7 +8543,7 @@ packages: vue-template-compiler: optional: true dependencies: - '@babel/code-frame': 7.18.6 + '@babel/code-frame': 7.22.13 chalk: 4.1.2 chokidar: 3.5.3 cosmiconfig: 7.0.1 @@ -9378,11 +9441,11 @@ packages: resolution: {integrity: sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.19.0 - '@babel/parser': 7.19.0 + '@babel/core': 7.23.3 + '@babel/parser': 7.23.3 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 - semver: 6.3.0 + semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true @@ -9623,11 +9686,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@jest/test-sequencer': 29.0.3 '@jest/types': 29.4.3 '@types/node': 16.11.59 - babel-jest: 29.0.3_@babel+core@7.19.0 + babel-jest: 29.0.3_@babel+core@7.23.3 chalk: 4.1.2 ci-info: 3.4.0 deepmerge: 4.2.2 @@ -9662,11 +9725,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@jest/test-sequencer': 29.0.3 '@jest/types': 29.4.3 '@types/node': 18.15.11 - babel-jest: 29.0.3_@babel+core@7.19.0 + babel-jest: 29.0.3_@babel+core@7.23.3 chalk: 4.1.2 ci-info: 3.4.0 deepmerge: 4.2.2 @@ -9701,11 +9764,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@jest/test-sequencer': 29.0.3 '@jest/types': 29.4.3 '@types/node': 17.0.25 - babel-jest: 29.0.3_@babel+core@7.19.0 + babel-jest: 29.0.3_@babel+core@7.23.3 chalk: 4.1.2 ci-info: 3.4.0 deepmerge: 4.2.2 @@ -9741,11 +9804,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@jest/test-sequencer': 29.0.3 '@jest/types': 29.4.3 '@types/node': 18.11.18 - babel-jest: 29.0.3_@babel+core@7.19.0 + babel-jest: 29.0.3_@babel+core@7.23.3 chalk: 4.1.2 ci-info: 3.4.0 deepmerge: 4.2.2 @@ -9781,11 +9844,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 '@jest/test-sequencer': 29.4.3 '@jest/types': 29.4.3 '@types/node': 18.11.18 - babel-jest: 29.4.3_@babel+core@7.19.0 + babel-jest: 29.4.3_@babel+core@7.23.3 chalk: 4.1.2 ci-info: 3.4.0 deepmerge: 4.2.2 @@ -10021,7 +10084,7 @@ packages: resolution: {integrity: sha512-7T8JiUTtDfppojosORAflABfLsLKMLkBHSWkjNQrjIltGoDzNGn7wEPOSfjqYAGTYME65esQzMJxGDjuLBKdOg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/code-frame': 7.18.6 + '@babel/code-frame': 7.22.13 '@jest/types': 29.4.3 '@types/stack-utils': 2.0.1 chalk: 4.1.2 @@ -10036,7 +10099,7 @@ packages: resolution: {integrity: sha512-1Y8Zd4ZCN7o/QnWdMmT76If8LuDv23Z1DRovBj/vcSFNlGCJGoO8D1nJDw1AdyAGUk0myDLFGN5RbNeJyCRGCw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/code-frame': 7.18.6 + '@babel/code-frame': 7.22.13 '@jest/types': 29.4.3 '@types/stack-utils': 2.0.1 chalk: 4.1.2 @@ -10270,18 +10333,18 @@ packages: resolution: {integrity: sha512-52q6JChm04U3deq+mkQ7R/7uy7YyfVIrebMi6ZkBoDJ85yEjm/sJwdr1P0LOIEHmpyLlXrxy3QP0Zf5J2kj0ew==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.19.0 - '@babel/generator': 7.19.0 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.19.0 - '@babel/traverse': 7.19.0 - '@babel/types': 7.19.0 + '@babel/core': 7.23.3 + '@babel/generator': 7.23.3 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.23.3 + '@babel/traverse': 7.23.3 + '@babel/types': 7.23.3 '@jest/expect-utils': 29.0.3 '@jest/transform': 29.0.3 '@jest/types': 29.4.3 '@types/babel__traverse': 7.18.1 '@types/prettier': 2.7.0 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.19.0 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.23.3 chalk: 4.1.2 expect: 29.0.3 graceful-fs: 4.2.10 @@ -10302,18 +10365,18 @@ packages: resolution: {integrity: sha512-NGlsqL0jLPDW91dz304QTM/SNO99lpcSYYAjNiX0Ou+sSGgkanKBcSjCfp/pqmiiO1nQaOyLp6XQddAzRcx3Xw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.19.0 - '@babel/generator': 7.19.0 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.0 - '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.19.0 - '@babel/traverse': 7.19.0 - '@babel/types': 7.19.0 + '@babel/core': 7.23.3 + '@babel/generator': 7.23.3 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.23.3 + '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.23.3 + '@babel/traverse': 7.23.3 + '@babel/types': 7.23.3 '@jest/expect-utils': 29.4.3 '@jest/transform': 29.4.3 '@jest/types': 29.4.3 '@types/babel__traverse': 7.18.1 '@types/prettier': 2.7.0 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.19.0 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.23.3 chalk: 4.1.2 expect: 29.4.3 graceful-fs: 4.2.10 @@ -10921,6 +10984,11 @@ packages: dependencies: js-tokens: 4.0.0 + /lru-cache/5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + dependencies: + yallist: 3.1.1 + /lru-cache/6.0.0: resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} engines: {node: '>=10'} @@ -10968,7 +11036,7 @@ packages: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} engines: {node: '>=8'} dependencies: - semver: 6.3.0 + semver: 6.3.1 /make-error/1.3.6: resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} @@ -11240,7 +11308,7 @@ packages: resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} dev: false - /next/13.4.2_vyk55zyolcaieh7zfm7nf7uva4: + /next/13.4.2_e6u26dziv7qi4e3sszfxx7umhi: resolution: {integrity: sha512-aNFqLs3a3nTGvLWlO9SUhCuMUHVPSFQC0+tDNGAsDXqx+WJDFSbvc233gOJ5H19SBc7nw36A9LwQepOJ2u/8Kg==} engines: {node: '>=16.8.0'} hasBin: true @@ -11268,7 +11336,7 @@ packages: postcss: 8.4.14 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - styled-jsx: 5.1.1_obstn65pa6zrrg27pp7sudypiq + styled-jsx: 5.1.1_huvfwssz6ecqo3y73k2to3wt6a zod: 3.21.4 optionalDependencies: '@next/swc-darwin-arm64': 13.4.2 @@ -11314,8 +11382,12 @@ packages: resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} dev: true + /node-releases/2.0.13: + resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==} + /node-releases/2.0.6: resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==} + dev: true /nopt/5.0.0: resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} @@ -11621,7 +11693,7 @@ packages: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} dependencies: - '@babel/code-frame': 7.18.6 + '@babel/code-frame': 7.22.13 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -12657,7 +12729,7 @@ packages: peerDependencies: rollup: ^2.0.0 dependencies: - '@babel/code-frame': 7.18.6 + '@babel/code-frame': 7.22.13 jest-worker: 26.6.2 rollup: 2.79.1 serialize-javascript: 4.0.0 @@ -12765,6 +12837,11 @@ packages: /semver/6.3.0: resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} hasBin: true + dev: true + + /semver/6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true /semver/7.3.7: resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} @@ -13185,8 +13262,8 @@ packages: react-dom: '>= 16.8.0' react-is: '>= 16.8.0' dependencies: - '@babel/helper-module-imports': 7.18.6 - '@babel/traverse': 7.19.0_supports-color@5.5.0 + '@babel/helper-module-imports': 7.22.15 + '@babel/traverse': 7.23.3_supports-color@5.5.0 '@emotion/is-prop-valid': 1.2.0 '@emotion/stylis': 0.8.5 '@emotion/unitless': 0.7.5 @@ -13200,7 +13277,7 @@ packages: supports-color: 5.5.0 dev: false - /styled-jsx/5.1.1_obstn65pa6zrrg27pp7sudypiq: + /styled-jsx/5.1.1_huvfwssz6ecqo3y73k2to3wt6a: resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} engines: {node: '>= 12.0.0'} peerDependencies: @@ -13213,7 +13290,7 @@ packages: babel-plugin-macros: optional: true dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 client-only: 0.0.1 react: 18.2.0 dev: false @@ -13658,7 +13735,7 @@ packages: resolution: {integrity: sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==} dev: false - /ts-jest/28.0.8_3rf23fkdql6lla6jd4mas5qdae: + /ts-jest/28.0.8_t4de3flloj4attbxvng6paourq: resolution: {integrity: sha512-5FaG0lXmRPzApix8oFG8RKjAz4ehtm8yMKOTy5HX3fY6W8kmvOrmcY0hKDElW52FJov+clhUbrKAqofnj4mXTg==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} hasBin: true @@ -13679,10 +13756,10 @@ packages: esbuild: optional: true dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.0.3_@types+node@16.11.59 + jest: 29.0.3_@types+node@18.15.11 jest-util: 28.1.3 json5: 2.2.2 lodash.memoize: 4.1.2 @@ -13692,7 +13769,7 @@ packages: yargs-parser: 21.1.1 dev: true - /ts-jest/29.0.5_3x4pphrevujhyvnwb35tsnkguy: + /ts-jest/29.0.5_l7j4jp6epwl24wdabdn4i6ukb4: resolution: {integrity: sha512-PL3UciSgIpQ7f6XjVOmbi96vmDHUqAyqDr8YxzopDqX3kfgYtX1cuNeBjP+L9sFXi6nzsGGA6R3fP3DDDJyrxA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -13713,7 +13790,7 @@ packages: esbuild: optional: true dependencies: - '@babel/core': 7.19.0 + '@babel/core': 7.23.3 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 jest: 29.4.3_zfha7dvnw4nti6zkbsmhmn6xo4 @@ -14164,6 +14241,16 @@ packages: resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} engines: {node: '>= 0.8'} + /update-browserslist-db/1.0.13_browserslist@4.22.1: + resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + dependencies: + browserslist: 4.22.1 + escalade: 3.1.1 + picocolors: 1.0.0 + /update-browserslist-db/1.0.7_browserslist@4.21.3: resolution: {integrity: sha512-iN/XYesmZ2RmmWAiI4Z5rq0YqSiv0brj9Ce9CfhNE4xIW2h+MFxcgkxIzZ+ShkFPUkjU3gQ+3oypadD3RAMtrg==} hasBin: true @@ -14173,6 +14260,7 @@ packages: browserslist: 4.21.3 escalade: 3.1.1 picocolors: 1.0.0 + dev: true /uri-js/4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} @@ -14239,7 +14327,7 @@ packages: resolution: {integrity: sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w==} engines: {node: '>=10.12.0'} dependencies: - '@jridgewell/trace-mapping': 0.3.15 + '@jridgewell/trace-mapping': 0.3.20 '@types/istanbul-lib-coverage': 2.0.4 convert-source-map: 1.8.0 dev: true @@ -14591,6 +14679,9 @@ packages: resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} engines: {node: '>=10'} + /yallist/3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + /yallist/4.0.0: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}