From 327ca07e5ef77bfd7151cbf4d6b3c92cda43210e Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Sun, 23 Jul 2023 10:53:58 -0600 Subject: [PATCH 01/52] Initial commit --- .../CarlosUlisesOchoa/.eslintrc.cjs | 20 ++ .../CarlosUlisesOchoa/.gitignore | 24 ++ .../CarlosUlisesOchoa/README.md | 5 + .../CarlosUlisesOchoa/index.html | 13 + .../CarlosUlisesOchoa/package.json | 31 +++ .../CarlosUlisesOchoa/public/vite.svg | 1 + .../CarlosUlisesOchoa/src/App.css | 42 ++++ .../CarlosUlisesOchoa/src/App.jsx | 35 +++ .../CarlosUlisesOchoa/src/assets/react.svg | 1 + .../CarlosUlisesOchoa/src/index.css | 69 +++++ .../CarlosUlisesOchoa/src/main.jsx | 10 + .../CarlosUlisesOchoa/src/mockups/books.json | 235 ++++++++++++++++++ .../CarlosUlisesOchoa/vite.config.js | 7 + 13 files changed, 493 insertions(+) create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/.eslintrc.cjs create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/.gitignore create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/README.md create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/index.html create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/package.json create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/public/vite.svg create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/src/App.css create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/src/assets/react.svg create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/src/index.css create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/src/main.jsx create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/src/mockups/books.json create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/vite.config.js diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/.eslintrc.cjs b/pruebas/01-reading-list/CarlosUlisesOchoa/.eslintrc.cjs new file mode 100644 index 000000000..4dcb43901 --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/.eslintrc.cjs @@ -0,0 +1,20 @@ +module.exports = { + root: true, + env: { browser: true, es2020: true }, + extends: [ + 'eslint:recommended', + 'plugin:react/recommended', + 'plugin:react/jsx-runtime', + 'plugin:react-hooks/recommended', + ], + ignorePatterns: ['dist', '.eslintrc.cjs'], + parserOptions: { ecmaVersion: 'latest', sourceType: 'module' }, + settings: { react: { version: '18.2' } }, + plugins: ['react-refresh'], + rules: { + 'react-refresh/only-export-components': [ + 'warn', + { allowConstantExport: true }, + ], + }, +} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/.gitignore b/pruebas/01-reading-list/CarlosUlisesOchoa/.gitignore new file mode 100644 index 000000000..a547bf36d --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/README.md b/pruebas/01-reading-list/CarlosUlisesOchoa/README.md new file mode 100644 index 000000000..bef7d76b1 --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/README.md @@ -0,0 +1,5 @@ +# Reading list - code challenge + +Challenge by: https://github.com/midudev + +Solution by: https://github.com/CarlosUlisesOchoa (Carlos8aDev on Twitch) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/index.html b/pruebas/01-reading-list/CarlosUlisesOchoa/index.html new file mode 100644 index 000000000..0c589eccd --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/index.html @@ -0,0 +1,13 @@ + + + + + + + Vite + React + + +
+ + + diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/package.json b/pruebas/01-reading-list/CarlosUlisesOchoa/package.json new file mode 100644 index 000000000..c8fa04c27 --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/package.json @@ -0,0 +1,31 @@ +{ + "name": "reading-list", + "author": { + "name": "Carlos Ochoa", + "email": "carlos8a.dev@gmail.com", + "url": "https://carlos8a.com" + }, + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build", + "lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0", + "preview": "vite preview" + }, + "dependencies": { + "react": "^18.2.0", + "react-dom": "^18.2.0" + }, + "devDependencies": { + "@types/react": "^18.2.15", + "@types/react-dom": "^18.2.7", + "@vitejs/plugin-react-swc": "^3.3.2", + "eslint": "^8.45.0", + "eslint-plugin-react": "^7.32.2", + "eslint-plugin-react-hooks": "^4.6.0", + "eslint-plugin-react-refresh": "^0.4.3", + "vite": "^4.4.5" + } +} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/public/vite.svg b/pruebas/01-reading-list/CarlosUlisesOchoa/public/vite.svg new file mode 100644 index 000000000..e7b8dfb1b --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/public/vite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.css new file mode 100644 index 000000000..b9d355df2 --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.css @@ -0,0 +1,42 @@ +#root { + max-width: 1280px; + margin: 0 auto; + padding: 2rem; + text-align: center; +} + +.logo { + height: 6em; + padding: 1.5em; + will-change: filter; + transition: filter 300ms; +} +.logo:hover { + filter: drop-shadow(0 0 2em #646cffaa); +} +.logo.react:hover { + filter: drop-shadow(0 0 2em #61dafbaa); +} + +@keyframes logo-spin { + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } +} + +@media (prefers-reduced-motion: no-preference) { + a:nth-of-type(2) .logo { + animation: logo-spin infinite 20s linear; + } +} + +.card { + padding: 2em; +} + +.read-the-docs { + color: #888; +} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx new file mode 100644 index 000000000..b8b8473a3 --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx @@ -0,0 +1,35 @@ +import { useState } from 'react' +import reactLogo from './assets/react.svg' +import viteLogo from '/vite.svg' +import './App.css' + +function App() { + const [count, setCount] = useState(0) + + return ( + <> +
+ + Vite logo + + + React logo + +
+

Vite + React

+
+ +

+ Edit src/App.jsx and save to test HMR +

+
+

+ Click on the Vite and React logos to learn more +

+ + ) +} + +export default App diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/assets/react.svg b/pruebas/01-reading-list/CarlosUlisesOchoa/src/assets/react.svg new file mode 100644 index 000000000..6c87de9bb --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/assets/react.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/index.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/index.css new file mode 100644 index 000000000..2c3fac689 --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/index.css @@ -0,0 +1,69 @@ +:root { + font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; + line-height: 1.5; + font-weight: 400; + + color-scheme: light dark; + color: rgba(255, 255, 255, 0.87); + background-color: #242424; + + font-synthesis: none; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + -webkit-text-size-adjust: 100%; +} + +a { + font-weight: 500; + color: #646cff; + text-decoration: inherit; +} +a:hover { + color: #535bf2; +} + +body { + margin: 0; + display: flex; + place-items: center; + min-width: 320px; + min-height: 100vh; +} + +h1 { + font-size: 3.2em; + line-height: 1.1; +} + +button { + border-radius: 8px; + border: 1px solid transparent; + padding: 0.6em 1.2em; + font-size: 1em; + font-weight: 500; + font-family: inherit; + background-color: #1a1a1a; + cursor: pointer; + transition: border-color 0.25s; +} +button:hover { + border-color: #646cff; +} +button:focus, +button:focus-visible { + outline: 4px auto -webkit-focus-ring-color; +} + +@media (prefers-color-scheme: light) { + :root { + color: #213547; + background-color: #ffffff; + } + a:hover { + color: #747bff; + } + button { + background-color: #f9f9f9; + } +} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/main.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/main.jsx new file mode 100644 index 000000000..54b39dd1d --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/main.jsx @@ -0,0 +1,10 @@ +import React from 'react' +import ReactDOM from 'react-dom/client' +import App from './App.jsx' +import './index.css' + +ReactDOM.createRoot(document.getElementById('root')).render( + + + , +) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/mockups/books.json b/pruebas/01-reading-list/CarlosUlisesOchoa/src/mockups/books.json new file mode 100644 index 000000000..70f8ed994 --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/mockups/books.json @@ -0,0 +1,235 @@ +{ + "library": [ + { + "book": { + "title": "El Señor de los Anillos", + "pages": 1200, + "genre": "Fantasía", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1566425108i/33.jpg", + "synopsis": "Una aventura épica en un mundo de fantasía llamado la Tierra Media.", + "year": 1954, + "ISBN": "978-0618640157", + "author": { + "name": "J.R.R. Tolkien", + "otherBooks": [ + "El Hobbit", + "El Silmarillion" + ] + } + } + }, + { + "book": { + "title": "Juego de Tronos", + "pages": 694, + "genre": "Fantasía", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1273763400i/8189620.jpg", + "synopsis": "En un reino donde las estaciones duran años, una batalla épica por el trono se desarrolla.", + "year": 1996, + "ISBN": "978-0553103540", + "author": { + "name": "George R. R. Martin", + "otherBooks": [ + "Choque de Reyes", + "Tormenta de Espadas", + "Festín de Cuervos" + ] + } + } + }, + { + "book": { + "title": "Harry Potter y la piedra filosofal", + "pages": 223, + "genre": "Fantasía", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1550337333i/15868.jpg", + "synopsis": "Un niño descubre que es un mago y comienza una aventura en una escuela de magia.", + "year": 1997, + "ISBN": "978-0747532699", + "author": { + "name": "J.K. Rowling", + "otherBooks": [ + "Harry Potter y la cámara secreta", + "Harry Potter y el prisionero de Azkaban", + "Harry Potter y el cáliz de fuego" + ] + } + } + }, + { + "book": { + "title": "1984", + "pages": 328, + "genre": "Ciencia ficción", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1657781256i/61439040.jpg", + "synopsis": "Una inquietante visión de un futuro distópico y totalitario.", + "year": 1949, + "ISBN": "978-0451524935", + "author": { + "name": "George Orwell", + "otherBooks": [ + "Rebelión en la granja" + ] + } + } +}, + { + "book": { + "title": "Apocalipsis Zombie", + "pages": 444, + "genre": "Zombies", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1422626176i/24762432.jpg", + "synopsis": "Un gallego se queda en casa en pleno apocalipsis zombie y acaba casi salvando el mundo", + "year": 2001, + "ISBN": "978-4444532611", + "author": { + "name": "Manel Loreiro", + "otherBooks": [] + } + } +}, +{ + "book": { + "title": "Dune", + "pages": 412, + "genre": "Ciencia ficción", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1555447414i/44767458.jpg", + "synopsis": "En el inhóspito planeta desértico de Arrakis, una gran intriga política y familiar se desarrolla.", + "year": 1965, + "ISBN": "978-0441172719", + "author": { + "name": "Frank Herbert", + "otherBooks": [ + "El mesías de Dune", + "Hijos de Dune" + ] + } + } +}, +{ + "book": { + "title": "La Guía del Autoestopista Galáctico", + "pages": 216, + "genre": "Ciencia ficción", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1653311117i/6691227.jpg", + "synopsis": "Un viaje absurdo y cómico por el espacio, con toallas.", + "year": 1979, + "ISBN": "978-0345391803", + "author": { + "name": "Douglas Adams", + "otherBooks": [ + "El restaurante del fin del mundo", + "La vida, el universo y todo lo demás" + ] + } + } +}, +{ + "book": { + "title": "Neuromante", + "pages": 271, + "genre": "Ciencia ficción", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1554437249i/6088007.jpg", + "synopsis": "Una visión profética de la ciber-realidad y la inteligencia artificial.", + "year": 1984, + "ISBN": "978-0441569595", + "author": { + "name": "William Gibson", + "otherBooks": [ + "Conde Cero", + "Mona Lisa Acelerada" + ] + } + } +}, +{ + "book": { + "title": "Fahrenheit 451", + "pages": 249, + "genre": "Ciencia ficción", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1383718290i/13079982.jpg", + "synopsis": "Una sociedad futura donde los libros están prohibidos y 'bomberos' queman cualquier libro que encuentren.", + "year": 1953, + "ISBN": "978-1451673319", + "author": { + "name": "Ray Bradbury", + "otherBooks": [ + "Crónicas marcianas", + "El hombre ilustrado" + ] + } + } +}, + { + "book": { + "title": "El resplandor", + "pages": 688, + "genre": "Terror", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1641398308i/60038757.jpg", + "synopsis": "Una familia se muda a un hotel aislado para el invierno donde una presencia siniestra influye en el padre hacia la violencia.", + "year": 1977, + "ISBN": "978-0307743657", + "author": { + "name": "Stephen King", + "otherBooks": [ + "Carrie", + "It" + ] + } + } +}, +{ + "book": { + "title": "Drácula", + "pages": 418, + "genre": "Terror", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1387151694i/17245.jpg", + "synopsis": "La historia del infame conde Drácula y su intento de mudarse de Transilvania a Inglaterra.", + "year": 1897, + "ISBN": "978-0486411095", + "author": { + "name": "Bram Stoker", + "otherBooks": [ + "La joya de las siete estrellas", + "La madriguera del gusano blanco" + ] + } + } +}, +{ + "book": { + "title": "Frankenstein", + "pages": 280, + "genre": "Terror", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1669159060i/63631742.jpg", + "synopsis": "Un científico obsesionado crea una criatura viva a partir de partes de cuerpos robadas, con consecuencias desastrosas.", + "year": 1818, + "ISBN": "978-0486282114", + "author": { + "name": "Mary Shelley", + "otherBooks": [ + "El último hombre", + "Valperga" + ] + } + } +}, +{ + "book": { + "title": "La llamada de Cthulhu", + "pages": 43, + "genre": "Terror", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1485924654i/34094154.jpg", + "synopsis": "La historia de un monstruo ancestral que amenaza con revivir y dominar el mundo.", + "year": 1928, + "ISBN": "978-1542461690", + "author": { + "name": "H.P. Lovecraft", + "otherBooks": [ + "El horror de Dunwich", + "En las montañas de la locura" + ] + } + } + } +]} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/vite.config.js b/pruebas/01-reading-list/CarlosUlisesOchoa/vite.config.js new file mode 100644 index 000000000..861b04b35 --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/vite.config.js @@ -0,0 +1,7 @@ +import { defineConfig } from 'vite' +import react from '@vitejs/plugin-react-swc' + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [react()], +}) From 75a82624d0a06ee34347e17951b2b3013e6f3193 Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Mon, 24 Jul 2023 13:26:36 -0600 Subject: [PATCH 02/52] ADD basic package and config --- .../CarlosUlisesOchoa/.eslintrc.cjs | 47 +- .../CarlosUlisesOchoa/.prettierrc.json | 9 + .../CarlosUlisesOchoa/package.json | 11 +- .../CarlosUlisesOchoa/pnpm-lock.yaml | 6060 +++++++++++++++++ 4 files changed, 6124 insertions(+), 3 deletions(-) create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/.prettierrc.json create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/.eslintrc.cjs b/pruebas/01-reading-list/CarlosUlisesOchoa/.eslintrc.cjs index 4dcb43901..3cdc19a94 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/.eslintrc.cjs +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/.eslintrc.cjs @@ -6,15 +6,58 @@ module.exports = { 'plugin:react/recommended', 'plugin:react/jsx-runtime', 'plugin:react-hooks/recommended', + './node_modules/standard/eslintrc.json', + ], + ignorePatterns: [ + 'dist', + '.eslintrc.cjs', + 'node_modules', + '**/*.svg', + '**/*.css', + '**/*.json', ], - ignorePatterns: ['dist', '.eslintrc.cjs'], parserOptions: { ecmaVersion: 'latest', sourceType: 'module' }, - settings: { react: { version: '18.2' } }, + settings: { + react: { + version: '18.2', + }, + 'import/resolver': { + alias: { + map: [['@/', 'src/']], + extensions: ['.js', '.jsx', '.ts', '.tsx'], + }, + }, + }, plugins: ['react-refresh'], rules: { 'react-refresh/only-export-components': [ 'warn', { allowConstantExport: true }, ], + 'import/no-duplicates': 'off', + quotes: 'off', + 'block-spacing': 'off', + 'no-lone-blocks': 'off', + 'import/first': 'off', + 'object-curly-spacing': 'off', + 'jsx-quotes': 'off', + 'react/jsx-closing-bracket-location': 'off', + 'react-hooks/exhaustive-deps': 'off', + 'space-before-function-paren': 'off', + 'no-unused-vars': 'warn', + 'no-undef': 'error', + 'no-multiple-empty-lines': 'off', + 'eol-last': 'off', + 'multiline-ternary': 'off', + 'comma-dangle': [ + 'error', + { + arrays: 'only-multiline', + objects: 'only-multiline', + imports: 'only-multiline', + exports: 'only-multiline', + functions: 'ignore', + }, + ], }, } diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/.prettierrc.json b/pruebas/01-reading-list/CarlosUlisesOchoa/.prettierrc.json new file mode 100644 index 000000000..f62c75110 --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/.prettierrc.json @@ -0,0 +1,9 @@ +{ + "semi": false, + "singleQuote": true, + "jsxSingleQuote": true, + "trailingComma": "es5", + "jsxBracketSameLine": true, + "bracketSpacing": true, + "tabWidth": 2 +} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/package.json b/pruebas/01-reading-list/CarlosUlisesOchoa/package.json index c8fa04c27..0d8ee8ebf 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/package.json +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/package.json @@ -19,13 +19,22 @@ "react-dom": "^18.2.0" }, "devDependencies": { + "@babel/core": ">=7.0.0-0 <8.0.0", + "@babel/plugin-syntax-flow": "^7.14.5", + "@babel/plugin-transform-react-jsx": "^7.14.9", "@types/react": "^18.2.15", "@types/react-dom": "^18.2.7", "@vitejs/plugin-react-swc": "^3.3.2", "eslint": "^8.45.0", + "eslint-config-prettier": "^8.8.0", + "eslint-config-react-app": "^7.0.1", "eslint-plugin-react": "^7.32.2", "eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-refresh": "^0.4.3", - "vite": "^4.4.5" + "prettier": "^3.0.0", + "standard": "^17.1.0", + "typescript": ">=2.8.0", + "vite": "^4.4.5", + "vite-plugin-eslint": "^1.8.1" } } diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml b/pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml new file mode 100644 index 000000000..c823e99ef --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml @@ -0,0 +1,6060 @@ +lockfileVersion: 5.4 + +specifiers: + '@babel/core': '>=7.0.0-0 <8.0.0' + '@babel/plugin-syntax-flow': ^7.14.5 + '@babel/plugin-transform-react-jsx': ^7.14.9 + '@types/react': ^18.2.15 + '@types/react-dom': ^18.2.7 + '@vitejs/plugin-react-swc': ^3.3.2 + eslint: ^8.45.0 + eslint-config-prettier: ^8.8.0 + eslint-config-react-app: ^7.0.1 + eslint-plugin-react: ^7.32.2 + eslint-plugin-react-hooks: ^4.6.0 + eslint-plugin-react-refresh: ^0.4.3 + prettier: ^3.0.0 + react: ^18.2.0 + react-dom: ^18.2.0 + standard: ^17.1.0 + typescript: '>=2.8.0' + vite: ^4.4.5 + vite-plugin-eslint: ^1.8.1 + +dependencies: + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + +devDependencies: + '@babel/core': 7.22.9 + '@babel/plugin-syntax-flow': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-react-jsx': 7.22.5_@babel+core@7.22.9 + '@types/react': 18.2.15 + '@types/react-dom': 18.2.7 + '@vitejs/plugin-react-swc': 3.3.2_vite@4.4.6 + eslint: 8.45.0 + eslint-config-prettier: 8.8.0_eslint@8.45.0 + eslint-config-react-app: 7.0.1_cehorzkv5ezvj4qputao2nrtpq + eslint-plugin-react: 7.33.0_eslint@8.45.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.45.0 + eslint-plugin-react-refresh: 0.4.3_eslint@8.45.0 + prettier: 3.0.0 + standard: 17.1.0 + typescript: 5.1.6 + vite: 4.4.6 + vite-plugin-eslint: 1.8.1_eslint@8.45.0+vite@4.4.6 + +packages: + /@aashutoshrathi/word-wrap/1.2.6: + resolution: + { + integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==, + } + engines: { node: '>=0.10.0' } + dev: true + + /@ampproject/remapping/2.2.1: + resolution: + { + integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==, + } + engines: { node: '>=6.0.0' } + dependencies: + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.18 + dev: true + + /@babel/code-frame/7.22.5: + resolution: + { + integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/highlight': 7.22.5 + dev: true + + /@babel/compat-data/7.22.9: + resolution: + { + integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==, + } + engines: { node: '>=6.9.0' } + dev: true + + /@babel/core/7.22.9: + resolution: + { + integrity: sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@ampproject/remapping': 2.2.1 + '@babel/code-frame': 7.22.5 + '@babel/generator': 7.22.9 + '@babel/helper-compilation-targets': 7.22.9_@babel+core@7.22.9 + '@babel/helper-module-transforms': 7.22.9_@babel+core@7.22.9 + '@babel/helpers': 7.22.6 + '@babel/parser': 7.22.7 + '@babel/template': 7.22.5 + '@babel/traverse': 7.22.8 + '@babel/types': 7.22.5 + convert-source-map: 1.9.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/eslint-parser/7.22.9_mxva3tvsh22zo7fr2tqrirzrru: + resolution: + { + integrity: sha512-xdMkt39/nviO/4vpVdrEYPwXCsYIXSSAr6mC7WQsNIlGnuxKyKE7GZjalcnbSWiC4OXGNNN3UQPeHfjSC6sTDA==, + } + 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.22.9 + '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 + eslint: 8.45.0 + eslint-visitor-keys: 2.1.0 + semver: 6.3.1 + dev: true + + /@babel/generator/7.22.9: + resolution: + { + integrity: sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.22.5 + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.18 + jsesc: 2.5.2 + dev: true + + /@babel/helper-annotate-as-pure/7.22.5: + resolution: + { + integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.22.5 + dev: true + + /@babel/helper-builder-binary-assignment-operator-visitor/7.22.5: + resolution: + { + integrity: sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.22.5 + dev: true + + /@babel/helper-compilation-targets/7.22.9_@babel+core@7.22.9: + resolution: + { + integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.22.9 + '@babel/core': 7.22.9 + '@babel/helper-validator-option': 7.22.5 + browserslist: 4.21.9 + lru-cache: 5.1.1 + semver: 6.3.1 + dev: true + + /@babel/helper-create-class-features-plugin/7.22.9_@babel+core@7.22.9: + resolution: + { + integrity: sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-function-name': 7.22.5 + '@babel/helper-member-expression-to-functions': 7.22.5 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.22.9_@babel+core@7.22.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + semver: 6.3.1 + dev: true + + /@babel/helper-create-regexp-features-plugin/7.22.9_@babel+core@7.22.9: + resolution: + { + integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-annotate-as-pure': 7.22.5 + regexpu-core: 5.3.2 + semver: 6.3.1 + dev: true + + /@babel/helper-define-polyfill-provider/0.4.2_@babel+core@7.22.9: + resolution: + { + integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==, + } + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-compilation-targets': 7.22.9_@babel+core@7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + debug: 4.3.4 + lodash.debounce: 4.0.8 + resolve: 1.22.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-environment-visitor/7.22.5: + resolution: + { + integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==, + } + engines: { node: '>=6.9.0' } + dev: true + + /@babel/helper-function-name/7.22.5: + resolution: + { + integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/template': 7.22.5 + '@babel/types': 7.22.5 + dev: true + + /@babel/helper-hoist-variables/7.22.5: + resolution: + { + integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.22.5 + dev: true + + /@babel/helper-member-expression-to-functions/7.22.5: + resolution: + { + integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.22.5 + dev: true + + /@babel/helper-module-imports/7.22.5: + resolution: + { + integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.22.5 + dev: true + + /@babel/helper-module-transforms/7.22.9_@babel+core@7.22.9: + resolution: + { + integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-module-imports': 7.22.5 + '@babel/helper-simple-access': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-validator-identifier': 7.22.5 + dev: true + + /@babel/helper-optimise-call-expression/7.22.5: + resolution: + { + integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.22.5 + dev: true + + /@babel/helper-plugin-utils/7.22.5: + resolution: + { + integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==, + } + engines: { node: '>=6.9.0' } + dev: true + + /@babel/helper-remap-async-to-generator/7.22.9_@babel+core@7.22.9: + resolution: + { + integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-wrap-function': 7.22.9 + dev: true + + /@babel/helper-replace-supers/7.22.9_@babel+core@7.22.9: + resolution: + { + integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-member-expression-to-functions': 7.22.5 + '@babel/helper-optimise-call-expression': 7.22.5 + dev: true + + /@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.22.5 + dev: true + + /@babel/helper-skip-transparent-expression-wrappers/7.22.5: + resolution: + { + integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.22.5 + dev: true + + /@babel/helper-split-export-declaration/7.22.6: + resolution: + { + integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.22.5 + dev: true + + /@babel/helper-string-parser/7.22.5: + resolution: + { + integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==, + } + engines: { node: '>=6.9.0' } + dev: true + + /@babel/helper-validator-identifier/7.22.5: + resolution: + { + integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==, + } + engines: { node: '>=6.9.0' } + dev: true + + /@babel/helper-validator-option/7.22.5: + resolution: + { + integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==, + } + engines: { node: '>=6.9.0' } + dev: true + + /@babel/helper-wrap-function/7.22.9: + resolution: + { + integrity: sha512-sZ+QzfauuUEfxSEjKFmi3qDSHgLsTPK/pEpoD/qonZKOtTPTLbf59oabPQ4rKekt9lFcj/hTZaOhWwFYrgjk+Q==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/helper-function-name': 7.22.5 + '@babel/template': 7.22.5 + '@babel/types': 7.22.5 + dev: true + + /@babel/helpers/7.22.6: + resolution: + { + integrity: sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/template': 7.22.5 + '@babel/traverse': 7.22.8 + '@babel/types': 7.22.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/highlight/7.22.5: + resolution: + { + integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/helper-validator-identifier': 7.22.5 + chalk: 2.4.2 + js-tokens: 4.0.0 + dev: true + + /@babel/parser/7.22.7: + resolution: + { + integrity: sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==, + } + engines: { node: '>=6.0.0' } + hasBin: true + dependencies: + '@babel/types': 7.22.5 + dev: true + + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.13.0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-transform-optional-chaining': 7.22.6_@babel+core@7.22.9 + dev: true + + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.22.9: + resolution: + { + integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-create-class-features-plugin': 7.22.9_@babel+core@7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-proposal-decorators/7.22.7_@babel+core@7.22.9: + resolution: + { + integrity: sha512-omXqPF7Onq4Bb7wHxXjM3jSMSJvUUbvDvmmds7KI5n9Cq6Ln5I05I1W2nRlRof1rGdiUxJrxwe285WF96XlBXQ==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-create-class-features-plugin': 7.22.9_@babel+core@7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-replace-supers': 7.22.9_@babel+core@7.22.9 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/plugin-syntax-decorators': 7.22.5_@babel+core@7.22.9 + dev: true + + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.22.9: + resolution: + { + integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.22.9 + dev: true + + /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.22.9: + resolution: + { + integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.22.9 + dev: true + + /@babel/plugin-proposal-optional-chaining/7.21.0_@babel+core@7.22.9: + resolution: + { + integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.22.9 + dev: true + + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.22.9: + resolution: + { + integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-create-class-features-plugin': 7.22.9_@babel+core@7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-proposal-private-property-in-object/7.21.0-placeholder-for-preset-env.2_@babel+core@7.22.9: + resolution: + { + integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + dev: true + + /@babel/plugin-proposal-private-property-in-object/7.21.11_@babel+core@7.22.9: + resolution: + { + integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.22.9_@babel+core@7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.22.9 + dev: true + + /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.22.9: + resolution: + { + integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==, + } + engines: { node: '>=4' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-create-regexp-features-plugin': 7.22.9_@babel+core@7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.22.9: + resolution: + { + integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.22.9: + resolution: + { + integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-decorators/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.22.9: + resolution: + { + integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==, + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.22.9: + resolution: + { + integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==, + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-flow/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-import-assertions/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-import-attributes/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.22.9: + resolution: + { + integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.22.9: + resolution: + { + integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-jsx/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.22.9: + resolution: + { + integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.22.9: + resolution: + { + integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.22.9: + resolution: + { + integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.22.9: + resolution: + { + integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.22.9: + resolution: + { + integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.22.9: + resolution: + { + integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-typescript/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-unicode-sets-regex/7.18.6_@babel+core@7.22.9: + resolution: + { + integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-create-regexp-features-plugin': 7.22.9_@babel+core@7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-arrow-functions/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-async-generator-functions/7.22.7_@babel+core@7.22.9: + resolution: + { + integrity: sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-remap-async-to-generator': 7.22.9_@babel+core@7.22.9 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.22.9 + dev: true + + /@babel/plugin-transform-async-to-generator/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-module-imports': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-remap-async-to-generator': 7.22.9_@babel+core@7.22.9 + dev: true + + /@babel/plugin-transform-block-scoped-functions/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-block-scoping/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-class-properties/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-create-class-features-plugin': 7.22.9_@babel+core@7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-class-static-block/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.12.0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-create-class-features-plugin': 7.22.9_@babel+core@7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.22.9 + dev: true + + /@babel/plugin-transform-classes/7.22.6_@babel+core@7.22.9: + resolution: + { + integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-compilation-targets': 7.22.9_@babel+core@7.22.9 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-function-name': 7.22.5 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-replace-supers': 7.22.9_@babel+core@7.22.9 + '@babel/helper-split-export-declaration': 7.22.6 + globals: 11.12.0 + dev: true + + /@babel/plugin-transform-computed-properties/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/template': 7.22.5 + dev: true + + /@babel/plugin-transform-destructuring/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-dotall-regex/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-create-regexp-features-plugin': 7.22.9_@babel+core@7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-duplicate-keys/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-dynamic-import/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.22.9 + dev: true + + /@babel/plugin-transform-exponentiation-operator/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-export-namespace-from/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.22.9 + dev: true + + /@babel/plugin-transform-flow-strip-types/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-flow': 7.22.5_@babel+core@7.22.9 + dev: true + + /@babel/plugin-transform-for-of/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-function-name/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-compilation-targets': 7.22.9_@babel+core@7.22.9 + '@babel/helper-function-name': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-json-strings/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.22.9 + dev: true + + /@babel/plugin-transform-literals/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-logical-assignment-operators/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.22.9 + dev: true + + /@babel/plugin-transform-member-expression-literals/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-modules-amd/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-module-transforms': 7.22.9_@babel+core@7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-modules-commonjs/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-module-transforms': 7.22.9_@babel+core@7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-simple-access': 7.22.5 + dev: true + + /@babel/plugin-transform-modules-systemjs/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-module-transforms': 7.22.9_@babel+core@7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-identifier': 7.22.5 + dev: true + + /@babel/plugin-transform-modules-umd/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-module-transforms': 7.22.9_@babel+core@7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-named-capturing-groups-regex/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-create-regexp-features-plugin': 7.22.9_@babel+core@7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-new-target/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-nullish-coalescing-operator/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.22.9 + dev: true + + /@babel/plugin-transform-numeric-separator/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.22.9 + dev: true + + /@babel/plugin-transform-object-rest-spread/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.22.9 + '@babel/core': 7.22.9 + '@babel/helper-compilation-targets': 7.22.9_@babel+core@7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.22.9 + '@babel/plugin-transform-parameters': 7.22.5_@babel+core@7.22.9 + dev: true + + /@babel/plugin-transform-object-super/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-replace-supers': 7.22.9_@babel+core@7.22.9 + dev: true + + /@babel/plugin-transform-optional-catch-binding/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.22.9 + dev: true + + /@babel/plugin-transform-optional-chaining/7.22.6_@babel+core@7.22.9: + resolution: + { + integrity: sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.22.9 + dev: true + + /@babel/plugin-transform-parameters/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-private-methods/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-create-class-features-plugin': 7.22.9_@babel+core@7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-private-property-in-object/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.22.9_@babel+core@7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.22.9 + dev: true + + /@babel/plugin-transform-property-literals/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-react-display-name/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-react-jsx-development/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/plugin-transform-react-jsx': 7.22.5_@babel+core@7.22.9 + dev: true + + /@babel/plugin-transform-react-jsx/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-jsx': 7.22.5_@babel+core@7.22.9 + '@babel/types': 7.22.5 + dev: true + + /@babel/plugin-transform-react-pure-annotations/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-regenerator/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + regenerator-transform: 0.15.1 + dev: true + + /@babel/plugin-transform-reserved-words/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-runtime/7.22.9_@babel+core@7.22.9: + resolution: + { + integrity: sha512-9KjBH61AGJetCPYp/IEyLEp47SyybZb0nDRpBvmtEkm+rUIwxdlKpyNHI1TmsGkeuLclJdleQHRZ8XLBnnh8CQ==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-module-imports': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + babel-plugin-polyfill-corejs2: 0.4.5_@babel+core@7.22.9 + babel-plugin-polyfill-corejs3: 0.8.3_@babel+core@7.22.9 + babel-plugin-polyfill-regenerator: 0.5.2_@babel+core@7.22.9 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/plugin-transform-shorthand-properties/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-spread/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + dev: true + + /@babel/plugin-transform-sticky-regex/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-template-literals/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-typeof-symbol/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-typescript/7.22.9_@babel+core@7.22.9: + resolution: + { + integrity: sha512-BnVR1CpKiuD0iobHPaM1iLvcwPYN2uVFAqoLVSpEDKWuOikoCv5HbKLxclhKYUXlWkX86DoZGtqI4XhbOsyrMg==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.22.9_@babel+core@7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-typescript': 7.22.5_@babel+core@7.22.9 + dev: true + + /@babel/plugin-transform-unicode-escapes/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-unicode-property-regex/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-create-regexp-features-plugin': 7.22.9_@babel+core@7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-unicode-regex/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-create-regexp-features-plugin': 7.22.9_@babel+core@7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-transform-unicode-sets-regex/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-create-regexp-features-plugin': 7.22.9_@babel+core@7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/preset-env/7.22.9_@babel+core@7.22.9: + resolution: + { + integrity: sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.22.9 + '@babel/core': 7.22.9 + '@babel/helper-compilation-targets': 7.22.9_@babel+core@7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.22.5 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2_@babel+core@7.22.9 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.22.9 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.22.9 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.22.9 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.22.9 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.22.9 + '@babel/plugin-syntax-import-assertions': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-syntax-import-attributes': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.22.9 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.22.9 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.22.9 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.22.9 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.22.9 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.22.9 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.22.9 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.22.9 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.22.9 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.22.9 + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6_@babel+core@7.22.9 + '@babel/plugin-transform-arrow-functions': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-async-generator-functions': 7.22.7_@babel+core@7.22.9 + '@babel/plugin-transform-async-to-generator': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-block-scoped-functions': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-block-scoping': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-class-properties': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-class-static-block': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-classes': 7.22.6_@babel+core@7.22.9 + '@babel/plugin-transform-computed-properties': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-destructuring': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-dotall-regex': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-duplicate-keys': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-dynamic-import': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-exponentiation-operator': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-export-namespace-from': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-for-of': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-function-name': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-json-strings': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-literals': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-logical-assignment-operators': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-member-expression-literals': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-modules-amd': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-modules-commonjs': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-modules-systemjs': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-modules-umd': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-new-target': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-nullish-coalescing-operator': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-numeric-separator': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-object-rest-spread': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-object-super': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-optional-catch-binding': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-optional-chaining': 7.22.6_@babel+core@7.22.9 + '@babel/plugin-transform-parameters': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-private-methods': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-private-property-in-object': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-property-literals': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-regenerator': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-reserved-words': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-shorthand-properties': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-spread': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-sticky-regex': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-template-literals': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-typeof-symbol': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-unicode-escapes': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-unicode-property-regex': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-unicode-regex': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-unicode-sets-regex': 7.22.5_@babel+core@7.22.9 + '@babel/preset-modules': 0.1.6_@babel+core@7.22.9 + '@babel/types': 7.22.5 + babel-plugin-polyfill-corejs2: 0.4.5_@babel+core@7.22.9 + babel-plugin-polyfill-corejs3: 0.8.3_@babel+core@7.22.9 + babel-plugin-polyfill-regenerator: 0.5.2_@babel+core@7.22.9 + core-js-compat: 3.31.1 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/preset-modules/0.1.6_@babel+core@7.22.9: + resolution: + { + integrity: sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==, + } + peerDependencies: + '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.22.9 + '@babel/plugin-transform-dotall-regex': 7.22.5_@babel+core@7.22.9 + '@babel/types': 7.22.5 + esutils: 2.0.3 + dev: true + + /@babel/preset-react/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-M+Is3WikOpEJHgR385HbuCITPTaPRaNkibTEa9oiofmJvIsrceb4yp9RL9Kb+TE8LznmeyZqpP+Lopwcx59xPQ==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.22.5 + '@babel/plugin-transform-react-display-name': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-react-jsx': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-react-jsx-development': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-react-pure-annotations': 7.22.5_@babel+core@7.22.9 + dev: true + + /@babel/preset-typescript/7.22.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.22.5 + '@babel/plugin-syntax-jsx': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-modules-commonjs': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-typescript': 7.22.9_@babel+core@7.22.9 + dev: true + + /@babel/regjsgen/0.8.0: + resolution: + { + integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==, + } + dev: true + + /@babel/runtime/7.22.6: + resolution: + { + integrity: sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==, + } + engines: { node: '>=6.9.0' } + dependencies: + regenerator-runtime: 0.13.11 + dev: true + + /@babel/template/7.22.5: + resolution: + { + integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/code-frame': 7.22.5 + '@babel/parser': 7.22.7 + '@babel/types': 7.22.5 + dev: true + + /@babel/traverse/7.22.8: + resolution: + { + integrity: sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/code-frame': 7.22.5 + '@babel/generator': 7.22.9 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-function-name': 7.22.5 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/parser': 7.22.7 + '@babel/types': 7.22.5 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/types/7.22.5: + resolution: + { + integrity: sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/helper-string-parser': 7.22.5 + '@babel/helper-validator-identifier': 7.22.5 + to-fast-properties: 2.0.0 + dev: true + + /@esbuild/android-arm/0.18.16: + resolution: + { + integrity: sha512-gCHjjQmA8L0soklKbLKA6pgsLk1byULuHe94lkZDzcO3/Ta+bbeewJioEn1Fr7kgy9NWNFy/C+MrBwC6I/WCug==, + } + engines: { node: '>=12' } + cpu: [arm] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-arm64/0.18.16: + resolution: + { + integrity: sha512-wsCqSPqLz+6Ov+OM4EthU43DyYVVyfn15S4j1bJzylDpc1r1jZFFfJQNfDuT8SlgwuqpmpJXK4uPlHGw6ve7eA==, + } + engines: { node: '>=12' } + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-x64/0.18.16: + resolution: + { + integrity: sha512-ldsTXolyA3eTQ1//4DS+E15xl0H/3DTRJaRL0/0PgkqDsI0fV/FlOtD+h0u/AUJr+eOTlZv4aC9gvfppo3C4sw==, + } + engines: { node: '>=12' } + cpu: [x64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-arm64/0.18.16: + resolution: + { + integrity: sha512-aBxruWCII+OtluORR/KvisEw0ALuw/qDQWvkoosA+c/ngC/Kwk0lLaZ+B++LLS481/VdydB2u6tYpWxUfnLAIw==, + } + engines: { node: '>=12' } + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-x64/0.18.16: + resolution: + { + integrity: sha512-6w4Dbue280+rp3LnkgmriS1icOUZDyPuZo/9VsuMUTns7SYEiOaJ7Ca1cbhu9KVObAWfmdjUl4gwy9TIgiO5eA==, + } + engines: { node: '>=12' } + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-arm64/0.18.16: + resolution: + { + integrity: sha512-x35fCebhe9s979DGKbVAwXUOcTmCIE32AIqB9CB1GralMIvxdnMLAw5CnID17ipEw9/3MvDsusj/cspYt2ZLNQ==, + } + engines: { node: '>=12' } + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-x64/0.18.16: + resolution: + { + integrity: sha512-YM98f+PeNXF3GbxIJlUsj+McUWG1irguBHkszCIwfr3BXtXZsXo0vqybjUDFfu9a8Wr7uUD/YSmHib+EeGAFlg==, + } + engines: { node: '>=12' } + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm/0.18.16: + resolution: + { + integrity: sha512-b5ABb+5Ha2C9JkeZXV+b+OruR1tJ33ePmv9ZwMeETSEKlmu/WJ45XTTG+l6a2KDsQtJJ66qo/hbSGBtk0XVLHw==, + } + engines: { node: '>=12' } + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm64/0.18.16: + resolution: + { + integrity: sha512-XIqhNUxJiuy+zsR77+H5Z2f7s4YRlriSJKtvx99nJuG5ATuJPjmZ9n0ANgnGlPCpXGSReFpgcJ7O3SMtzIFeiQ==, + } + engines: { node: '>=12' } + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ia32/0.18.16: + resolution: + { + integrity: sha512-no+pfEpwnRvIyH+txbBAWtjxPU9grslmTBfsmDndj7bnBmr55rOo/PfQmRfz7Qg9isswt1FP5hBbWb23fRWnow==, + } + engines: { node: '>=12' } + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-loong64/0.18.16: + resolution: + { + integrity: sha512-Zbnczs9ZXjmo0oZSS0zbNlJbcwKXa/fcNhYQjahDs4Xg18UumpXG/lwM2lcSvHS3mTrRyCYZvJbmzYc4laRI1g==, + } + engines: { node: '>=12' } + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-mips64el/0.18.16: + resolution: + { + integrity: sha512-YMF7hih1HVR/hQVa/ot4UVffc5ZlrzEb3k2ip0nZr1w6fnYypll9td2qcoMLvd3o8j3y6EbJM3MyIcXIVzXvQQ==, + } + engines: { node: '>=12' } + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ppc64/0.18.16: + resolution: + { + integrity: sha512-Wkz++LZ29lDwUyTSEnzDaaP5OveOgTU69q9IyIw9WqLRxM4BjTBjz9un4G6TOvehWpf/J3gYVFN96TjGHrbcNQ==, + } + engines: { node: '>=12' } + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-riscv64/0.18.16: + resolution: + { + integrity: sha512-LFMKZ30tk78/mUv1ygvIP+568bwf4oN6reG/uczXnz6SvFn4e2QUFpUpZY9iSJT6Qpgstrhef/nMykIXZtZWGQ==, + } + engines: { node: '>=12' } + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-s390x/0.18.16: + resolution: + { + integrity: sha512-3ZC0BgyYHYKfZo3AV2/66TD/I9tlSBaW7eWTEIkrQQKfJIifKMMttXl9FrAg+UT0SGYsCRLI35Gwdmm96vlOjg==, + } + engines: { node: '>=12' } + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-x64/0.18.16: + resolution: + { + integrity: sha512-xu86B3647DihHJHv/wx3NCz2Dg1gjQ8bbf9cVYZzWKY+gsvxYmn/lnVlqDRazObc3UMwoHpUhNYaZset4X8IPA==, + } + engines: { node: '>=12' } + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/netbsd-x64/0.18.16: + resolution: + { + integrity: sha512-uVAgpimx9Ffw3xowtg/7qQPwHFx94yCje+DoBx+LNm2ePDpQXHrzE+Sb0Si2VBObYz+LcRps15cq+95YM7gkUw==, + } + engines: { node: '>=12' } + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/openbsd-x64/0.18.16: + resolution: + { + integrity: sha512-6OjCQM9wf7z8/MBi6BOWaTL2AS/SZudsZtBziXMtNI8r/U41AxS9x7jn0ATOwVy08OotwkPqGRMkpPR2wcTJXA==, + } + engines: { node: '>=12' } + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/sunos-x64/0.18.16: + resolution: + { + integrity: sha512-ZoNkruFYJp9d1LbUYCh8awgQDvB9uOMZqlQ+gGEZR7v6C+N6u7vPr86c+Chih8niBR81Q/bHOSKGBK3brJyvkQ==, + } + engines: { node: '>=12' } + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-arm64/0.18.16: + resolution: + { + integrity: sha512-+j4anzQ9hrs+iqO+/wa8UE6TVkKua1pXUb0XWFOx0FiAj6R9INJ+WE//1/Xo6FG1vB5EpH3ko+XcgwiDXTxcdw==, + } + engines: { node: '>=12' } + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-ia32/0.18.16: + resolution: + { + integrity: sha512-5PFPmq3sSKTp9cT9dzvI67WNfRZGvEVctcZa1KGjDDu4n3H8k59Inbk0du1fz0KrAbKKNpJbdFXQMDUz7BG4rQ==, + } + engines: { node: '>=12' } + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-x64/0.18.16: + resolution: + { + integrity: sha512-sCIVrrtcWN5Ua7jYXNG1xD199IalrbfV2+0k/2Zf2OyV2FtnQnMgdzgpRAbi4AWlKJj1jkX+M+fEGPQj6BQB4w==, + } + engines: { node: '>=12' } + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@eslint-community/eslint-utils/4.4.0_eslint@8.45.0: + resolution: + { + integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + dependencies: + eslint: 8.45.0 + eslint-visitor-keys: 3.4.1 + dev: true + + /@eslint-community/regexpp/4.6.0: + resolution: + { + integrity: sha512-uiPeRISaglZnaZk8vwrjQZ1CxogZeY/4IYft6gBOTqu1WhVXWmCmZMWxUv2Q/pxSvPdp1JPaO62kLOcOkMqWrw==, + } + engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 } + dev: true + + /@eslint/eslintrc/2.1.0: + resolution: + { + integrity: sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + ajv: 6.12.6 + debug: 4.3.4 + espree: 9.6.1 + globals: 13.20.0 + ignore: 5.2.4 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@eslint/js/8.44.0: + resolution: + { + integrity: sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dev: true + + /@humanwhocodes/config-array/0.11.10: + resolution: + { + integrity: sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==, + } + engines: { node: '>=10.10.0' } + dependencies: + '@humanwhocodes/object-schema': 1.2.1 + debug: 4.3.4 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@humanwhocodes/module-importer/1.0.1: + resolution: + { + integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==, + } + engines: { node: '>=12.22' } + dev: true + + /@humanwhocodes/object-schema/1.2.1: + resolution: + { + integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==, + } + dev: true + + /@jridgewell/gen-mapping/0.3.3: + resolution: + { + integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==, + } + engines: { node: '>=6.0.0' } + dependencies: + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping': 0.3.18 + dev: true + + /@jridgewell/resolve-uri/3.1.0: + resolution: + { + integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==, + } + engines: { node: '>=6.0.0' } + dev: true + + /@jridgewell/set-array/1.1.2: + resolution: + { + integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==, + } + engines: { node: '>=6.0.0' } + dev: true + + /@jridgewell/sourcemap-codec/1.4.14: + resolution: + { + integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==, + } + dev: true + + /@jridgewell/sourcemap-codec/1.4.15: + resolution: + { + integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==, + } + dev: true + + /@jridgewell/trace-mapping/0.3.18: + resolution: + { + integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==, + } + dependencies: + '@jridgewell/resolve-uri': 3.1.0 + '@jridgewell/sourcemap-codec': 1.4.14 + dev: true + + /@nicolo-ribaudo/eslint-scope-5-internals/5.1.1-v1: + resolution: + { + integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==, + } + dependencies: + eslint-scope: 5.1.1 + dev: true + + /@nodelib/fs.scandir/2.1.5: + resolution: + { + integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, + } + engines: { node: '>= 8' } + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + dev: true + + /@nodelib/fs.stat/2.0.5: + resolution: + { + integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, + } + engines: { node: '>= 8' } + dev: true + + /@nodelib/fs.walk/1.2.8: + resolution: + { + integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, + } + engines: { node: '>= 8' } + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.15.0 + dev: true + + /@rollup/pluginutils/4.2.1: + resolution: + { + integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==, + } + engines: { node: '>= 8.0.0' } + dependencies: + estree-walker: 2.0.2 + picomatch: 2.3.1 + dev: true + + /@rushstack/eslint-patch/1.3.2: + resolution: + { + integrity: sha512-V+MvGwaHH03hYhY+k6Ef/xKd6RYlc4q8WBx+2ANmipHJcKuktNcI/NgEsJgdSUF6Lw32njT6OnrRsKYCdgHjYw==, + } + dev: true + + /@swc/core-darwin-arm64/1.3.70: + resolution: + { + integrity: sha512-31+mcl0dgdRHvZRjhLOK9V6B+qJ7nxDZYINr9pBlqGWxknz37Vld5KK19Kpr79r0dXUZvaaelLjCnJk9dA2PcQ==, + } + engines: { node: '>=10' } + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@swc/core-darwin-x64/1.3.70: + resolution: + { + integrity: sha512-GMFJ65E18zQC80t0os+TZvI+8lbRuitncWVge/RXmXbVLPRcdykP4EJ87cqzcG5Ah0z18/E0T+ixD6jHRisrYQ==, + } + engines: { node: '>=10' } + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@swc/core-linux-arm-gnueabihf/1.3.70: + resolution: + { + integrity: sha512-wjhCwS8LCiAq2VedF1b4Bryyw68xZnfMED4pLRazAl8BaUlDFANfRBORNunxlfHQj4V3x39IaiLgCZRHMdzXBg==, + } + engines: { node: '>=10' } + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@swc/core-linux-arm64-gnu/1.3.70: + resolution: + { + integrity: sha512-9D/Rx67cAOnMiexvCqARxvhj7coRajTp5HlJHuf+rfwMqI2hLhpO9/pBMQxBUAWxODO/ksQ/OF+GJRjmtWw/2A==, + } + engines: { node: '>=10' } + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@swc/core-linux-arm64-musl/1.3.70: + resolution: + { + integrity: sha512-gkjxBio7XD+1GlQVVyPP/qeFkLu83VhRHXaUrkNYpr5UZG9zZurBERT9nkS6Y+ouYh+Q9xmw57aIyd2KvD2zqQ==, + } + engines: { node: '>=10' } + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@swc/core-linux-x64-gnu/1.3.70: + resolution: + { + integrity: sha512-/nCly+V4xfMVwfEUoLLAukxUSot/RcSzsf6GdsGTjFcrp5sZIntAjokYRytm3VT1c2TK321AfBorsi9R5w8Y7Q==, + } + engines: { node: '>=10' } + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@swc/core-linux-x64-musl/1.3.70: + resolution: + { + integrity: sha512-HoOsPJbt361KGKaivAK0qIiYARkhzlxeAfvF5NlnKxkIMOZpQ46Lwj3tR0VWohKbrhS+cYKFlVuDi5XnDkx0XA==, + } + engines: { node: '>=10' } + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@swc/core-win32-arm64-msvc/1.3.70: + resolution: + { + integrity: sha512-hm4IBK/IaRil+aj1cWU6f0GyAdHpw/Jr5nyFYLM2c/tt7w2t5hgb8NjzM2iM84lOClrig1fG6edj2vCF1dFzNQ==, + } + engines: { node: '>=10' } + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@swc/core-win32-ia32-msvc/1.3.70: + resolution: + { + integrity: sha512-5cgKUKIT/9Fp5fCA+zIjYCQ4dSvjFYOeWGZR3QiTXGkC4bGa1Ji9SEPyeIAX0iruUnKjYaZB9RvHK2tNn7RLrQ==, + } + engines: { node: '>=10' } + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@swc/core-win32-x64-msvc/1.3.70: + resolution: + { + integrity: sha512-LE8lW46+TQBzVkn2mHBlk8DIElPIZ2dO5P8AbJiARNBAnlqQWu67l9gWM89UiZ2l33J2cI37pHzON3tKnT8f9g==, + } + engines: { node: '>=10' } + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@swc/core/1.3.70: + resolution: + { + integrity: sha512-LWVWlEDLlOD25PvA2NEz41UzdwXnlDyBiZbe69s3zM0DfCPwZXLUm79uSqH9ItsOjTrXSL5/1+XUL6C/BZwChA==, + } + engines: { node: '>=10' } + requiresBuild: true + peerDependencies: + '@swc/helpers': ^0.5.0 + peerDependenciesMeta: + '@swc/helpers': + optional: true + optionalDependencies: + '@swc/core-darwin-arm64': 1.3.70 + '@swc/core-darwin-x64': 1.3.70 + '@swc/core-linux-arm-gnueabihf': 1.3.70 + '@swc/core-linux-arm64-gnu': 1.3.70 + '@swc/core-linux-arm64-musl': 1.3.70 + '@swc/core-linux-x64-gnu': 1.3.70 + '@swc/core-linux-x64-musl': 1.3.70 + '@swc/core-win32-arm64-msvc': 1.3.70 + '@swc/core-win32-ia32-msvc': 1.3.70 + '@swc/core-win32-x64-msvc': 1.3.70 + dev: true + + /@types/eslint/8.44.0: + resolution: + { + integrity: sha512-gsF+c/0XOguWgaOgvFs+xnnRqt9GwgTvIks36WpE6ueeI4KCEHHd8K/CKHqhOqrJKsYH8m27kRzQEvWXAwXUTw==, + } + dependencies: + '@types/estree': 1.0.1 + '@types/json-schema': 7.0.12 + dev: true + + /@types/estree/1.0.1: + resolution: + { + integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==, + } + dev: true + + /@types/json-schema/7.0.12: + resolution: + { + integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==, + } + dev: true + + /@types/json5/0.0.29: + resolution: + { + integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==, + } + dev: true + + /@types/parse-json/4.0.0: + resolution: + { + integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==, + } + dev: true + + /@types/prop-types/15.7.5: + resolution: + { + integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==, + } + dev: true + + /@types/react-dom/18.2.7: + resolution: + { + integrity: sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==, + } + dependencies: + '@types/react': 18.2.15 + dev: true + + /@types/react/18.2.15: + resolution: + { + integrity: sha512-oEjE7TQt1fFTFSbf8kkNuc798ahTUzn3Le67/PWjE8MAfYAD/qB7O8hSTcromLFqHCt9bcdOg5GXMokzTjJ5SA==, + } + dependencies: + '@types/prop-types': 15.7.5 + '@types/scheduler': 0.16.3 + csstype: 3.1.2 + dev: true + + /@types/scheduler/0.16.3: + resolution: + { + integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==, + } + dev: true + + /@types/semver/7.5.0: + resolution: + { + integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==, + } + dev: true + + /@typescript-eslint/eslint-plugin/5.62.0_tbbci4he2x65aggpp4j2oxxdvm: + resolution: + { + integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + '@typescript-eslint/parser': ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@eslint-community/regexpp': 4.6.0 + '@typescript-eslint/parser': 5.62.0_ko3fmmbeyij36muomfgt2u76xu + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/type-utils': 5.62.0_ko3fmmbeyij36muomfgt2u76xu + '@typescript-eslint/utils': 5.62.0_ko3fmmbeyij36muomfgt2u76xu + debug: 4.3.4 + eslint: 8.45.0 + graphemer: 1.4.0 + ignore: 5.2.4 + natural-compare-lite: 1.4.0 + semver: 7.5.4 + tsutils: 3.21.0_typescript@5.1.6 + typescript: 5.1.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/experimental-utils/5.62.0_ko3fmmbeyij36muomfgt2u76xu: + resolution: + { + integrity: sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@typescript-eslint/utils': 5.62.0_ko3fmmbeyij36muomfgt2u76xu + eslint: 8.45.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/parser/5.62.0_ko3fmmbeyij36muomfgt2u76xu: + resolution: + { + integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/typescript-estree': 5.62.0_typescript@5.1.6 + debug: 4.3.4 + eslint: 8.45.0 + typescript: 5.1.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/scope-manager/5.62.0: + resolution: + { + integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 + dev: true + + /@typescript-eslint/type-utils/5.62.0_ko3fmmbeyij36muomfgt2u76xu: + resolution: + { + integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: '*' + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/typescript-estree': 5.62.0_typescript@5.1.6 + '@typescript-eslint/utils': 5.62.0_ko3fmmbeyij36muomfgt2u76xu + debug: 4.3.4 + eslint: 8.45.0 + tsutils: 3.21.0_typescript@5.1.6 + typescript: 5.1.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/types/5.62.0: + resolution: + { + integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dev: true + + /@typescript-eslint/typescript-estree/5.62.0_typescript@5.1.6: + resolution: + { + integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.5.4 + tsutils: 3.21.0_typescript@5.1.6 + typescript: 5.1.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/utils/5.62.0_ko3fmmbeyij36muomfgt2u76xu: + resolution: + { + integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@eslint-community/eslint-utils': 4.4.0_eslint@8.45.0 + '@types/json-schema': 7.0.12 + '@types/semver': 7.5.0 + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/typescript-estree': 5.62.0_typescript@5.1.6 + eslint: 8.45.0 + eslint-scope: 5.1.1 + semver: 7.5.4 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/visitor-keys/5.62.0: + resolution: + { + integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + '@typescript-eslint/types': 5.62.0 + eslint-visitor-keys: 3.4.1 + dev: true + + /@vitejs/plugin-react-swc/3.3.2_vite@4.4.6: + resolution: + { + integrity: sha512-VJFWY5sfoZerQRvJrh518h3AcQt6f/yTuWn4/TRB+dqmYU0NX1qz7qM5Wfd+gOQqUzQW4gxKqKN3KpE/P3+zrA==, + } + peerDependencies: + vite: ^4 + dependencies: + '@swc/core': 1.3.70 + vite: 4.4.6 + transitivePeerDependencies: + - '@swc/helpers' + dev: true + + /acorn-jsx/5.3.2_acorn@8.10.0: + resolution: + { + integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==, + } + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 8.10.0 + dev: true + + /acorn/8.10.0: + resolution: + { + integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==, + } + engines: { node: '>=0.4.0' } + hasBin: true + dev: true + + /ajv/6.12.6: + resolution: + { + integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==, + } + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + dev: true + + /ansi-regex/5.0.1: + resolution: + { + integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, + } + engines: { node: '>=8' } + dev: true + + /ansi-styles/3.2.1: + resolution: + { + integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, + } + engines: { node: '>=4' } + dependencies: + color-convert: 1.9.3 + dev: true + + /ansi-styles/4.3.0: + resolution: + { + integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, + } + engines: { node: '>=8' } + dependencies: + color-convert: 2.0.1 + dev: true + + /argparse/2.0.1: + resolution: + { + integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, + } + dev: true + + /aria-query/5.3.0: + resolution: + { + integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==, + } + dependencies: + dequal: 2.0.3 + dev: true + + /array-buffer-byte-length/1.0.0: + resolution: + { + integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==, + } + dependencies: + call-bind: 1.0.2 + is-array-buffer: 3.0.2 + dev: true + + /array-includes/3.1.6: + resolution: + { + integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.22.1 + get-intrinsic: 1.2.1 + is-string: 1.0.7 + dev: true + + /array-union/2.1.0: + resolution: + { + integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==, + } + engines: { node: '>=8' } + dev: true + + /array.prototype.flat/1.3.1: + resolution: + { + integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.22.1 + es-shim-unscopables: 1.0.0 + dev: true + + /array.prototype.flatmap/1.3.1: + resolution: + { + integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.22.1 + es-shim-unscopables: 1.0.0 + dev: true + + /array.prototype.tosorted/1.1.1: + resolution: + { + integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==, + } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.22.1 + es-shim-unscopables: 1.0.0 + get-intrinsic: 1.2.1 + dev: true + + /arraybuffer.prototype.slice/1.0.1: + resolution: + { + integrity: sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==, + } + engines: { node: '>= 0.4' } + dependencies: + array-buffer-byte-length: 1.0.0 + call-bind: 1.0.2 + define-properties: 1.2.0 + get-intrinsic: 1.2.1 + is-array-buffer: 3.0.2 + is-shared-array-buffer: 1.0.2 + dev: true + + /ast-types-flow/0.0.7: + resolution: + { + integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==, + } + dev: true + + /available-typed-arrays/1.0.5: + resolution: + { + integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==, + } + engines: { node: '>= 0.4' } + dev: true + + /axe-core/4.7.2: + resolution: + { + integrity: sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==, + } + engines: { node: '>=4' } + dev: true + + /axobject-query/3.2.1: + resolution: + { + integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==, + } + dependencies: + dequal: 2.0.3 + dev: true + + /babel-plugin-macros/3.1.0: + resolution: + { + integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==, + } + engines: { node: '>=10', npm: '>=6' } + dependencies: + '@babel/runtime': 7.22.6 + cosmiconfig: 7.1.0 + resolve: 1.22.2 + dev: true + + /babel-plugin-polyfill-corejs2/0.4.5_@babel+core@7.22.9: + resolution: + { + integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==, + } + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + dependencies: + '@babel/compat-data': 7.22.9 + '@babel/core': 7.22.9 + '@babel/helper-define-polyfill-provider': 0.4.2_@babel+core@7.22.9 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-polyfill-corejs3/0.8.3_@babel+core@7.22.9: + resolution: + { + integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==, + } + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-define-polyfill-provider': 0.4.2_@babel+core@7.22.9 + core-js-compat: 3.31.1 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-polyfill-regenerator/0.5.2_@babel+core@7.22.9: + resolution: + { + integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==, + } + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-define-polyfill-provider': 0.4.2_@babel+core@7.22.9 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-transform-react-remove-prop-types/0.4.24: + resolution: + { + integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==, + } + dev: true + + /babel-preset-react-app/10.0.1: + resolution: + { + integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==, + } + dependencies: + '@babel/core': 7.22.9 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.22.9 + '@babel/plugin-proposal-decorators': 7.22.7_@babel+core@7.22.9 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.22.9 + '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.22.9 + '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.22.9 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.22.9 + '@babel/plugin-proposal-private-property-in-object': 7.21.11_@babel+core@7.22.9 + '@babel/plugin-transform-flow-strip-types': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-react-display-name': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-runtime': 7.22.9_@babel+core@7.22.9 + '@babel/preset-env': 7.22.9_@babel+core@7.22.9 + '@babel/preset-react': 7.22.5_@babel+core@7.22.9 + '@babel/preset-typescript': 7.22.5_@babel+core@7.22.9 + '@babel/runtime': 7.22.6 + babel-plugin-macros: 3.1.0 + babel-plugin-transform-react-remove-prop-types: 0.4.24 + transitivePeerDependencies: + - supports-color + dev: true + + /balanced-match/1.0.2: + resolution: + { + integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, + } + dev: true + + /brace-expansion/1.1.11: + resolution: + { + integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==, + } + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + dev: true + + /braces/3.0.2: + resolution: + { + integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==, + } + engines: { node: '>=8' } + dependencies: + fill-range: 7.0.1 + dev: true + + /browserslist/4.21.9: + resolution: + { + integrity: sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==, + } + engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } + hasBin: true + dependencies: + caniuse-lite: 1.0.30001517 + electron-to-chromium: 1.4.468 + node-releases: 2.0.13 + update-browserslist-db: 1.0.11_browserslist@4.21.9 + dev: true + + /builtins/5.0.1: + resolution: + { + integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==, + } + dependencies: + semver: 7.5.4 + dev: true + + /call-bind/1.0.2: + resolution: + { + integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==, + } + dependencies: + function-bind: 1.1.1 + get-intrinsic: 1.2.1 + dev: true + + /callsites/3.1.0: + resolution: + { + integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==, + } + engines: { node: '>=6' } + dev: true + + /caniuse-lite/1.0.30001517: + resolution: + { + integrity: sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA==, + } + dev: true + + /chalk/2.4.2: + resolution: + { + integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==, + } + engines: { node: '>=4' } + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + dev: true + + /chalk/4.1.2: + resolution: + { + integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==, + } + engines: { node: '>=10' } + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + dev: true + + /color-convert/1.9.3: + resolution: + { + integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, + } + dependencies: + color-name: 1.1.3 + dev: true + + /color-convert/2.0.1: + resolution: + { + integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==, + } + engines: { node: '>=7.0.0' } + dependencies: + color-name: 1.1.4 + dev: true + + /color-name/1.1.3: + resolution: + { + integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==, + } + dev: true + + /color-name/1.1.4: + resolution: + { + integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, + } + dev: true + + /concat-map/0.0.1: + resolution: + { + integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, + } + dev: true + + /confusing-browser-globals/1.0.11: + resolution: + { + integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==, + } + dev: true + + /convert-source-map/1.9.0: + resolution: + { + integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==, + } + dev: true + + /core-js-compat/3.31.1: + resolution: + { + integrity: sha512-wIDWd2s5/5aJSdpOJHfSibxNODxoGoWOBHt8JSPB41NOE94M7kuTPZCYLOlTtuoXTsBPKobpJ6T+y0SSy5L9SA==, + } + dependencies: + browserslist: 4.21.9 + dev: true + + /cosmiconfig/7.1.0: + resolution: + { + integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==, + } + engines: { node: '>=10' } + dependencies: + '@types/parse-json': 4.0.0 + import-fresh: 3.3.0 + parse-json: 5.2.0 + path-type: 4.0.0 + yaml: 1.10.2 + dev: true + + /cross-spawn/7.0.3: + resolution: + { + integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==, + } + engines: { node: '>= 8' } + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + dev: true + + /csstype/3.1.2: + resolution: + { + integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==, + } + dev: true + + /damerau-levenshtein/1.0.8: + resolution: + { + integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==, + } + dev: true + + /debug/3.2.7: + resolution: + { + integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==, + } + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + dev: true + + /debug/4.3.4: + resolution: + { + integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, + } + engines: { node: '>=6.0' } + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + dev: true + + /deep-is/0.1.4: + resolution: + { + integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==, + } + dev: true + + /define-properties/1.2.0: + resolution: + { + integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==, + } + engines: { node: '>= 0.4' } + dependencies: + has-property-descriptors: 1.0.0 + object-keys: 1.1.1 + dev: true + + /dequal/2.0.3: + resolution: + { + integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==, + } + engines: { node: '>=6' } + dev: true + + /dir-glob/3.0.1: + resolution: + { + integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==, + } + engines: { node: '>=8' } + dependencies: + path-type: 4.0.0 + dev: true + + /doctrine/2.1.0: + resolution: + { + integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==, + } + engines: { node: '>=0.10.0' } + dependencies: + esutils: 2.0.3 + dev: true + + /doctrine/3.0.0: + resolution: + { + integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==, + } + engines: { node: '>=6.0.0' } + dependencies: + esutils: 2.0.3 + dev: true + + /electron-to-chromium/1.4.468: + resolution: + { + integrity: sha512-6M1qyhaJOt7rQtNti1lBA0GwclPH+oKCmsra/hkcWs5INLxfXXD/dtdnaKUYQu/pjOBP/8Osoe4mAcNvvzoFag==, + } + dev: true + + /emoji-regex/9.2.2: + resolution: + { + integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==, + } + dev: true + + /error-ex/1.3.2: + resolution: + { + integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, + } + dependencies: + is-arrayish: 0.2.1 + dev: true + + /es-abstract/1.22.1: + resolution: + { + integrity: sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==, + } + engines: { node: '>= 0.4' } + dependencies: + array-buffer-byte-length: 1.0.0 + arraybuffer.prototype.slice: 1.0.1 + available-typed-arrays: 1.0.5 + call-bind: 1.0.2 + es-set-tostringtag: 2.0.1 + es-to-primitive: 1.2.1 + function.prototype.name: 1.1.5 + get-intrinsic: 1.2.1 + get-symbol-description: 1.0.0 + globalthis: 1.0.3 + gopd: 1.0.1 + has: 1.0.3 + has-property-descriptors: 1.0.0 + has-proto: 1.0.1 + has-symbols: 1.0.3 + internal-slot: 1.0.5 + is-array-buffer: 3.0.2 + is-callable: 1.2.7 + is-negative-zero: 2.0.2 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.2 + is-string: 1.0.7 + is-typed-array: 1.1.12 + is-weakref: 1.0.2 + object-inspect: 1.12.3 + object-keys: 1.1.1 + object.assign: 4.1.4 + regexp.prototype.flags: 1.5.0 + safe-array-concat: 1.0.0 + safe-regex-test: 1.0.0 + string.prototype.trim: 1.2.7 + string.prototype.trimend: 1.0.6 + string.prototype.trimstart: 1.0.6 + typed-array-buffer: 1.0.0 + typed-array-byte-length: 1.0.0 + typed-array-byte-offset: 1.0.0 + typed-array-length: 1.0.4 + unbox-primitive: 1.0.2 + which-typed-array: 1.1.11 + dev: true + + /es-set-tostringtag/2.0.1: + resolution: + { + integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==, + } + engines: { node: '>= 0.4' } + dependencies: + get-intrinsic: 1.2.1 + has: 1.0.3 + has-tostringtag: 1.0.0 + dev: true + + /es-shim-unscopables/1.0.0: + resolution: + { + integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==, + } + dependencies: + has: 1.0.3 + dev: true + + /es-to-primitive/1.2.1: + resolution: + { + integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==, + } + engines: { node: '>= 0.4' } + dependencies: + is-callable: 1.2.7 + is-date-object: 1.0.5 + is-symbol: 1.0.4 + dev: true + + /esbuild/0.18.16: + resolution: + { + integrity: sha512-1xLsOXrDqwdHxyXb/x/SOyg59jpf/SH7YMvU5RNSU7z3TInaASNJWNFJ6iRvLvLETZMasF3d1DdZLg7sgRimRQ==, + } + engines: { node: '>=12' } + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/android-arm': 0.18.16 + '@esbuild/android-arm64': 0.18.16 + '@esbuild/android-x64': 0.18.16 + '@esbuild/darwin-arm64': 0.18.16 + '@esbuild/darwin-x64': 0.18.16 + '@esbuild/freebsd-arm64': 0.18.16 + '@esbuild/freebsd-x64': 0.18.16 + '@esbuild/linux-arm': 0.18.16 + '@esbuild/linux-arm64': 0.18.16 + '@esbuild/linux-ia32': 0.18.16 + '@esbuild/linux-loong64': 0.18.16 + '@esbuild/linux-mips64el': 0.18.16 + '@esbuild/linux-ppc64': 0.18.16 + '@esbuild/linux-riscv64': 0.18.16 + '@esbuild/linux-s390x': 0.18.16 + '@esbuild/linux-x64': 0.18.16 + '@esbuild/netbsd-x64': 0.18.16 + '@esbuild/openbsd-x64': 0.18.16 + '@esbuild/sunos-x64': 0.18.16 + '@esbuild/win32-arm64': 0.18.16 + '@esbuild/win32-ia32': 0.18.16 + '@esbuild/win32-x64': 0.18.16 + dev: true + + /escalade/3.1.1: + resolution: + { + integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==, + } + engines: { node: '>=6' } + dev: true + + /escape-string-regexp/1.0.5: + resolution: + { + integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==, + } + engines: { node: '>=0.8.0' } + dev: true + + /escape-string-regexp/4.0.0: + resolution: + { + integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==, + } + engines: { node: '>=10' } + dev: true + + /eslint-config-prettier/8.8.0_eslint@8.45.0: + resolution: + { + integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==, + } + hasBin: true + peerDependencies: + eslint: '>=7.0.0' + dependencies: + eslint: 8.45.0 + dev: true + + /eslint-config-react-app/7.0.1_cehorzkv5ezvj4qputao2nrtpq: + resolution: + { + integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==, + } + engines: { node: '>=14.0.0' } + peerDependencies: + eslint: ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@babel/core': 7.22.9 + '@babel/eslint-parser': 7.22.9_mxva3tvsh22zo7fr2tqrirzrru + '@rushstack/eslint-patch': 1.3.2 + '@typescript-eslint/eslint-plugin': 5.62.0_tbbci4he2x65aggpp4j2oxxdvm + '@typescript-eslint/parser': 5.62.0_ko3fmmbeyij36muomfgt2u76xu + babel-preset-react-app: 10.0.1 + confusing-browser-globals: 1.0.11 + eslint: 8.45.0 + eslint-plugin-flowtype: 8.0.3_o57qlx2hvlwmdhni4ono35dn54 + eslint-plugin-import: 2.27.5_vdlnholh74uk2lamdhhi4g2qza + eslint-plugin-jest: 25.7.0_i6yykrnbhxgwloever4oq5cyda + eslint-plugin-jsx-a11y: 6.7.1_eslint@8.45.0 + eslint-plugin-react: 7.33.0_eslint@8.45.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.45.0 + eslint-plugin-testing-library: 5.11.0_ko3fmmbeyij36muomfgt2u76xu + typescript: 5.1.6 + transitivePeerDependencies: + - '@babel/plugin-syntax-flow' + - '@babel/plugin-transform-react-jsx' + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - jest + - supports-color + dev: true + + /eslint-config-standard-jsx/11.0.0_zckabqedyvojuo7tqv24azkgyy: + resolution: + { + integrity: sha512-+1EV/R0JxEK1L0NGolAr8Iktm3Rgotx3BKwgaX+eAuSX8D952LULKtjgZD3F+e6SvibONnhLwoTi9DPxN5LvvQ==, + } + peerDependencies: + eslint: ^8.8.0 + eslint-plugin-react: ^7.28.0 + dependencies: + eslint: 8.45.0 + eslint-plugin-react: 7.33.0_eslint@8.45.0 + dev: true + + /eslint-config-standard/17.1.0_ps2l5xafq4bppcbrd7h2jbiwne: + resolution: + { + integrity: sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==, + } + engines: { node: '>=12.0.0' } + peerDependencies: + eslint: ^8.0.1 + eslint-plugin-import: ^2.25.2 + eslint-plugin-n: '^15.0.0 || ^16.0.0 ' + eslint-plugin-promise: ^6.0.0 + dependencies: + eslint: 8.45.0 + eslint-plugin-import: 2.27.5_eslint@8.45.0 + eslint-plugin-n: 15.7.0_eslint@8.45.0 + eslint-plugin-promise: 6.1.1_eslint@8.45.0 + dev: true + + /eslint-import-resolver-node/0.3.7: + resolution: + { + integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==, + } + dependencies: + debug: 3.2.7 + is-core-module: 2.12.1 + resolve: 1.22.2 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-module-utils/2.8.0_etj5dsfllspaklowyfw33flf3u: + resolution: + { + integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==, + } + engines: { node: '>=4' } + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint: + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + dependencies: + debug: 3.2.7 + eslint: 8.45.0 + eslint-import-resolver-node: 0.3.7 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-module-utils/2.8.0_h2tu665zyzp3li3mokdnt2kw74: + resolution: + { + integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==, + } + engines: { node: '>=4' } + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint: + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + dependencies: + '@typescript-eslint/parser': 5.62.0_ko3fmmbeyij36muomfgt2u76xu + debug: 3.2.7 + eslint: 8.45.0 + eslint-import-resolver-node: 0.3.7 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-plugin-es/4.1.0_eslint@8.45.0: + resolution: + { + integrity: sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==, + } + engines: { node: '>=8.10.0' } + peerDependencies: + eslint: '>=4.19.1' + dependencies: + eslint: 8.45.0 + eslint-utils: 2.1.0 + regexpp: 3.2.0 + dev: true + + /eslint-plugin-flowtype/8.0.3_o57qlx2hvlwmdhni4ono35dn54: + resolution: + { + integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==, + } + engines: { node: '>=12.0.0' } + peerDependencies: + '@babel/plugin-syntax-flow': ^7.14.5 + '@babel/plugin-transform-react-jsx': ^7.14.9 + eslint: ^8.1.0 + dependencies: + '@babel/plugin-syntax-flow': 7.22.5_@babel+core@7.22.9 + '@babel/plugin-transform-react-jsx': 7.22.5_@babel+core@7.22.9 + eslint: 8.45.0 + lodash: 4.17.21 + string-natural-compare: 3.0.1 + dev: true + + /eslint-plugin-import/2.27.5_eslint@8.45.0: + resolution: + { + integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==, + } + engines: { node: '>=4' } + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + dependencies: + array-includes: 3.1.6 + array.prototype.flat: 1.3.1 + array.prototype.flatmap: 1.3.1 + debug: 3.2.7 + doctrine: 2.1.0 + eslint: 8.45.0 + eslint-import-resolver-node: 0.3.7 + eslint-module-utils: 2.8.0_etj5dsfllspaklowyfw33flf3u + has: 1.0.3 + is-core-module: 2.12.1 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.values: 1.1.6 + resolve: 1.22.2 + semver: 6.3.1 + tsconfig-paths: 3.14.2 + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + dev: true + + /eslint-plugin-import/2.27.5_vdlnholh74uk2lamdhhi4g2qza: + resolution: + { + integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==, + } + engines: { node: '>=4' } + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + dependencies: + '@typescript-eslint/parser': 5.62.0_ko3fmmbeyij36muomfgt2u76xu + array-includes: 3.1.6 + array.prototype.flat: 1.3.1 + array.prototype.flatmap: 1.3.1 + debug: 3.2.7 + doctrine: 2.1.0 + eslint: 8.45.0 + eslint-import-resolver-node: 0.3.7 + eslint-module-utils: 2.8.0_h2tu665zyzp3li3mokdnt2kw74 + has: 1.0.3 + is-core-module: 2.12.1 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.values: 1.1.6 + resolve: 1.22.2 + semver: 6.3.1 + tsconfig-paths: 3.14.2 + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + dev: true + + /eslint-plugin-jest/25.7.0_i6yykrnbhxgwloever4oq5cyda: + resolution: + { + integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==, + } + engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } + peerDependencies: + '@typescript-eslint/eslint-plugin': ^4.0.0 || ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + jest: '*' + peerDependenciesMeta: + '@typescript-eslint/eslint-plugin': + optional: true + jest: + optional: true + dependencies: + '@typescript-eslint/eslint-plugin': 5.62.0_tbbci4he2x65aggpp4j2oxxdvm + '@typescript-eslint/experimental-utils': 5.62.0_ko3fmmbeyij36muomfgt2u76xu + eslint: 8.45.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /eslint-plugin-jsx-a11y/6.7.1_eslint@8.45.0: + resolution: + { + integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==, + } + engines: { node: '>=4.0' } + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + '@babel/runtime': 7.22.6 + aria-query: 5.3.0 + array-includes: 3.1.6 + array.prototype.flatmap: 1.3.1 + ast-types-flow: 0.0.7 + axe-core: 4.7.2 + axobject-query: 3.2.1 + damerau-levenshtein: 1.0.8 + emoji-regex: 9.2.2 + eslint: 8.45.0 + has: 1.0.3 + jsx-ast-utils: 3.3.4 + language-tags: 1.0.5 + minimatch: 3.1.2 + object.entries: 1.1.6 + object.fromentries: 2.0.6 + semver: 6.3.1 + dev: true + + /eslint-plugin-n/15.7.0_eslint@8.45.0: + resolution: + { + integrity: sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==, + } + engines: { node: '>=12.22.0' } + peerDependencies: + eslint: '>=7.0.0' + dependencies: + builtins: 5.0.1 + eslint: 8.45.0 + eslint-plugin-es: 4.1.0_eslint@8.45.0 + eslint-utils: 3.0.0_eslint@8.45.0 + ignore: 5.2.4 + is-core-module: 2.12.1 + minimatch: 3.1.2 + resolve: 1.22.2 + semver: 7.5.4 + dev: true + + /eslint-plugin-promise/6.1.1_eslint@8.45.0: + resolution: + { + integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + dependencies: + eslint: 8.45.0 + dev: true + + /eslint-plugin-react-hooks/4.6.0_eslint@8.45.0: + resolution: + { + integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==, + } + engines: { node: '>=10' } + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + dependencies: + eslint: 8.45.0 + dev: true + + /eslint-plugin-react-refresh/0.4.3_eslint@8.45.0: + resolution: + { + integrity: sha512-Hh0wv8bUNY877+sI0BlCUlsS0TYYQqvzEwJsJJPM2WF4RnTStSnSR3zdJYa2nPOJgg3UghXi54lVyMSmpCalzA==, + } + peerDependencies: + eslint: '>=7' + dependencies: + eslint: 8.45.0 + dev: true + + /eslint-plugin-react/7.33.0_eslint@8.45.0: + resolution: + { + integrity: sha512-qewL/8P34WkY8jAqdQxsiL82pDUeT7nhs8IsuXgfgnsEloKCT4miAV9N9kGtx7/KM9NH/NCGUE7Edt9iGxLXFw==, + } + engines: { node: '>=4' } + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + array-includes: 3.1.6 + array.prototype.flatmap: 1.3.1 + array.prototype.tosorted: 1.1.1 + doctrine: 2.1.0 + eslint: 8.45.0 + estraverse: 5.3.0 + jsx-ast-utils: 3.3.4 + minimatch: 3.1.2 + object.entries: 1.1.6 + object.fromentries: 2.0.6 + object.hasown: 1.1.2 + object.values: 1.1.6 + prop-types: 15.8.1 + resolve: 2.0.0-next.4 + semver: 6.3.1 + string.prototype.matchall: 4.0.8 + dev: true + + /eslint-plugin-testing-library/5.11.0_ko3fmmbeyij36muomfgt2u76xu: + resolution: + { + integrity: sha512-ELY7Gefo+61OfXKlQeXNIDVVLPcvKTeiQOoMZG9TeuWa7Ln4dUNRv8JdRWBQI9Mbb427XGlVB1aa1QPZxBJM8Q==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6' } + peerDependencies: + eslint: ^7.5.0 || ^8.0.0 + dependencies: + '@typescript-eslint/utils': 5.62.0_ko3fmmbeyij36muomfgt2u76xu + eslint: 8.45.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /eslint-scope/5.1.1: + resolution: + { + integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==, + } + engines: { node: '>=8.0.0' } + dependencies: + esrecurse: 4.3.0 + estraverse: 4.3.0 + dev: true + + /eslint-scope/7.2.1: + resolution: + { + integrity: sha512-CvefSOsDdaYYvxChovdrPo/ZGt8d5lrJWleAc1diXRKhHGiTYEI26cvo8Kle/wGnsizoCJjK73FMg1/IkIwiNA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + dev: true + + /eslint-utils/2.1.0: + resolution: + { + integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==, + } + engines: { node: '>=6' } + dependencies: + eslint-visitor-keys: 1.3.0 + dev: true + + /eslint-utils/3.0.0_eslint@8.45.0: + resolution: + { + integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==, + } + engines: { node: ^10.0.0 || ^12.0.0 || >= 14.0.0 } + peerDependencies: + eslint: '>=5' + dependencies: + eslint: 8.45.0 + eslint-visitor-keys: 2.1.0 + dev: true + + /eslint-visitor-keys/1.3.0: + resolution: + { + integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==, + } + engines: { node: '>=4' } + dev: true + + /eslint-visitor-keys/2.1.0: + resolution: + { + integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==, + } + engines: { node: '>=10' } + dev: true + + /eslint-visitor-keys/3.4.1: + resolution: + { + integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dev: true + + /eslint/8.45.0: + resolution: + { + integrity: sha512-pd8KSxiQpdYRfYa9Wufvdoct3ZPQQuVuU5O6scNgMuOMYuxvH0IGaYK0wUFjo4UYYQQCUndlXiMbnxopwvvTiw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + hasBin: true + dependencies: + '@eslint-community/eslint-utils': 4.4.0_eslint@8.45.0 + '@eslint-community/regexpp': 4.6.0 + '@eslint/eslintrc': 2.1.0 + '@eslint/js': 8.44.0 + '@humanwhocodes/config-array': 0.11.10 + '@humanwhocodes/module-importer': 1.0.1 + '@nodelib/fs.walk': 1.2.8 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4 + doctrine: 3.0.0 + escape-string-regexp: 4.0.0 + eslint-scope: 7.2.1 + eslint-visitor-keys: 3.4.1 + espree: 9.6.1 + esquery: 1.5.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + find-up: 5.0.0 + glob-parent: 6.0.2 + globals: 13.20.0 + graphemer: 1.4.0 + ignore: 5.2.4 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + is-path-inside: 3.0.3 + js-yaml: 4.1.0 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.3 + strip-ansi: 6.0.1 + text-table: 0.2.0 + transitivePeerDependencies: + - supports-color + dev: true + + /espree/9.6.1: + resolution: + { + integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + acorn: 8.10.0 + acorn-jsx: 5.3.2_acorn@8.10.0 + eslint-visitor-keys: 3.4.1 + dev: true + + /esquery/1.5.0: + resolution: + { + integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==, + } + engines: { node: '>=0.10' } + dependencies: + estraverse: 5.3.0 + dev: true + + /esrecurse/4.3.0: + resolution: + { + integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==, + } + engines: { node: '>=4.0' } + dependencies: + estraverse: 5.3.0 + dev: true + + /estraverse/4.3.0: + resolution: + { + integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==, + } + engines: { node: '>=4.0' } + dev: true + + /estraverse/5.3.0: + resolution: + { + integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==, + } + engines: { node: '>=4.0' } + dev: true + + /estree-walker/2.0.2: + resolution: + { + integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, + } + dev: true + + /esutils/2.0.3: + resolution: + { + integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==, + } + engines: { node: '>=0.10.0' } + dev: true + + /fast-deep-equal/3.1.3: + resolution: + { + integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, + } + dev: true + + /fast-glob/3.3.1: + resolution: + { + integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==, + } + engines: { node: '>=8.6.0' } + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + dev: true + + /fast-json-stable-stringify/2.1.0: + resolution: + { + integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==, + } + dev: true + + /fast-levenshtein/2.0.6: + resolution: + { + integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==, + } + dev: true + + /fastq/1.15.0: + resolution: + { + integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==, + } + dependencies: + reusify: 1.0.4 + dev: true + + /file-entry-cache/6.0.1: + resolution: + { + integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==, + } + engines: { node: ^10.12.0 || >=12.0.0 } + dependencies: + flat-cache: 3.0.4 + dev: true + + /fill-range/7.0.1: + resolution: + { + integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==, + } + engines: { node: '>=8' } + dependencies: + to-regex-range: 5.0.1 + dev: true + + /find-up/3.0.0: + resolution: + { + integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==, + } + engines: { node: '>=6' } + dependencies: + locate-path: 3.0.0 + dev: true + + /find-up/5.0.0: + resolution: + { + integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==, + } + engines: { node: '>=10' } + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + dev: true + + /flat-cache/3.0.4: + resolution: + { + integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==, + } + engines: { node: ^10.12.0 || >=12.0.0 } + dependencies: + flatted: 3.2.7 + rimraf: 3.0.2 + dev: true + + /flatted/3.2.7: + resolution: + { + integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==, + } + dev: true + + /for-each/0.3.3: + resolution: + { + integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==, + } + dependencies: + is-callable: 1.2.7 + dev: true + + /fs.realpath/1.0.0: + resolution: + { + integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, + } + dev: true + + /fsevents/2.3.2: + resolution: + { + integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==, + } + engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /function-bind/1.1.1: + resolution: + { + integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==, + } + dev: true + + /function.prototype.name/1.1.5: + resolution: + { + integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.22.1 + functions-have-names: 1.2.3 + dev: true + + /functions-have-names/1.2.3: + resolution: + { + integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, + } + dev: true + + /gensync/1.0.0-beta.2: + resolution: + { + integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==, + } + engines: { node: '>=6.9.0' } + dev: true + + /get-intrinsic/1.2.1: + resolution: + { + integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==, + } + dependencies: + function-bind: 1.1.1 + has: 1.0.3 + has-proto: 1.0.1 + has-symbols: 1.0.3 + dev: true + + /get-stdin/8.0.0: + resolution: + { + integrity: sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==, + } + engines: { node: '>=10' } + dev: true + + /get-symbol-description/1.0.0: + resolution: + { + integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + dev: true + + /glob-parent/5.1.2: + resolution: + { + integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, + } + engines: { node: '>= 6' } + dependencies: + is-glob: 4.0.3 + dev: true + + /glob-parent/6.0.2: + resolution: + { + integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==, + } + engines: { node: '>=10.13.0' } + dependencies: + is-glob: 4.0.3 + dev: true + + /glob/7.2.3: + resolution: + { + integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==, + } + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + + /globals/11.12.0: + resolution: + { + integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==, + } + engines: { node: '>=4' } + dev: true + + /globals/13.20.0: + resolution: + { + integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==, + } + engines: { node: '>=8' } + dependencies: + type-fest: 0.20.2 + dev: true + + /globalthis/1.0.3: + resolution: + { + integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==, + } + engines: { node: '>= 0.4' } + dependencies: + define-properties: 1.2.0 + dev: true + + /globby/11.1.0: + resolution: + { + integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==, + } + engines: { node: '>=10' } + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.3.1 + ignore: 5.2.4 + merge2: 1.4.1 + slash: 3.0.0 + dev: true + + /gopd/1.0.1: + resolution: + { + integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, + } + dependencies: + get-intrinsic: 1.2.1 + dev: true + + /graceful-fs/4.2.11: + resolution: + { + integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==, + } + dev: true + + /graphemer/1.4.0: + resolution: + { + integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==, + } + dev: true + + /has-bigints/1.0.2: + resolution: + { + integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==, + } + dev: true + + /has-flag/3.0.0: + resolution: + { + integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, + } + engines: { node: '>=4' } + dev: true + + /has-flag/4.0.0: + resolution: + { + integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==, + } + engines: { node: '>=8' } + dev: true + + /has-property-descriptors/1.0.0: + resolution: + { + integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==, + } + dependencies: + get-intrinsic: 1.2.1 + dev: true + + /has-proto/1.0.1: + resolution: + { + integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==, + } + engines: { node: '>= 0.4' } + dev: true + + /has-symbols/1.0.3: + resolution: + { + integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==, + } + engines: { node: '>= 0.4' } + dev: true + + /has-tostringtag/1.0.0: + resolution: + { + integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==, + } + engines: { node: '>= 0.4' } + dependencies: + has-symbols: 1.0.3 + dev: true + + /has/1.0.3: + resolution: + { + integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==, + } + engines: { node: '>= 0.4.0' } + dependencies: + function-bind: 1.1.1 + dev: true + + /ignore/5.2.4: + resolution: + { + integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==, + } + engines: { node: '>= 4' } + dev: true + + /import-fresh/3.3.0: + resolution: + { + integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==, + } + engines: { node: '>=6' } + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + dev: true + + /imurmurhash/0.1.4: + resolution: + { + integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==, + } + engines: { node: '>=0.8.19' } + dev: true + + /inflight/1.0.6: + resolution: + { + integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==, + } + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + dev: true + + /inherits/2.0.4: + resolution: + { + integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, + } + dev: true + + /internal-slot/1.0.5: + resolution: + { + integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==, + } + engines: { node: '>= 0.4' } + dependencies: + get-intrinsic: 1.2.1 + has: 1.0.3 + side-channel: 1.0.4 + dev: true + + /is-array-buffer/3.0.2: + resolution: + { + integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==, + } + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + is-typed-array: 1.1.12 + dev: true + + /is-arrayish/0.2.1: + resolution: + { + integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, + } + dev: true + + /is-bigint/1.0.4: + resolution: + { + integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==, + } + dependencies: + has-bigints: 1.0.2 + dev: true + + /is-boolean-object/1.1.2: + resolution: + { + integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-callable/1.2.7: + resolution: + { + integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==, + } + engines: { node: '>= 0.4' } + dev: true + + /is-core-module/2.12.1: + resolution: + { + integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==, + } + dependencies: + has: 1.0.3 + dev: true + + /is-date-object/1.0.5: + resolution: + { + integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==, + } + engines: { node: '>= 0.4' } + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-extglob/2.1.1: + resolution: + { + integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, + } + engines: { node: '>=0.10.0' } + dev: true + + /is-glob/4.0.3: + resolution: + { + integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, + } + engines: { node: '>=0.10.0' } + dependencies: + is-extglob: 2.1.1 + dev: true + + /is-negative-zero/2.0.2: + resolution: + { + integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==, + } + engines: { node: '>= 0.4' } + dev: true + + /is-number-object/1.0.7: + resolution: + { + integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==, + } + engines: { node: '>= 0.4' } + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-number/7.0.0: + resolution: + { + integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, + } + engines: { node: '>=0.12.0' } + dev: true + + /is-path-inside/3.0.3: + resolution: + { + integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==, + } + engines: { node: '>=8' } + dev: true + + /is-regex/1.1.4: + resolution: + { + integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-shared-array-buffer/1.0.2: + resolution: + { + integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==, + } + dependencies: + call-bind: 1.0.2 + dev: true + + /is-string/1.0.7: + resolution: + { + integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==, + } + engines: { node: '>= 0.4' } + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-symbol/1.0.4: + resolution: + { + integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==, + } + engines: { node: '>= 0.4' } + dependencies: + has-symbols: 1.0.3 + dev: true + + /is-typed-array/1.1.12: + resolution: + { + integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==, + } + engines: { node: '>= 0.4' } + dependencies: + which-typed-array: 1.1.11 + dev: true + + /is-weakref/1.0.2: + resolution: + { + integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==, + } + dependencies: + call-bind: 1.0.2 + dev: true + + /isarray/2.0.5: + resolution: + { + integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==, + } + dev: true + + /isexe/2.0.0: + resolution: + { + integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, + } + dev: true + + /js-tokens/4.0.0: + resolution: + { + integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, + } + + /js-yaml/4.1.0: + resolution: + { + integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, + } + hasBin: true + dependencies: + argparse: 2.0.1 + dev: true + + /jsesc/0.5.0: + resolution: + { + integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==, + } + hasBin: true + dev: true + + /jsesc/2.5.2: + resolution: + { + integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==, + } + engines: { node: '>=4' } + hasBin: true + dev: true + + /json-parse-better-errors/1.0.2: + resolution: + { + integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==, + } + dev: true + + /json-parse-even-better-errors/2.3.1: + resolution: + { + integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==, + } + dev: true + + /json-schema-traverse/0.4.1: + resolution: + { + integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==, + } + dev: true + + /json-stable-stringify-without-jsonify/1.0.1: + resolution: + { + integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==, + } + dev: true + + /json5/1.0.2: + resolution: + { + integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==, + } + hasBin: true + dependencies: + minimist: 1.2.8 + dev: true + + /json5/2.2.3: + resolution: + { + integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==, + } + engines: { node: '>=6' } + hasBin: true + dev: true + + /jsx-ast-utils/3.3.4: + resolution: + { + integrity: sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==, + } + engines: { node: '>=4.0' } + dependencies: + array-includes: 3.1.6 + array.prototype.flat: 1.3.1 + object.assign: 4.1.4 + object.values: 1.1.6 + dev: true + + /language-subtag-registry/0.3.22: + resolution: + { + integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==, + } + dev: true + + /language-tags/1.0.5: + resolution: + { + integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==, + } + dependencies: + language-subtag-registry: 0.3.22 + dev: true + + /levn/0.4.1: + resolution: + { + integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==, + } + engines: { node: '>= 0.8.0' } + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + dev: true + + /lines-and-columns/1.2.4: + resolution: + { + integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, + } + dev: true + + /load-json-file/5.3.0: + resolution: + { + integrity: sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==, + } + engines: { node: '>=6' } + dependencies: + graceful-fs: 4.2.11 + parse-json: 4.0.0 + pify: 4.0.1 + strip-bom: 3.0.0 + type-fest: 0.3.1 + dev: true + + /locate-path/3.0.0: + resolution: + { + integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==, + } + engines: { node: '>=6' } + dependencies: + p-locate: 3.0.0 + path-exists: 3.0.0 + dev: true + + /locate-path/6.0.0: + resolution: + { + integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==, + } + engines: { node: '>=10' } + dependencies: + p-locate: 5.0.0 + dev: true + + /lodash.debounce/4.0.8: + resolution: + { + integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==, + } + dev: true + + /lodash.merge/4.6.2: + resolution: + { + integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==, + } + dev: true + + /lodash/4.17.21: + resolution: + { + integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, + } + dev: true + + /loose-envify/1.4.0: + resolution: + { + integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==, + } + hasBin: true + dependencies: + js-tokens: 4.0.0 + + /lru-cache/5.1.1: + resolution: + { + integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, + } + dependencies: + yallist: 3.1.1 + dev: true + + /lru-cache/6.0.0: + resolution: + { + integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==, + } + engines: { node: '>=10' } + dependencies: + yallist: 4.0.0 + dev: true + + /merge2/1.4.1: + resolution: + { + integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, + } + engines: { node: '>= 8' } + dev: true + + /micromatch/4.0.5: + resolution: + { + integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==, + } + engines: { node: '>=8.6' } + dependencies: + braces: 3.0.2 + picomatch: 2.3.1 + dev: true + + /minimatch/3.1.2: + resolution: + { + integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==, + } + dependencies: + brace-expansion: 1.1.11 + dev: true + + /minimist/1.2.8: + resolution: + { + integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==, + } + dev: true + + /ms/2.1.2: + resolution: + { + integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, + } + dev: true + + /nanoid/3.3.6: + resolution: + { + integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==, + } + engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } + hasBin: true + dev: true + + /natural-compare-lite/1.4.0: + resolution: + { + integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==, + } + dev: true + + /natural-compare/1.4.0: + resolution: + { + integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==, + } + dev: true + + /node-releases/2.0.13: + resolution: + { + integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==, + } + dev: true + + /object-assign/4.1.1: + resolution: + { + integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==, + } + engines: { node: '>=0.10.0' } + dev: true + + /object-inspect/1.12.3: + resolution: + { + integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==, + } + dev: true + + /object-keys/1.1.1: + resolution: + { + integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==, + } + engines: { node: '>= 0.4' } + dev: true + + /object.assign/4.1.4: + resolution: + { + integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + has-symbols: 1.0.3 + object-keys: 1.1.1 + dev: true + + /object.entries/1.1.6: + resolution: + { + integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.22.1 + dev: true + + /object.fromentries/2.0.6: + resolution: + { + integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.22.1 + dev: true + + /object.hasown/1.1.2: + resolution: + { + integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==, + } + dependencies: + define-properties: 1.2.0 + es-abstract: 1.22.1 + dev: true + + /object.values/1.1.6: + resolution: + { + integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.22.1 + dev: true + + /once/1.4.0: + resolution: + { + integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==, + } + dependencies: + wrappy: 1.0.2 + dev: true + + /optionator/0.9.3: + resolution: + { + integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==, + } + engines: { node: '>= 0.8.0' } + dependencies: + '@aashutoshrathi/word-wrap': 1.2.6 + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + dev: true + + /p-limit/2.3.0: + resolution: + { + integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==, + } + engines: { node: '>=6' } + dependencies: + p-try: 2.2.0 + dev: true + + /p-limit/3.1.0: + resolution: + { + integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==, + } + engines: { node: '>=10' } + dependencies: + yocto-queue: 0.1.0 + dev: true + + /p-locate/3.0.0: + resolution: + { + integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==, + } + engines: { node: '>=6' } + dependencies: + p-limit: 2.3.0 + dev: true + + /p-locate/5.0.0: + resolution: + { + integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==, + } + engines: { node: '>=10' } + dependencies: + p-limit: 3.1.0 + dev: true + + /p-try/2.2.0: + resolution: + { + integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, + } + engines: { node: '>=6' } + dev: true + + /parent-module/1.0.1: + resolution: + { + integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==, + } + engines: { node: '>=6' } + dependencies: + callsites: 3.1.0 + dev: true + + /parse-json/4.0.0: + resolution: + { + integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==, + } + engines: { node: '>=4' } + dependencies: + error-ex: 1.3.2 + json-parse-better-errors: 1.0.2 + dev: true + + /parse-json/5.2.0: + resolution: + { + integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==, + } + engines: { node: '>=8' } + dependencies: + '@babel/code-frame': 7.22.5 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + dev: true + + /path-exists/3.0.0: + resolution: + { + integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==, + } + engines: { node: '>=4' } + dev: true + + /path-exists/4.0.0: + resolution: + { + integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, + } + engines: { node: '>=8' } + dev: true + + /path-is-absolute/1.0.1: + resolution: + { + integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==, + } + engines: { node: '>=0.10.0' } + dev: true + + /path-key/3.1.1: + resolution: + { + integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, + } + engines: { node: '>=8' } + dev: true + + /path-parse/1.0.7: + resolution: + { + integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, + } + dev: true + + /path-type/4.0.0: + resolution: + { + integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==, + } + engines: { node: '>=8' } + dev: true + + /picocolors/1.0.0: + resolution: + { + integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, + } + dev: true + + /picomatch/2.3.1: + resolution: + { + integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, + } + engines: { node: '>=8.6' } + dev: true + + /pify/4.0.1: + resolution: + { + integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==, + } + engines: { node: '>=6' } + dev: true + + /pkg-conf/3.1.0: + resolution: + { + integrity: sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==, + } + engines: { node: '>=6' } + dependencies: + find-up: 3.0.0 + load-json-file: 5.3.0 + dev: true + + /postcss/8.4.27: + resolution: + { + integrity: sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==, + } + engines: { node: ^10 || ^12 || >=14 } + dependencies: + nanoid: 3.3.6 + picocolors: 1.0.0 + source-map-js: 1.0.2 + dev: true + + /prelude-ls/1.2.1: + resolution: + { + integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==, + } + engines: { node: '>= 0.8.0' } + dev: true + + /prettier/3.0.0: + resolution: + { + integrity: sha512-zBf5eHpwHOGPC47h0zrPyNn+eAEIdEzfywMoYn2XPi0P44Zp0tSq64rq0xAREh4auw2cJZHo9QUob+NqCQky4g==, + } + engines: { node: '>=14' } + hasBin: true + dev: true + + /prop-types/15.8.1: + resolution: + { + integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==, + } + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + react-is: 16.13.1 + dev: true + + /punycode/2.3.0: + resolution: + { + integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==, + } + engines: { node: '>=6' } + dev: true + + /queue-microtask/1.2.3: + resolution: + { + integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, + } + dev: true + + /react-dom/18.2.0_react@18.2.0: + resolution: + { + integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==, + } + peerDependencies: + react: ^18.2.0 + dependencies: + loose-envify: 1.4.0 + react: 18.2.0 + scheduler: 0.23.0 + dev: false + + /react-is/16.13.1: + resolution: + { + integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==, + } + dev: true + + /react/18.2.0: + resolution: + { + integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==, + } + engines: { node: '>=0.10.0' } + dependencies: + loose-envify: 1.4.0 + dev: false + + /regenerate-unicode-properties/10.1.0: + resolution: + { + integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==, + } + engines: { node: '>=4' } + dependencies: + regenerate: 1.4.2 + dev: true + + /regenerate/1.4.2: + resolution: + { + integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==, + } + dev: true + + /regenerator-runtime/0.13.11: + resolution: + { + integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==, + } + dev: true + + /regenerator-transform/0.15.1: + resolution: + { + integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==, + } + dependencies: + '@babel/runtime': 7.22.6 + dev: true + + /regexp.prototype.flags/1.5.0: + resolution: + { + integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + functions-have-names: 1.2.3 + dev: true + + /regexpp/3.2.0: + resolution: + { + integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==, + } + engines: { node: '>=8' } + dev: true + + /regexpu-core/5.3.2: + resolution: + { + integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==, + } + engines: { node: '>=4' } + dependencies: + '@babel/regjsgen': 0.8.0 + regenerate: 1.4.2 + regenerate-unicode-properties: 10.1.0 + regjsparser: 0.9.1 + unicode-match-property-ecmascript: 2.0.0 + unicode-match-property-value-ecmascript: 2.1.0 + dev: true + + /regjsparser/0.9.1: + resolution: + { + integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==, + } + hasBin: true + dependencies: + jsesc: 0.5.0 + dev: true + + /resolve-from/4.0.0: + resolution: + { + integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==, + } + engines: { node: '>=4' } + dev: true + + /resolve/1.22.2: + resolution: + { + integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==, + } + hasBin: true + dependencies: + is-core-module: 2.12.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: true + + /resolve/2.0.0-next.4: + resolution: + { + integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==, + } + hasBin: true + dependencies: + is-core-module: 2.12.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: true + + /reusify/1.0.4: + resolution: + { + integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==, + } + engines: { iojs: '>=1.0.0', node: '>=0.10.0' } + dev: true + + /rimraf/3.0.2: + resolution: + { + integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==, + } + hasBin: true + dependencies: + glob: 7.2.3 + dev: true + + /rollup/2.79.1: + resolution: + { + integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==, + } + engines: { node: '>=10.0.0' } + hasBin: true + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /rollup/3.26.3: + resolution: + { + integrity: sha512-7Tin0C8l86TkpcMtXvQu6saWH93nhG3dGQ1/+l5V2TDMceTxO7kDiK6GzbfLWNNxqJXm591PcEZUozZm51ogwQ==, + } + engines: { node: '>=14.18.0', npm: '>=8.0.0' } + hasBin: true + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /run-parallel/1.2.0: + resolution: + { + integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, + } + dependencies: + queue-microtask: 1.2.3 + dev: true + + /safe-array-concat/1.0.0: + resolution: + { + integrity: sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==, + } + engines: { node: '>=0.4' } + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + has-symbols: 1.0.3 + isarray: 2.0.5 + dev: true + + /safe-regex-test/1.0.0: + resolution: + { + integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==, + } + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + is-regex: 1.1.4 + dev: true + + /scheduler/0.23.0: + resolution: + { + integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==, + } + dependencies: + loose-envify: 1.4.0 + dev: false + + /semver/6.3.1: + resolution: + { + integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, + } + hasBin: true + dev: true + + /semver/7.5.4: + resolution: + { + integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==, + } + engines: { node: '>=10' } + hasBin: true + dependencies: + lru-cache: 6.0.0 + dev: true + + /shebang-command/2.0.0: + resolution: + { + integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, + } + engines: { node: '>=8' } + dependencies: + shebang-regex: 3.0.0 + dev: true + + /shebang-regex/3.0.0: + resolution: + { + integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, + } + engines: { node: '>=8' } + dev: true + + /side-channel/1.0.4: + resolution: + { + integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==, + } + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + object-inspect: 1.12.3 + dev: true + + /slash/3.0.0: + resolution: + { + integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==, + } + engines: { node: '>=8' } + dev: true + + /source-map-js/1.0.2: + resolution: + { + integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==, + } + engines: { node: '>=0.10.0' } + dev: true + + /standard-engine/15.1.0: + resolution: + { + integrity: sha512-VHysfoyxFu/ukT+9v49d4BRXIokFRZuH3z1VRxzFArZdjSCFpro6rEIU3ji7e4AoAtuSfKBkiOmsrDqKW5ZSRw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + get-stdin: 8.0.0 + minimist: 1.2.8 + pkg-conf: 3.1.0 + xdg-basedir: 4.0.0 + dev: true + + /standard/17.1.0: + resolution: + { + integrity: sha512-jaDqlNSzLtWYW4lvQmU0EnxWMUGQiwHasZl5ZEIwx3S/ijZDjZOzs1y1QqKwKs5vqnFpGtizo4NOYX2s0Voq/g==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + hasBin: true + dependencies: + eslint: 8.45.0 + eslint-config-standard: 17.1.0_ps2l5xafq4bppcbrd7h2jbiwne + eslint-config-standard-jsx: 11.0.0_zckabqedyvojuo7tqv24azkgyy + eslint-plugin-import: 2.27.5_eslint@8.45.0 + eslint-plugin-n: 15.7.0_eslint@8.45.0 + eslint-plugin-promise: 6.1.1_eslint@8.45.0 + eslint-plugin-react: 7.33.0_eslint@8.45.0 + standard-engine: 15.1.0 + version-guard: 1.1.1 + transitivePeerDependencies: + - '@typescript-eslint/parser' + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + dev: true + + /string-natural-compare/3.0.1: + resolution: + { + integrity: sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==, + } + dev: true + + /string.prototype.matchall/4.0.8: + resolution: + { + integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==, + } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.22.1 + get-intrinsic: 1.2.1 + has-symbols: 1.0.3 + internal-slot: 1.0.5 + regexp.prototype.flags: 1.5.0 + side-channel: 1.0.4 + dev: true + + /string.prototype.trim/1.2.7: + resolution: + { + integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.22.1 + dev: true + + /string.prototype.trimend/1.0.6: + resolution: + { + integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==, + } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.22.1 + dev: true + + /string.prototype.trimstart/1.0.6: + resolution: + { + integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==, + } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.22.1 + dev: true + + /strip-ansi/6.0.1: + resolution: + { + integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, + } + engines: { node: '>=8' } + dependencies: + ansi-regex: 5.0.1 + dev: true + + /strip-bom/3.0.0: + resolution: + { + integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==, + } + engines: { node: '>=4' } + dev: true + + /strip-json-comments/3.1.1: + resolution: + { + integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==, + } + engines: { node: '>=8' } + dev: true + + /supports-color/5.5.0: + resolution: + { + integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, + } + engines: { node: '>=4' } + dependencies: + has-flag: 3.0.0 + dev: true + + /supports-color/7.2.0: + resolution: + { + integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==, + } + engines: { node: '>=8' } + dependencies: + has-flag: 4.0.0 + dev: true + + /supports-preserve-symlinks-flag/1.0.0: + resolution: + { + integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, + } + engines: { node: '>= 0.4' } + dev: true + + /text-table/0.2.0: + resolution: + { + integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==, + } + dev: true + + /to-fast-properties/2.0.0: + resolution: + { + integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==, + } + engines: { node: '>=4' } + dev: true + + /to-regex-range/5.0.1: + resolution: + { + integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, + } + engines: { node: '>=8.0' } + dependencies: + is-number: 7.0.0 + dev: true + + /tsconfig-paths/3.14.2: + resolution: + { + integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==, + } + dependencies: + '@types/json5': 0.0.29 + json5: 1.0.2 + minimist: 1.2.8 + strip-bom: 3.0.0 + dev: true + + /tslib/1.14.1: + resolution: + { + integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==, + } + dev: true + + /tsutils/3.21.0_typescript@5.1.6: + resolution: + { + integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==, + } + engines: { node: '>= 6' } + peerDependencies: + typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' + dependencies: + tslib: 1.14.1 + typescript: 5.1.6 + dev: true + + /type-check/0.4.0: + resolution: + { + integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==, + } + engines: { node: '>= 0.8.0' } + dependencies: + prelude-ls: 1.2.1 + dev: true + + /type-fest/0.20.2: + resolution: + { + integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==, + } + engines: { node: '>=10' } + dev: true + + /type-fest/0.3.1: + resolution: + { + integrity: sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==, + } + engines: { node: '>=6' } + dev: true + + /typed-array-buffer/1.0.0: + resolution: + { + integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + is-typed-array: 1.1.12 + dev: true + + /typed-array-byte-length/1.0.0: + resolution: + { + integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + for-each: 0.3.3 + has-proto: 1.0.1 + is-typed-array: 1.1.12 + dev: true + + /typed-array-byte-offset/1.0.0: + resolution: + { + integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==, + } + engines: { node: '>= 0.4' } + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.2 + for-each: 0.3.3 + has-proto: 1.0.1 + is-typed-array: 1.1.12 + dev: true + + /typed-array-length/1.0.4: + resolution: + { + integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==, + } + dependencies: + call-bind: 1.0.2 + for-each: 0.3.3 + is-typed-array: 1.1.12 + dev: true + + /typescript/5.1.6: + resolution: + { + integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==, + } + engines: { node: '>=14.17' } + hasBin: true + dev: true + + /unbox-primitive/1.0.2: + resolution: + { + integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, + } + dependencies: + call-bind: 1.0.2 + has-bigints: 1.0.2 + has-symbols: 1.0.3 + which-boxed-primitive: 1.0.2 + dev: true + + /unicode-canonical-property-names-ecmascript/2.0.0: + resolution: + { + integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==, + } + engines: { node: '>=4' } + dev: true + + /unicode-match-property-ecmascript/2.0.0: + resolution: + { + integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==, + } + engines: { node: '>=4' } + dependencies: + unicode-canonical-property-names-ecmascript: 2.0.0 + unicode-property-aliases-ecmascript: 2.1.0 + dev: true + + /unicode-match-property-value-ecmascript/2.1.0: + resolution: + { + integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==, + } + engines: { node: '>=4' } + dev: true + + /unicode-property-aliases-ecmascript/2.1.0: + resolution: + { + integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==, + } + engines: { node: '>=4' } + dev: true + + /update-browserslist-db/1.0.11_browserslist@4.21.9: + resolution: + { + integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==, + } + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + dependencies: + browserslist: 4.21.9 + escalade: 3.1.1 + picocolors: 1.0.0 + dev: true + + /uri-js/4.4.1: + resolution: + { + integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, + } + dependencies: + punycode: 2.3.0 + dev: true + + /version-guard/1.1.1: + resolution: + { + integrity: sha512-MGQLX89UxmYHgDvcXyjBI0cbmoW+t/dANDppNPrno64rYr8nH4SHSuElQuSYdXGEs0mUzdQe1BY+FhVPNsAmJQ==, + } + engines: { node: '>=0.10.48' } + dev: true + + /vite-plugin-eslint/1.8.1_eslint@8.45.0+vite@4.4.6: + resolution: + { + integrity: sha512-PqdMf3Y2fLO9FsNPmMX+//2BF5SF8nEWspZdgl4kSt7UvHDRHVVfHvxsD7ULYzZrJDGRxR81Nq7TOFgwMnUang==, + } + peerDependencies: + eslint: '>=7' + vite: '>=2' + dependencies: + '@rollup/pluginutils': 4.2.1 + '@types/eslint': 8.44.0 + eslint: 8.45.0 + rollup: 2.79.1 + vite: 4.4.6 + dev: true + + /vite/4.4.6: + resolution: + { + integrity: sha512-EY6Mm8vJ++S3D4tNAckaZfw3JwG3wa794Vt70M6cNJ6NxT87yhq7EC8Rcap3ahyHdo8AhCmV9PTk+vG1HiYn1A==, + } + engines: { node: ^14.18.0 || >=16.0.0 } + hasBin: true + peerDependencies: + '@types/node': '>= 14' + less: '*' + lightningcss: ^1.21.0 + sass: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + dependencies: + esbuild: 0.18.16 + postcss: 8.4.27 + rollup: 3.26.3 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /which-boxed-primitive/1.0.2: + resolution: + { + integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==, + } + dependencies: + is-bigint: 1.0.4 + is-boolean-object: 1.1.2 + is-number-object: 1.0.7 + is-string: 1.0.7 + is-symbol: 1.0.4 + dev: true + + /which-typed-array/1.1.11: + resolution: + { + integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==, + } + engines: { node: '>= 0.4' } + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.2 + for-each: 0.3.3 + gopd: 1.0.1 + has-tostringtag: 1.0.0 + dev: true + + /which/2.0.2: + resolution: + { + integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, + } + engines: { node: '>= 8' } + hasBin: true + dependencies: + isexe: 2.0.0 + dev: true + + /wrappy/1.0.2: + resolution: + { + integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==, + } + dev: true + + /xdg-basedir/4.0.0: + resolution: + { + integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==, + } + engines: { node: '>=8' } + dev: true + + /yallist/3.1.1: + resolution: + { + integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, + } + dev: true + + /yallist/4.0.0: + resolution: + { + integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==, + } + dev: true + + /yaml/1.10.2: + resolution: + { + integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==, + } + engines: { node: '>= 6' } + dev: true + + /yocto-queue/0.1.0: + resolution: + { + integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==, + } + engines: { node: '>=10' } + dev: true From b2438fda068360482a1bc9919cc29c145683c29f Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Mon, 24 Jul 2023 13:26:55 -0600 Subject: [PATCH 03/52] ADD favicon --- .../CarlosUlisesOchoa/index.html | 25 ++++++++++-------- .../CarlosUlisesOchoa/public/favicon.png | Bin 0 -> 40546 bytes 2 files changed, 14 insertions(+), 11 deletions(-) create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/public/favicon.png diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/index.html b/pruebas/01-reading-list/CarlosUlisesOchoa/index.html index 0c589eccd..905077c7e 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/index.html +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/index.html @@ -1,13 +1,16 @@ - - - - - Vite + React - - -
- - - + + + + + + Vite + React + + + +
+ + + + \ No newline at end of file diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/public/favicon.png b/pruebas/01-reading-list/CarlosUlisesOchoa/public/favicon.png new file mode 100644 index 0000000000000000000000000000000000000000..84e03c914a32e79445700f22487065b83161c6b7 GIT binary patch literal 40546 zcmeFac{r3^{4hTDl6}cimXxK$SQCx4(Iz3G60(zJiZIq8$ylOYMMGMY7Nt-bMzSO^ zq!Kb1%M{tS!I*i^J=z|Rr{DK?z3+Ry|MXl}<-X53pL6cd`Rt1)!E(=bUT#Tl7!1a{ za|d!S48{t6WQ8r`1piE+-_L@7mLJ`5AP@#yAq@RtfnCiIhrx6kz4z@uzTbSeo-4{v z)!7Z@;;xGJI|^pQUQD;{l_v5lI?w;QM`f|g?1UXr6H+?xfZF4pAqg&m*ymy2J zxLb$q+2XK28UKri!|To|>+ny0+~1 z|Ktp~!B2<)HxIqN$Zg-Z15f&LUdN9g)q}%BLPAtSG*wXno^W+tU0t}E23$i!1+bk(=w!HAjO2e3?gcbA`M6y8F5N9}fiU)R$a$)C+YS73hWfk1c-= z|L4ZwPRz}J?!DxB{rr~PI`Ft@FhId~lrFh4a9`+AclciSKvYnGtGj71_>{Fvef@E7 zk6)Mb4@l6+f1ceP?foCippk`TOj205Aq4nVy{!T6&c{&!`%oxfg9R$H{DDH*ty^W4 z?7aQmP$7Zq5%9&ce_i!2K<-HA$o`|cm5wi`F-whaNJz=JWv6C&c_YB{hU4B z;Ya;F5%6Cxf1CM}p!Bw)d{F`5SndXz2>4R3e_O>QGQFMtfybTwUEOyg4ZsUkZ*Mm} z_sv?HTy)i3RMa-9X{+dHYq_boxVyWmsB7!Gs%d*@IlFAuW+Ktt{P*Sm0*yqu20@JS z9kd$&t){j~W0Sg;j*5n>tE-Bxu9l|C=FQrhRkYl+o!vI+Xlv?dZ~g)Lx8?r=Z4uxN zgq*YQZ*!p2|Nq@$2{8ZKYKM0qAkEOAMw>N&eYg3Q1b;stj%1pFUwe;w=R%J0j(|9ye~Gb}H_|84ny?-AnV z?*Au-S^&kI_1{1OQ69%boCDmAJpoPpf3W!iz<;h-3>g83WWKNW|AjjUbPoRCyMg~1 z3;pliz(2&%|C1Z|MZ2zE&iT z@3!dmZ>u0Bxgf@^fj#GLut{566G+>|uNSYd^hUe;?nin9c^e2x5p8v_6?4(zktJ6i z_|KKUjeK9Za9O|EUQ7mDcnd5$U{u0?T9yCe&7aci|Ktz9KI#7?)J3rVZn6j=e}4Rn zu0P{v(db`vEkekjAOE83&-ht1`WIb`5c228zv%iiein`XMb{#P{Q2=Oy8euxMWcVw zwFn`9e*BBBKjUZ7=wEa#Ldc&V|Dx;9_*pdi7hQ`G^5@6D==w8$7LEQz*CK@c`SCBh z{*0eRqkqx02qAxd{EMzX<7d(6Uvw=($e$noqU+E2Sv2|=U5gO%=f}V3`ZInOjs8W~ zB82?;@h`gmjGslLf6=uFA%A}Si>^Q8XVK_ibS*;2pCA9C>(BUEH2N1^ixBeX$G_Z=;Hp>r|IqwnlnQ{7basuY#-?0ly%*)*Bk~5lZU~g zV_~ov2Ke_247PU}j74-m45pU`gNdP<56YZ@!Q58tL>liyw|=`8dU>_YhboK7&;7X% zhrYHvL7ikb(NKE{+o@*cs<3REk)WkPc9vWWlD7YXsZb2|o9vxs`LBh}n0C1?Z<*%E zKYL}jkcOP>o#=07Lixmb`i}O#Jr;1A_7Cj^_({Ze#v|ITfqiwM9sQ-#tH~L{tT9Hi z0@%Zqr3|G`FaJGCb#)16M7YtNFjc;IUIR@ytU(YG~g^dE_MI8 z?)66HsJLKS{rK6a=R~*2!#4*%<9wH3q zqAJPLs|D*bl=k!AQ*jf!60QF8B;KJeEYALHvh&@?*1K>x?&g6ugFq{TTj>!t(i zt2s5nlKYmS+T+5W!~Ju3xy43V9y3nac}bY}OJl9d7}=H|$WXz3(mtaFL%t6Zi|!GT zTTjsceQeF3f#!XI>YpIcz3D8-X3384in$8>HC+2 zrYH_eVsH9MuH%V*u4HtPCpyI~mWh2XoMPy)8rV&gWQA_pDz;^8mOF|~KL0!^+(I0- z_69DUQ+AyMOq9(39oM+N%D{(RX6i7WU#}>=q>?ljm@NJKr--rR_Olsg_-0HIdJV zCfGX^`wKT%_RoWZThIby1x+Ia5w^13@v=P8F+abUf+n|xJHwu;p2x(osEKjhImgm) z7GP&w)M9P+)`Tyx#3r5CcPYGIy&w!708X<#e#aMzGY_BT}tbVGv7SID_ zIqtSMFH-9gR#hQ8KEX?0a8N-Gry^q7@=APe`{vbAazc$5D+h;*;s&%%z0dq$m(~Be zXcAd_ll1$wE0dyhR@=(#6X|t&e$pV88d$Yqv+M3e?uSZm_~Z_nAnk-2oslBt^Dury z^Eg?zdE}NjjB}KWAAuT~o%pKVpeA>|+&PHT_1g;T`+h4he4`d2^mycin4I2eEDyAG zpgeqfs6>Pf1}zF1=TuG%xSN}wChjV=vZB>{)Z+Am+Y*}-rXHx5&2#W0@9fXJA=+4mSAH*h4kw9vl#X7D(v0vQ%nn^^ z><*5ifYiLSaEg@C7gw^ISw=0!NSev7Q-u=LKQMRr@=uyqP7YBJjO;)5SXC0f+Lkie z|Dju!32fh}=OvzKEsM>N1aKrFVzEQh=l6@HRvYlendFcGRpGO-gv-We1RWYg((Mpg|xfE)SoR|(s zz-USKc2}oTLP(*COkjn6ZRqXWxrh`hISEc(0e{;mcIYUJ3<7QW9JB4&mA$RYyCDQ+ zAg*_n!|q%=#Q?}B(#Mzf(UdoApi)P>XI}9eR&+#8JCp_u*n&SF zPgD?Y+=xZB6{^&<=DV+ODmWrfppDgr5~Akc6r4J&Iyi8ZiIRZvilXUqn3sbBgPZNJ zDz~LPTNcFEo>xLRZ%vHA3#t6#YSA6Xo6Kp~LP%fNeVoBE+E9c#Pa>|)?!m#zkYUob zi$$J9X#>yt)lvO-bH)-A6Zc}89y{86C}mJP5OQ0lKmkSh{uFiut?2I!H)rEWDsW_Zl}fD<@BoMK~R zBY&v7jP&rq16?7a47$_3cRAZ(xA%cfu#@Z9vP@`zkAy7NWILtpq7mqmdE>Xt(mZHa z4Kj5YHRly`<|6=rh?gfgE`?@B&8{a5y%<3I`T5;lxj9NY)h?xaoJSfh5jvXTL*2^* zi>1bL;p81T1n2LHkPQQRUhgR%zCa}~=yNrBBTbQ|xw#ukeOol_eYgzfC#(&E`u9mE zRqkrk@(NcH(UT@>qC0Q({!&$G={drU)|D$6rIB-EikT7lNq4rap=Sh^dNpQeWWrY_ zjfyJUesVOT&JN^_Y7!AoMC`djgc=jjxR-2j{+}9-rQ1~0^uWH|qn^p5X7G{=sP-4y zlzy6t?OdJ{f%J~@#FcfgVFztyeCCn!tHhF^qdJ1uPEjNfBfewzQ`oivX_i`^nEh7u zHkDt-Afu?D;DAuGNzv?JdvTi1rcDQDBOdQhhC7vhzC=wT7P(gQ8ThqoJ2u>l;x>&W8@Muo6Nk4zNR zxdm)*`{3ZkV{ptS;WNXOa6pr2cX#*4vz!roknvs6`MH>G_$^}|`AohVv6m z90@=t!1?Ye7+Hxp+SpW5>eB5RC_s)7smm2JEbphp4NZ6+(X@=1J@ zf-o1kp61b!X}O0@)?Cyi|K$p9l(?YZv4gaD9*Odfh;ehfB#f%?nY*r?=j6?}=@HEi zAr4koIq&Aq7TvyG#Z8Nh=5jPq-$L&LW&@&YGeDvd+6Fn1+XRvL4m#k-P!pQwm1y7Q zRj0T474hzwo*62cmaZ39-qw_*JUY!HU16v@tXRyVX0hpQ5d#7ML$8qwtMVQ-?7wq^ zO3B0wtshM@Hwp?WxHVAV%9JpdQD}LoU)v^&BtoZ(ec^5mmKMwn zq6h1@h*AnJT$Ms(3H>JRrGx2v365mkC20vGZD~xbv;fx4@RbQ zCPT5bM2ypDKx4*E92RI5y+HydRl^B~;lr3?AxPv9Skcq7bN_WBOxHp{Y|oJMifSTPvM82Pk){b+O0wY)>mH3Z10 z5A3gJlB&BS>N9jXB1`qdr$(&z=vFqS#N_50r0qz)TLsW-(DTcT2jp_(VaNPnskZ^0 z+8rZ=X<>i={{8+pP6%mAk{Dd|%Xs9-ORk8X*Jo3Ld9;#WTL7BF@rOPS83sBKYlt@P zoPV=(lrYHOwy0u`b9VB;R4g3|TQU&ElAawykD?$Tu2@c!it_%$J7i z2c~DkyXqLUaiT?d36QCI`yZFDL=CnU;7dzM0o7%P6l9wxZ?{SB@6_31Jvz+^fXqlj zz6Sr8KRAxEvT|s6cyUf81KexR)!XiP$1Ms*5v4#!>`;)MLrt7=cGF_9%?o*VbLXDI z6(rZFttSaOBPU+gRzpH6^h}7z;HqWaJFKtdWJa})ub_Jnao5Jf9$b!oPgL9;eX-+9 z(-qj3=Hfug9s|JkiftT4z|zN{Iyp{wHZMT1+lfSNmZyt3qOZe&b~*I?-Mh&u7xmJJ znE?Atc+*fc_=L=X$niQIP5Q)ZTs)IXQ zMWX>eXbQhvws9q*Y&J%3(u4ZtM(S*S4YB{jJ-;i_@@AJl%|<-m9UWnKa`|gY7|=sF z+O}5-!7saxQn_g*F_f)1uX&j_-msf@O@P7Z*zGWIfr=Rp?-&n?H~d}fdk&00urI0y zm;2_;E=aB89~M1$aC-X-TLP{`OAJtoJ|jKUQlPnv9~)P-vH3 zQ;zxC8fi&hgHRM9OTVf+XlGtXxA26$Js&haXsA%P5*P~Oti#6vEdv6J5yTw3f8fb& z0PsT_rX}CKu#HnkOKblN8Qa}PF9zE2Gop?M4t#xmA7!>vRz`lQQ5C{=0aT=JyyA)(Ys>^mO z$hJ+=M^iD!18mC%A%eJpc=bNe8CIGRx@HyZs}8G!2Fwa#mQjEC_`(w^hn}gOA;TG~ zE$!?)pBF*;Z+7P7@<*-eY9H8pUXV({r^k?TUGMKl>m#*zz#W7pFXbRp){tI$Tvy#s zQ{0mw?lmfgcdxy)Q$aSIp53VA^y2v42SiA?jJLKPw68ny?a(lw$*Q$yvDQym`_c!@ zMy5G&VoUqhhze`0*A-!M#}iKrdW~WxyCaRm>@rMw#>|sdBcilKN=hnxGX;O^R%QNj zEK)9_t30mo;q>iv{{Zm)>!I&oi+|<@n@}agd7|Ho8;QeI25SH<4)tE^JxLW7WVChA zIY%wJ9vpb0;7XYHRgkTwv?i75^l?t2x_A9BRDEd6QTOA&h1%fKy*yl`AK zWCWB7lQHjhD#}-~lRK^y1rHvyS2#RMt}HZgQWci%=-9u}CH`E@!o)bpq$2FrPrwV*k@Y8d=I-g;qMP;?_tZv6d70T)#~X|zfIA_8Nx~QS zG#?xq1aic$XcE}_y#)mYmnvFQmR~lQcizs)A!x-VD3wTX8bQ=O(c=>bir)_p92teG z4SE^kwEUx8CRl>GWB&!hp_2K*LSBDw@5i6j8xog)`SPU`9HMu-RL}+RF)QVTTysaJ zSKvHDnX()oFuu>`+Q3Psw1}lrYJ?Taj-W6=W<-=;RJJ=fBrcwS)Ofi3OkPOun~Mk_ zD>am5S0>?7pp(=tNb-y6Vo9bJKtQZLy9_h%K!(Y@J&W@)y%}Jl@_p zVq;@}jVd|ae=m>kDHTH-t)?j&&MfDTGpWe{+>FgTSny^gsxndZ-167$ZH7%(qjxvA zy?a+a(BHo?UC)_SW7Ggx_fLJql~Pk;&SL4-(1n`fRG=sug%js2PT9PMK0h~20S3Bp zRtJq}$e=x)Nvd>-05A*D<&Xf#Ji;2_fb#LVry{I|q0{c;w+uadb=TOKu_k*Npx5yW z)HZb}dg9;7D-(58$HtuzaF|6b(_p^KD2V~6twzFCBJe^TyW4EUm0+$O4WJsEbC(N9 zu{oi;;*#+W#lfQ>l+ci1Y@C6Og7Ax9_e(PbuCQpHRK6y_Sev@KuE@7V=nDsCg_!Ew zEBB5AEln|NmpW6+{s|nimi=ZhPefOon8ujL+sj?=v$9eX?npuijaEF!hz|f!)?5KV zf(Js`I44$>iO;=H_|Udu<;G>SBaF#`X8Sh>Hm>ZhO@kLr&U}1e?^(m%)6|w3Sl^uI zl=+d}tzUdIiiA&|k=PP^-#Yfh!^#dgT3P_(Q3KmCezF^Ud~cuk)hT<$3dWX>8NR~V zD~vhd<84fj20m^pQ-y7OSkC_GIccBp8NjDN3us2|3GlFN*d*5<13vlCM!E~hBAD$k z&i68kaSXU20b{e115XTHeeJK4WfG8Rd;3*WGiG(cxw*L;d-HO06N#CI9Um!x#IHRd z(QUWP-nt4?c6l%mwoO>gxtu+RlcOEN<)ID#p+b~bSTvOv={`n;w4Mp!n4hxU%$O>AJdLMPBJ!AC3` zWFQ7jLZ7-zDTh7kS)R{wCTeYiJez=N{!3*=3#$vOR)}J%#4|PAxgm(J6;448v3=p& z;I_j#;d42`Jl~jy-Q&rM43y>4+dZ@{JBm8TLF8B}R0A+v-gPuYuJzy@DikXrOp`Ec z=qt^mFX}im?YT6^uo_zw11P+v$-=_IvDw)$Ga}ZPm3h=(XZwH*2{zKnA7d5PRO4QC#ar^1DX(3uYRu3&XV^+who4iVu^4FtuuibfdctQ0#tWW4 z{RAxcu(=#*AjghWmjQSqer<)LgKb6QAZ((iuH3B8dffKZ3(V75u8zN~IAXsw}`@4FzubV|Ug|8xOb?7ePUV+1mzzeY@?O(~q#` z>%(2l%N{xuQ|WWV!xdRsQpoo!CSeG>u^;}0GAnVc4O2)CZ!qQ>1-_9HO{x=U=~H%g zcJ?o1AkBDfOEXh5ew&&i9{2t9XpL^}r(M-$&jTrAAa7CzWMI*C>1fI>+=pXjKnBS7 zv>Wjydqsj+r!1XsEZ_=kCJOi_z*gKdQ(IJoDMYb;JI<2<)I(lg9^*2%jK~CsV9-{5 z7%}L3*yb#{z?MW06z#aaHGT|OMkX|=K6ikaq3sI}SYi9eW}u}2c^(=Dx?UxO=e^d0 z8y1-cnl)F9jdilXVe~-C3*qIdxahzuJj?W1w=OXI8iQ49eF4blnE zWn7%I+DUY$tI@QuInQEJVc{lHLqlhUt>G5)*oQ^{g84$MJMT5VW{*h6*QT6d5P8om z@~D$^1a{y~9>502OXiD%1}=r57>AmRonLX|{L}>OTMk$Bo%x&&9EuErCIRaK@*DG~aCPh913>=Il z1d-~mZJDV^5Z=-o*pOu$@gdiy5N$ihe)B5qUUPBO{473v&c4P;LAdh~HPF=RnKLr# zBm}oI^MJ;WkdI(!weDzN5by>JiMkjWGU}R6=vdFw=gB{mvQP8F0$*01SDnBkFAORH z?06d}fbpVZ-Bo)Ovc$>6{Ty~SL9TM@w3ZG-zhY)*S31j|jOFFq+=@J#wQl~cM_nvKJ z*T(cppS}fucBM$aS;N;&QZHf}vve z*E?LDqF0vkWbBZnc7XqNLS4fIhCzj)g`=67S*sNRFu9G*#om;ty9#A*=0R|-V)7xd z?gCH@;4@g$H~D@l1MFf8f|kVzci{ajXj5_mYB-Li;l*ycC`ez6WbNWK0_jU-xje4H z^ox!SC+>l;`c~SCo(GO4FMxj-Z0Pb>+^Nv_$^#!s0l?2ZVEWGP6ig8cKv=;^hJQwQ?wi}=XHYA6u5{%#`Q>DZk~Jdzo`PuMb< z#EcYAe-11hORHfQp&}UPu^TL%$^tK^g-<&svP4s3?R;_BN^fRODly+aJr-cdjb2i* zuUa^jg*MA`1E+@uEO!+Sca_JP4h+IUOq>P`vG}W;*G|l`I@W}`@WOgSLDZ*3*W`M` zenq|ebvXT1E)Gb?{&J&x3T6Ei;D;fr%UYgziajWTQc+Jl>hdoZnWt}(7n9a|uYOdb ze+62eaxAGk8YF@rNneSn*9#T70TX^bphkI+N6>I!fz4P zDN+IhLXh@5a0sZD@tM8mMw=d|Amu=0qV4Nop7+7}Ot!t_AkxJq#TGIR*AG0JmPotHM@@5MVP5W$$oV2beEh=-*dlv^x0rxDG=46)~QIjON8ZT!sjsF ztoeqR79av?eyvXvw%=$xv4!)<)nHBVrMJin1p_lyq0Ih?2XEfJd&&n<7+`QA;2^VdzGPn8yj#<={%Ho`yoEsv z2zd=)cNj;q5f5d3i>crQk8I_{X5ouBDphLdk%!r8TbAsh#Z(rXY`$FGi1yoc^ejH)) zV><0tnqyC@A$>EU>(nZ0DCJtU#pW({gX3QsG8`s9ulv~Bqh5v1G>D|0-7Z~2+}zC* zRlZztf1i!5?bsDf&y~Q|aTce=i8;QW@ukfWF~M?}aO@p^KEOnj}Ej zu^ogRcRq;&INLa`W$q)JJs6kxN`^kd)r@6;NPLyu!-#|q;BC;}nZbK=t_4fVsJkEo zR@k4ZXgv*x^AfGDRJ>&VRhL?(ZlH%PX=<=dB}De^F~8>Q(rAjn5(>FCHe}~@azjHy z8Mx=zb4d)aWCrB>--0wSOH`w&*eI}0MnSM|>wW#Qdmt#>?1a$=@_Q3zZm>v2e@k%K zoV_}W_3hoq$YC98<#;DK@T{Rr`GK{uVshEd+$wzpY9%pAl@9RRReMRL8%kq=u%a-v z;riB4kn^ngpoj+!n}Pr5%~4-(rHv`#&?gA=*#Ym&^;@7XJNhw`4Kf2C=H?1F&ly7Z zSSBo~$`jq{O@%y{+gk-V%OI{lKRs!Z^!#?*OggIc>mBNF%aeE%kTe|_#yl+}u)gcn zDc&dh&a8PzCx7_xfk|{uK_6@)roOe%0OLLeL78-BEDFT>UkEoBuLfU+SlVUe?$o#U zQa9|qV6De3%CIn;zW{f5aiQbrt4UgV2kmz6*I!=w8yj^4hl0FsaEzGt;J4*T!W zW+BhmKRbHe+M1Q$G?E3*?|4W97A7_dQdLKIK!wqzDK`+2^#K{Pr$r4e2Ec7<{+7r9 z*AZ$~s~1(PQZzE!T|M64e+0V*ZQ2|6%Gm(a#;EoM0?c|4PM*kNH;4w35cq?z=j~uzeui!!Z_R?KR39XR>N~sC~|?KC~XiQt03QCNs28BC1}OG6F1KV|WFZg_hje<)HmPMWEsYf z^AQFf7DGAPGHvr%bc|gvh+NU`=HU9D_N@ytJ6xIx7i!EiVnX}jDdt&{B=|%+EU-#% zbelI*Iw%>Km%5bU(m7Q|`*2iss$Tz{J#ms`4xBykXkHhaKg5siQoPMx`Vr*2fY`^~ zKs@G*9zy`_wl~Ec0J7)!RysE{fT(OX;L`617uzp^&zF* z6_h#Ueo=JF_gWn*iF|jgEak4wBmKg7`sQ` z!*>T#TrJ;%f+{!sl{PcVN&5mWqYhXwqJm0MjO3ePY>fwwZNH zUjn%Px`Mg)lcmI9qa9{QZLlA)IEhAxKB@{1`EIe%?cNPyLDj4y=?qV5Ylj$qy-0F9 z+gukok~tCg?MJOm+UcT>sQEd~szNU3f*?>{XAK+5176k)N+kI~EMZ#-D?IL}#hi9g zEa6KUr~AE&&PWB0PP+7mA{6RFwe^OMoWm2m=yZ+b<=f`j;At$c&8TO;9Ug_M*K%`9 zg)T&X1Zh1hLPrNEUD1Dqjp)cBjtg+xHf0H0<&{0DTnPW?w|#8-(EqGVj;N@bXSN8G{pBLFdIaOB;=fSq(SO z)rzlDa-i&y>;D>0Ibd~R?u1^zW+?vvSe)awOAV9<7Hsrk5e4yyjd-0)qS_iDi6tKFLmRDq#hnwTF zq1B;ar3qmijw^pv2Xf)2j~G>E3O7p1bU10(O*($*9XP%1v<$lqP2yhXb;~azV2{Ni z20p}aL3ASFlas?>_gt}JZ&-)M=@`X4yQcDKP8*sz=__E{TaAHB)|tHQeZYT*nzXsH zdU|?X3utD?5=R?%6#IUfuAo#ZI2`xCtq(S0xM~>`y^@yc=$L+Y2(?0Ry<;)y)T!A# z_CwIRlK^QIn!EMII6G^vTm2qZz7g5IEp`LA8F~|t`&~_Qa~>~zKn-Md=wMioL-EE= zGQ+f=sB;Gs)3=-#XwyM08oUyw*0g3B+hK46SE`@Ek__!c;y}zW@jpax^upJM1TQno%FM^y4+mNc3`z(C z8ohb9Z_nOyd`{Z2Zm&7Am~|sKSkx&9fSk~JK< zKA^ACNhYLEX$PB>u;%U3fNk5RufuD!Lj$&85H$`09?yEaWseiv4MH(=t@E?_NpbcVuATBMmB8Nz;`Qh z@L24N&i-mJ{p!ln4ih?Q6Tu^-ds0JgRyK>A>AN=$;LOjl6vQwAEe3NBow%n9&Ar|3 zt&Z_5o(M~4+enuYu+j%75B;u4ks@oeF`N@V&HBjqooRFTyjxXPju)N9iikN5>oeKR zGutsHO=qFZ_k4=$+YXu7{Sn0J+W8M!gUy@9LQd2^)Y*-c;o3)Iz(1UURI3&g!A$FW zwmz#ear=;;m@!{#yF_b9%prAArnEdn>X$#sOyC{UsrllX`C)90IDos zjqlw=N{mimc%0MIAOkJHzqpj4mkec6%ezKi8DA9@;ER_jAK$x@bOtQhj?`KP9pb+< zcm5bCIB5v8u@U3&vMu|_#=rXWDxz6Us1C;t8mOjhgg!JnC;jZN#s|>Z0OG6%dIyV~ z7zT;iPpynRIFNF);D2x<-+LE1AQ3WGPqm2e(&0;D08&5-T7i<*k8BXzQTVJEDxbV==AmV)b3Cb-r!lAie+|`MCi00W)%Ca5$ zk_%$Q=cgcv1gvq>o@++P;@5-~&*)}INn9FvM9X~cBC!&qD)<%54aEM`(00Bg9bmll zcIO=$ZaVh3ot=)8zqD6z+#2YzGl23OyBi!Gd+xUa^ zU}D%gpkvQ4K<=kvJ}5;D5Z?4%s-aomRp#DtX{k`aCGbp$mZ0C7%pjiockddko^F^jwO&)h-D8`9Bs1~>jsF+B!-|eMFQ&h>iF% zi#p}TBon?!jagKeNkz_0NuQjv7YE|9gQ7V~xQI1*M(Digu+UF}7aHLdY8>b}pArK^ zi}bV(#<8O`l9TFt`t?4OaF9=x`(+m^3+Ba4JxH7~EAF(wdI=2WMLL3@`!1^sToLQ& z_6c9seFpQ(gdZ@r>heZw*(?L5*=79snvBss^dn+413{^TIiG9IpU{@E*-Dr-j6uFG zP#y6MGPFP<$8Os%EgWmN&QVlQe+OM!=+G z9j94NvNXKICA-CXUIT?>50L6bm2)Ss4{u#CJrRX=+@P#%vDcl&$MfBUG~?fs1>)!WXi1+tg4krulDDT>`|PB=Q5zjYm>eU z2`RKAzg!q!CEg9s`{Lnze#o#R*R!5bXXJ5&p#C1@mSY&R@;NMa&vsyu9R8jx^+x9i zHO4FTxpxf$i|O&h0mBvXuk?4(@M>~;m#}oBcQD1z9p}bD_U|AtF~|C#sP#9a@goUe ztV9BvNA$2>KmqQV3sY4xMLQmOTT~z4bj9FvYW^q*)WU;LN)u!Dl5t%PVHGSnO&&Nx z0{STy`*2-$o}ksnRBb6PfyM*K<2r%`R}|Q$UzOlNBuxl1?Lnm{FzsJq_X##;T1M#C zw3#7QkQ3FGJ7%IF$45?G;dxQSNauVw@ChG3>Jq22F3Kr-BVz2Px1okS~vY5uY& z&g44#;Hty1tWb7>V*=ZT2=W4|FB`X!)7T1m^0NbLt;YKr>3a!7ZC5 z++m%BH!Ny}o3CA^KZ`x+(43=I6`ZyI1Q#wZv^K#@px;Tha>>S@LLwUUJZORQ%O%RA zJ2_4joyOKHK5-W5_m)M!kl4v)gmegD*|BGhoJ6$vxj{H2FZF~H4!ss{JLR%m8XeP9 zXJbn(so>vy<-mt~)y7?q^!O`<5F;n*T{9(4saqZ4i3{t8FTwtUG7$VXYRQ4( zu9?~3_|oVTqI~y=AXpVB+kZE2$$~(}$n4ahrYx|fW1$mux_6dXAQi9UW|#7{r`Exx z^H$%>{pKfP26`BYtiwgfo7uQ9oFY&3Su3JBo4`4qXztNzez;IV#w+o*1TrT8+0t33 zn0@5EwZ*SixoLij<^reeXHXAo=-5YLtC08B#Ib;35@@d!z+?hVUd&y|3w4#ADY}9U z%QBezp`Zuf=rEkJm<#zvTd{XICtKnX_n>SMYJ_L)7+ckTuEbTK1C%0*^0u-0Y!o>q z!E}v_Q|)X-Eued4uH7?U?mVe}*IA(di41xMbXK-S;z4|n52W;==Gn{m9Z16J$(HTR z=u)r@>g{DK;IykEk3rp*iErDafDSi}oZ=#00yN!T(-bssr{oV30*(o2lzQ$`dqf*fjdN8Pr^sW^$gIs zx#6T+adOVU>^_mT(6M&oF+yi!X20qFBJSd(W>9x`J^8Vp(l%&+iBN)Z0en3|e*Z8sou2jYjW1E&juB6&uODcdsg29J(9Tu6fbPmPtf= z@=X@m?1#m$bvXiOd5m~!g1Hu48DEJ+K?vJ&q#f@)o5z@8rNcGCZlFPUTNdc{O>`@c zhpGm*sj~va9jZ!?pZ&ILDcY6(ZcB(VKLgi>9!2+Vejjc(x|EU{A_IBjY6X1`LT3!L zT5jquxrYWVy|d`hIf(Z3p=KV zf@lo!&h*2spZx*D2T3R<&Jbzi28!8A{Uyri@3sGgEuqO+()wwcaL_eFZSl;k%P}uL zcc!Jg60~6# zC^2qnCqrDGS2Ese5_>?ER*#B`3cjG=BB=JeQdCsbmQt6lGyd_TE$Q96b3CaddaZ43 zhDT5+rw=4j>CKXoNcZsYxvNuCQ-$DTm zy0?=vavuJj{8;aDk0YPl-(FUa9eCk5lqtw( zQZfx=a(P;Ea}svyf*B2DtY;EMl~)UC>z`astu`5LOs-gq+%v=n*zK z?i-}y3})G?d@rz73IZMuUDNs+L27MHEKf8-uLDH|uR%-V*Hi6mIoYJ*bkL$N+agbq zvLAY&FRX}5%DXDKEEN=-Dt~?ybQF+o(n89$wmkg88+_jMcEedg?hUM6k27H_RSx!? zDrEt+Tr!iSYvhj48J1AjR`EvsLAh3AcT#hB-xben=!lxIz`nP~%$l<9Sq(c>|7L`% zstmIR7+a@;{vc6P(U_6TESEtYfxR9l-RJ$CS3Z`*4)Q;v*Wb>KiO3yUEB2I2f3!l_ zY9Dk=kol!t4SoqiiNjf>;%)y-{sr$0jX!S|7Mr?ChmQjQ-;bE-IsfnqtF zzh?22{x__sM+`E?Aq<%w=@VyCxONzqMtP@CML{j(|31xaFfxGdi>&> zc$sra+fMMw7_4R<>@&zd`mfUc?Elcuqy(;F;q^=nb|j|@vz{~h3ZJn!jIBmh7sc`1 zOB%|kSy@6~?pM^_r!Xp}&N*3nb19!VxF&RK`#L(Zf{Sl8_5`^2jSmU*up+1&hRbT$ z?9CFku~>S@z4VGqEP9w!vaktgej3~a!b+et&gMEPE%~3C6u!d3TBMgvC&5r~6ttg- z>|-x?JvP&uR%}i)&4>?k()d*Y(%S`OVpF>UI1lL9Ip1DsxnFP@s-jZN>Dx8{|LMxf zQaAkP;%U$eRzcW}0AYz|=ClNC{43{D&|p}4tb3b?EqnP|_0Tal9pJrey)L8rLu826 z`*__!xg`gI6&#?;Ge`}#>|{K-+K~R(9txq!WP!N{q_~pZ#8PtxT2K3fvegaLHy4#> zPVugSj*(gcMB8U5?r0#Ny=>wY2h%qmUk9yzlyW}6B1?X)LyuF1{K&8MTIE~GJ;vwjRz zSn6MXoY?Na5;{8|`gn+yU&Gc3Egzaft<*N3Q<=Dtyr9(UL6SM096SmFp@x(1t(EQr zZ19wQX}s~gjc~v%xum(lGRN5P&Dx)?^EC<-L=rKbDQ>IG#8RE;V`5BXH-7wBwLMw< zWyweY=tn#ebs^)o+U-GExCpn@Ajhbp9Gzmwkcb2P)u00d3D|DwyKv%G!(FOB8P~Tu zlt0WETqo$fZfBk+m<6hr55HOZO+K5{ka{lRpY83z7wk;u6kMM>LTjSt2AONJL1pD< z<;ghg!;?`LkTmVU*1W5}^O^OaDSiMn#qYkVlI*tS)fVDbOa={TA*7Y5EJ6fSl;G~d zkrSMPaal5^y-;?_sP$J5ugdz- zr#`4OYzc>m9SC|MNLpEXUG0;H*h75chSCyc&27g>GKjvnpg4dY$b_E+(^mj=7A#~X zHSx*{N1bvMUlfXNJLY(D%DjB+y$ppz>`*jx&0edrKx=;m!^CiPZzbqE4-v#T!){i= zKs&m(#kTwvz2+lXniQy2lUo^3(tgnFC{7`MPlUqe)!i4JVxu-!B~cE&0$DTh3W67&4KZ7=nlThYNb-(ec5=H5sI0$rix)Sh<5dw4xJBniJ#kGLL^S z9o^fK*9$e<-Dfe9MF;_#D6JX77V5f;d}j+tJQezpMBoq~%LKe$gPz+CCKa^@-(ybN zj=X7Xm{|M79dLXbUO;fZsTQj6gsgHaNRm8dDFvPKcvZSw=?eV~+00~aup{0hFNu(? zgm)rDDLq_vl8b!N&aunRDY8JO0&I- z0gT|Baq4QyZ>D$Kmi`2<9DdvGv8z`lA$+gp?4%eHD&SD^rC9(|{i}}EZ|+$GKiL9_ z5K72;2Go-}%y6!SNRxw7EnAU1-28)%gJObk-O`OqJ#o zB~b~O$|&Pll|+;frhb1V4mdqhuu)>V=jAX}9++7%ujP-H}dcp-P%#Y7&$ViT-|mI$QXgTy1G&!%*z!ZQDu_qJG#X0e>o5e?8oi1RzRE? zf~qPe5x4*gu~ZmyUPmg-E$N?nm6)32-BnCe0%VYhCNJk&TI@8`PxBJo@=>YfHjGVA_Z_-UB{8 zK1vj0YDJY{P`8(YQg4y{?B%`3fO|G;1M(OJLT6d^1F+wNNhPT{N^cN^L_=3m+Eg1V z9^x4RHcpBjbHwTU~Rb_215F;gG3V;X%7VF=i5oK4%j5)9Q$fEmy9tzry?T3| zCG0}xNO~m3WFgW_?wH)XWf@>U8gOfnF{ZMIq?1;vaG#_OrwiOE+?qNj^rLl2fbq2Y zhOq!3t{hz028e&gE^B)3k*#n-rb@T-os@17`bV)w1)=u3K;stX3Q$uex3EIn$M$dq zrUQG}ops`M{*s(ZX7s8nDM3ei)}6AIc_boYeD~psj-GZl{rn2(w<$$G{pnDXJ9??c zmcTNks#mX$Wg-WMCMU>3#^k0iR(t+s;bJkZ-TcOa;6rX~J8i;*&u>6IdcRnrZS0Y4^`1V&@mtWK$(ffH zaboCd(RF~SNZ>bLK!)gUcBJf~)j)IyF}D~87ludIYexV(-I%5#C42%hxK~L^qJ4an zAuU9HMov^d0aX6fY1epa$j{$$V!INi^hVTJ2(TeKC`cRS?HvO+>(FW-#*Q%|R|_x@ z3+2k}>Mg+ap9XV5X2Dq;(towCpi9hH7$dl$!jK=*kpc`j6d!LJRa)p{gXyY_AatV%apF=-tpsR7}pXd4Ru}JN(*(!5$r61V`y=!245EM0e2(Vp9pc;{DmBOH?v>6W+sH>GJ4xO;9zK|!Ok z1DMRAi(#W5BUR970a>AhB!LX9=+8C30Rr0G2RXO^WnUN%3fp1Bch21GI0*wpie(j~&L0g;AfV#W(IYMoW4;WWkFd2uO|H`wb zQZexMy-Z%2A@P*cfS!?SU+wKM3m`q(h?${humUED`MLLGqMf~KuDTqB0udrjHaT>t z%T%Vt&vT@rh$IMC&F1oXBfc3c3s)lovfHZqUR7E5zOPwO4F968hUCMZ;?#C%nSjn%OGq}R5fnm_Pkn8E z`2p$(^7U`?3Apm4`n~yEk`3MOL>u_Q{dx6ga3RTzshn$ZAYdaBq6ons#+vxnP$Fx0 z2eeH6rbn)PW9=^e(RrWn1|oMg|7n8#C+A}zTi7%Kp2e*9{|0l}YR8sN@|Wu4LVlAV z-;zux()E@VI@0@CsL$3jJXj<4Ds}&f9-gA-_*}XnK{S#-h z#JnidPeM^9wWRUkVJRfF+KxW270Z}V0i?8agH4DZUE5N%5EBCMG;A8V<=gpi5VWGJ zWY2o0g_7?TiF-}s5IBoR-3Yse9z`WdO5Q>OGqiDV z^kvs>%(KgIj1e7nCl5F?vtD$#Sd4z|r(^vbEc()}N8`&@Wkt;_!Fot{2;;;xWH~A< z0K>X+sKTsnq-gmc4h}wq=fyijc9pbi%c`VLgVv46X~pCK!#VPJdHr2Qe$-bc1(Mc` zq3++cSSGI66ai}8xrf`dW#dLG<(BOy#U5<`yrODd$Cn)><&*#tRvW^84d|17W#Or{|=n3hj5|_PA$^kV|*Zv^l7i-hT%Vo z!>Ge?BOMhOa4F)-J88Tqgxv5!+y6p?b?Db1`w9S9G-#8l(Ye36R{$R2Z;sMzg+RUp(T532Mm&I9+uX{d&wu2V13y z1CYjA8NW{(*>@xiQ1&29=^U6KD2Po_g3iiz!TDh zqc6zY%PY>C-IP+1gjI4leE4qe+f&_-j{Nw%SdU>c6Ry#Gx-O18#d2UguYXao#UKQEXM>mLzfA5wKQ)faD$7~O?E_FV{do=?}S~fR+aXsn=OV# zdUYYlm=gT^6QGTW_W~O;2^sGB*p`|=?uJSnxK_4fwip%sC=*})c$Hx@u#Gul8%khc z;I<$5RsiW+(CN4k9fYSnEpq*utfhW)pD0w@gWC#_bNmCDXjub|6Cu0{Y$tn??x>p% zR_AY7+Rb^q#lXAAGxxr15iqr38%k_;HbW)crRFNcWfo5!0aln^V(z0yT{q)1kFM9* zr*;%D`x$Rw?@oYFZ|M4Q*87181YfP9^Jqe!^kh#auSB`pi04$;yynbOq(epta1kdT zFV4>X8M0`%ZAoR%W=39h`qv?0xCNBr3&5%H0?r*BAlkkGo5ahHHQM(yzHcs_8S9mNe59l%mOPK8q>pFO9!0s5QQ z8ufMtHXbS!G{MQL7ElbiIj(quJZggRp=^5V8zChBJV;J@_}Aq~+UT3PfFB6#=lD9o zB_%e#6N!H6B~Lzs2}l z=Fs15v+kUu|pGIp}tiCbUU#vSAF_Q3I z$zagU5p%@xsr9?=Q`Y7XPDY$gJc_)Ow;;Rga-U0qJRfk-)kzxh7cTmiF)&Z|Ip1*m z-hBYEHr1)+4M2di1l_~};Lu_l(1}qY?p}=SJaZIIe8b)^GqdLJ9m1F&&j$R7B{bzq zLxp(5+uE#7(4%+~|4Zd{kG79K1y$_c#18^W(e^*N{k6AuUeClAa{o@D*A<78)Zv=8 z`%p((Q0BJ3=s{7=YA-r4B;r;>)OSH9e&fL3DXDdjLxYOKtdON&Ef}iZ;+9)hI(A`C zzI;5&0lBp#oI4hGpUH#*2tj|n_v=u9pNsa4NpI4g({nnZJ{k%55aKP<~_rCduAC>jd;zfj&t(`*V1my#KY zA@0^3l2wDzn;c2}AbZ_&Xv%?dZZ~YvJ{R+;uW$0WeZ!YW8q6e&3eH+6QL(qTm8S|8 zr-n?@9?B*%<=>hYvO`e}wxHAN)ic)SZ5&{h5Ol*W)uo5H>u`Eu=V)(_2E=f|fY-q% ztj*ROZ~*dDvt}f=5&@IUR8v3+@_I_CPUy-m_m7mHY4{#9ZmNhow!f0{6KFY0^xNG;$8cXsLN%0V z*WGt!?F>xH&Z~nsH%mQqi(4{Z@l>ztf;Lj(oqTv^@az~*`QPvvZCdZ z{XH5j%)x$wIdZ>v`B$c|MkmhB9n4U!Ubny;W#AWaj_9va9;&Y)vM=&9Q|8-@n$4uK z<1{-Q_c6l~;vRZ{KcdPG)enAa;s+|Zj{sXO$X`n`2VKclmERx2p(*CHVYzG@ECb%d z%W<$8B8oX}hl&0E`fp=}iGM4nu_IeD7$K?Rc;trXK!BTi=1#m7_G$)>bD+$$5fb_; z;ttb2lvt&6iCDjF&9|3is(0Nm{suY}&I|AylS4?1$kfQstCRvAt%l^L>uvZvfZn^u zXEq9u4p#=O^)jDczgE;DV#b{8Fx5XFgTWxGQ*ZmyZLH+h>v6Ih`<01Ry?cXR^g%*pu4rxXIxQ>+{#vS z7Q-qua|EC@&cVgwZ9l~H=@iHg5lp^8;!xS$f4uOEg_=nW|D((SGQbU;wND#d$x@5N z*WXj0)CAtnfdOY#gxAAXgK8UGV1g)!)m(fc$g z62+Ox{Y&UI2eoJyL&G?%hF}k#KBaeH@7%U=BMXR!9@)FN$mQnbJkW*!AA`!s>Ba@l ze;r6&(RIU*V#|t=bhVV@1Fl6#PyT>JNxakR6E_bG-a&u#3cRURTw(h}xpyKp9@8!d z{Zp3!k#ky1^~kfp)|RaMGkH`J8yX@ zU`?a)Q)to|lemvJTfT?Y03|H!>I%e4t{5bZh`hcd___QZ-RDD1|x;ldV;23?51`n(P9_}&*Uf(PQ_Pr2v0Nq!~NuIm@qc!IgCBxk$qF^ znIHz^D}2i@Vo~_Q1<(?6Hco$CaiAvA>a6)bq&mGiPre~R70%+?OrmJ?HRmuorfEtA zJ>w!p7RkCkZO$(o0b{3&C^*5#38V+~~ zmJD{Ve+O5bzo3Fbi5f~;DYicj=%OPG`+04pH?#=ITY)>=JpHtc1@^jP!?Af5qCSWo x13%?Tn!K}hns?<%I8=lRemFe0pFc-pb=+~^jweo|@GnFp);O%U&#~PR^*>R*oE888 literal 0 HcmV?d00001 From 32dbec2eada79cbf73a8342d97abc284d90bd813 Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Mon, 24 Jul 2023 13:29:15 -0600 Subject: [PATCH 04/52] REMOVED unnecessary files --- pruebas/01-reading-list/CarlosUlisesOchoa/public/vite.svg | 1 - pruebas/01-reading-list/CarlosUlisesOchoa/src/assets/react.svg | 1 - 2 files changed, 2 deletions(-) delete mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/public/vite.svg delete mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/src/assets/react.svg diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/public/vite.svg b/pruebas/01-reading-list/CarlosUlisesOchoa/public/vite.svg deleted file mode 100644 index e7b8dfb1b..000000000 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/public/vite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/assets/react.svg b/pruebas/01-reading-list/CarlosUlisesOchoa/src/assets/react.svg deleted file mode 100644 index 6c87de9bb..000000000 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/assets/react.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file From eab0dbd37224dc134260408429288c318e1f31ee Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Mon, 24 Jul 2023 13:29:44 -0600 Subject: [PATCH 05/52] vite config modified --- pruebas/01-reading-list/CarlosUlisesOchoa/vite.config.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/vite.config.js b/pruebas/01-reading-list/CarlosUlisesOchoa/vite.config.js index 861b04b35..9e0946381 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/vite.config.js +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/vite.config.js @@ -1,7 +1,14 @@ import { defineConfig } from 'vite' import react from '@vitejs/plugin-react-swc' +import eslint from 'vite-plugin-eslint' +import path from 'path' // https://vitejs.dev/config/ export default defineConfig({ - plugins: [react()], + plugins: [react(), eslint()], + resolve: { + alias: { + '@': path.resolve(__dirname, './src'), + }, + }, }) From aba33919151a987c08bd577e1e5efc788831c3b1 Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Mon, 24 Jul 2023 13:29:52 -0600 Subject: [PATCH 06/52] mockup added --- .../CarlosUlisesOchoa/src/mockups/books.json | 318 ++++++++---------- 1 file changed, 148 insertions(+), 170 deletions(-) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/mockups/books.json b/pruebas/01-reading-list/CarlosUlisesOchoa/src/mockups/books.json index 70f8ed994..330366fd4 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/mockups/books.json +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/mockups/books.json @@ -1,63 +1,60 @@ { "library": [ - { - "book": { - "title": "El Señor de los Anillos", - "pages": 1200, - "genre": "Fantasía", - "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1566425108i/33.jpg", - "synopsis": "Una aventura épica en un mundo de fantasía llamado la Tierra Media.", - "year": 1954, - "ISBN": "978-0618640157", - "author": { - "name": "J.R.R. Tolkien", - "otherBooks": [ - "El Hobbit", - "El Silmarillion" - ] - } - } - }, - { - "book": { - "title": "Juego de Tronos", - "pages": 694, - "genre": "Fantasía", - "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1273763400i/8189620.jpg", - "synopsis": "En un reino donde las estaciones duran años, una batalla épica por el trono se desarrolla.", - "year": 1996, - "ISBN": "978-0553103540", - "author": { - "name": "George R. R. Martin", - "otherBooks": [ - "Choque de Reyes", - "Tormenta de Espadas", - "Festín de Cuervos" - ] - } + { + "book": { + "title": "El Señor de los Anillos", + "pages": 1200, + "genre": "Fantasía", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1566425108i/33.jpg", + "synopsis": "Una aventura épica en un mundo de fantasía llamado la Tierra Media.", + "year": 1954, + "ISBN": "978-0618640157", + "author": { + "name": "J.R.R. Tolkien", + "otherBooks": ["El Hobbit", "El Silmarillion"] + } + } + }, + { + "book": { + "title": "Juego de Tronos", + "pages": 694, + "genre": "Fantasía", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1273763400i/8189620.jpg", + "synopsis": "En un reino donde las estaciones duran años, una batalla épica por el trono se desarrolla.", + "year": 1996, + "ISBN": "978-0553103540", + "author": { + "name": "George R. R. Martin", + "otherBooks": [ + "Choque de Reyes", + "Tormenta de Espadas", + "Festín de Cuervos" + ] } + } }, { "book": { - "title": "Harry Potter y la piedra filosofal", - "pages": 223, - "genre": "Fantasía", - "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1550337333i/15868.jpg", - "synopsis": "Un niño descubre que es un mago y comienza una aventura en una escuela de magia.", - "year": 1997, - "ISBN": "978-0747532699", - "author": { - "name": "J.K. Rowling", - "otherBooks": [ - "Harry Potter y la cámara secreta", - "Harry Potter y el prisionero de Azkaban", - "Harry Potter y el cáliz de fuego" - ] - } + "title": "Harry Potter y la piedra filosofal", + "pages": 223, + "genre": "Fantasía", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1550337333i/15868.jpg", + "synopsis": "Un niño descubre que es un mago y comienza una aventura en una escuela de magia.", + "year": 1997, + "ISBN": "978-0747532699", + "author": { + "name": "J.K. Rowling", + "otherBooks": [ + "Harry Potter y la cámara secreta", + "Harry Potter y el prisionero de Azkaban", + "Harry Potter y el cáliz de fuego" + ] + } } - }, - { - "book": { + }, + { + "book": { "title": "1984", "pages": 328, "genre": "Ciencia ficción", @@ -66,15 +63,13 @@ "year": 1949, "ISBN": "978-0451524935", "author": { - "name": "George Orwell", - "otherBooks": [ - "Rebelión en la granja" - ] + "name": "George Orwell", + "otherBooks": ["Rebelión en la granja"] } - } -}, - { - "book": { + } + }, + { + "book": { "title": "Apocalipsis Zombie", "pages": 444, "genre": "Zombies", @@ -83,85 +78,76 @@ "year": 2001, "ISBN": "978-4444532611", "author": { - "name": "Manel Loreiro", - "otherBooks": [] + "name": "Manel Loreiro", + "otherBooks": [] } - } -}, -{ - "book": { - "title": "Dune", - "pages": 412, - "genre": "Ciencia ficción", - "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1555447414i/44767458.jpg", - "synopsis": "En el inhóspito planeta desértico de Arrakis, una gran intriga política y familiar se desarrolla.", - "year": 1965, - "ISBN": "978-0441172719", - "author": { + } + }, + { + "book": { + "title": "Dune", + "pages": 412, + "genre": "Ciencia ficción", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1555447414i/44767458.jpg", + "synopsis": "En el inhóspito planeta desértico de Arrakis, una gran intriga política y familiar se desarrolla.", + "year": 1965, + "ISBN": "978-0441172719", + "author": { "name": "Frank Herbert", - "otherBooks": [ - "El mesías de Dune", - "Hijos de Dune" - ] + "otherBooks": ["El mesías de Dune", "Hijos de Dune"] + } } - } -}, -{ - "book": { - "title": "La Guía del Autoestopista Galáctico", - "pages": 216, - "genre": "Ciencia ficción", - "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1653311117i/6691227.jpg", - "synopsis": "Un viaje absurdo y cómico por el espacio, con toallas.", - "year": 1979, - "ISBN": "978-0345391803", - "author": { + }, + { + "book": { + "title": "La Guía del Autoestopista Galáctico", + "pages": 216, + "genre": "Ciencia ficción", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1653311117i/6691227.jpg", + "synopsis": "Un viaje absurdo y cómico por el espacio, con toallas.", + "year": 1979, + "ISBN": "978-0345391803", + "author": { "name": "Douglas Adams", "otherBooks": [ - "El restaurante del fin del mundo", - "La vida, el universo y todo lo demás" + "El restaurante del fin del mundo", + "La vida, el universo y todo lo demás" ] + } } - } -}, -{ - "book": { - "title": "Neuromante", - "pages": 271, - "genre": "Ciencia ficción", - "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1554437249i/6088007.jpg", - "synopsis": "Una visión profética de la ciber-realidad y la inteligencia artificial.", - "year": 1984, - "ISBN": "978-0441569595", - "author": { + }, + { + "book": { + "title": "Neuromante", + "pages": 271, + "genre": "Ciencia ficción", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1554437249i/6088007.jpg", + "synopsis": "Una visión profética de la ciber-realidad y la inteligencia artificial.", + "year": 1984, + "ISBN": "978-0441569595", + "author": { "name": "William Gibson", - "otherBooks": [ - "Conde Cero", - "Mona Lisa Acelerada" - ] + "otherBooks": ["Conde Cero", "Mona Lisa Acelerada"] + } } - } -}, -{ - "book": { - "title": "Fahrenheit 451", - "pages": 249, - "genre": "Ciencia ficción", - "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1383718290i/13079982.jpg", - "synopsis": "Una sociedad futura donde los libros están prohibidos y 'bomberos' queman cualquier libro que encuentren.", - "year": 1953, - "ISBN": "978-1451673319", - "author": { + }, + { + "book": { + "title": "Fahrenheit 451", + "pages": 249, + "genre": "Ciencia ficción", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1383718290i/13079982.jpg", + "synopsis": "Una sociedad futura donde los libros están prohibidos y 'bomberos' queman cualquier libro que encuentren.", + "year": 1953, + "ISBN": "978-1451673319", + "author": { "name": "Ray Bradbury", - "otherBooks": [ - "Crónicas marcianas", - "El hombre ilustrado" - ] + "otherBooks": ["Crónicas marcianas", "El hombre ilustrado"] + } } - } -}, - { - "book": { + }, + { + "book": { "title": "El resplandor", "pages": 688, "genre": "Terror", @@ -170,16 +156,13 @@ "year": 1977, "ISBN": "978-0307743657", "author": { - "name": "Stephen King", - "otherBooks": [ - "Carrie", - "It" - ] + "name": "Stephen King", + "otherBooks": ["Carrie", "It"] } - } -}, -{ - "book": { + } + }, + { + "book": { "title": "Drácula", "pages": 418, "genre": "Terror", @@ -188,16 +171,16 @@ "year": 1897, "ISBN": "978-0486411095", "author": { - "name": "Bram Stoker", - "otherBooks": [ - "La joya de las siete estrellas", - "La madriguera del gusano blanco" - ] + "name": "Bram Stoker", + "otherBooks": [ + "La joya de las siete estrellas", + "La madriguera del gusano blanco" + ] } - } -}, -{ - "book": { + } + }, + { + "book": { "title": "Frankenstein", "pages": 280, "genre": "Terror", @@ -206,30 +189,25 @@ "year": 1818, "ISBN": "978-0486282114", "author": { - "name": "Mary Shelley", - "otherBooks": [ - "El último hombre", - "Valperga" - ] + "name": "Mary Shelley", + "otherBooks": ["El último hombre", "Valperga"] } - } -}, -{ - "book": { - "title": "La llamada de Cthulhu", - "pages": 43, - "genre": "Terror", - "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1485924654i/34094154.jpg", - "synopsis": "La historia de un monstruo ancestral que amenaza con revivir y dominar el mundo.", - "year": 1928, - "ISBN": "978-1542461690", - "author": { + } + }, + { + "book": { + "title": "La llamada de Cthulhu", + "pages": 43, + "genre": "Terror", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1485924654i/34094154.jpg", + "synopsis": "La historia de un monstruo ancestral que amenaza con revivir y dominar el mundo.", + "year": 1928, + "ISBN": "978-1542461690", + "author": { "name": "H.P. Lovecraft", - "otherBooks": [ - "El horror de Dunwich", - "En las montañas de la locura" - ] + "otherBooks": ["El horror de Dunwich", "En las montañas de la locura"] + } } } - } -]} + ] +} From e86ed3117053ab254f9bc363eaa35ba6d3b042e4 Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Mon, 24 Jul 2023 13:30:41 -0600 Subject: [PATCH 07/52] REMOVED unnecessary code in default files --- .../CarlosUlisesOchoa/src/App.jsx | 32 ++----------------- .../CarlosUlisesOchoa/src/main.jsx | 6 ++-- 2 files changed, 5 insertions(+), 33 deletions(-) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx index b8b8473a3..650afb8c6 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx @@ -1,35 +1,7 @@ -import { useState } from 'react' -import reactLogo from './assets/react.svg' -import viteLogo from '/vite.svg' -import './App.css' +import '@/App.css' function App() { - const [count, setCount] = useState(0) - - return ( - <> - -

Vite + React

-
- -

- Edit src/App.jsx and save to test HMR -

-
-

- Click on the Vite and React logos to learn more -

- - ) + return

Work In Progress...

} export default App diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/main.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/main.jsx index 54b39dd1d..b5bfad796 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/main.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/main.jsx @@ -1,10 +1,10 @@ import React from 'react' import ReactDOM from 'react-dom/client' -import App from './App.jsx' -import './index.css' +import App from '@/App.jsx' +import '@/index.css' ReactDOM.createRoot(document.getElementById('root')).render( - , + ) From 4270b75b1abce3f7b753027a82c25e9b8ae0ef2e Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Mon, 24 Jul 2023 13:58:22 -0600 Subject: [PATCH 08/52] MOVING books.json --- .../CarlosUlisesOchoa/src/{mockups => data}/books.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename pruebas/01-reading-list/CarlosUlisesOchoa/src/{mockups => data}/books.json (100%) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/mockups/books.json b/pruebas/01-reading-list/CarlosUlisesOchoa/src/data/books.json similarity index 100% rename from pruebas/01-reading-list/CarlosUlisesOchoa/src/mockups/books.json rename to pruebas/01-reading-list/CarlosUlisesOchoa/src/data/books.json From c089d58b74f9ef00cb825dd05df6687f2361617d Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Mon, 24 Jul 2023 14:07:09 -0600 Subject: [PATCH 09/52] ADD tailwind and its config --- .../CarlosUlisesOchoa/package.json | 3 + .../CarlosUlisesOchoa/pnpm-lock.yaml | 3558 ++++++----------- .../CarlosUlisesOchoa/postcss.config.js | 6 + .../CarlosUlisesOchoa/src/App.css | 36 - .../CarlosUlisesOchoa/src/index.css | 50 +- .../CarlosUlisesOchoa/tailwind.config.js | 26 + 6 files changed, 1202 insertions(+), 2477 deletions(-) create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/postcss.config.js create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/tailwind.config.js diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/package.json b/pruebas/01-reading-list/CarlosUlisesOchoa/package.json index 0d8ee8ebf..46a46860b 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/package.json +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/package.json @@ -25,14 +25,17 @@ "@types/react": "^18.2.15", "@types/react-dom": "^18.2.7", "@vitejs/plugin-react-swc": "^3.3.2", + "autoprefixer": "^10.4.14", "eslint": "^8.45.0", "eslint-config-prettier": "^8.8.0", "eslint-config-react-app": "^7.0.1", "eslint-plugin-react": "^7.32.2", "eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-refresh": "^0.4.3", + "postcss": "^8.4.27", "prettier": "^3.0.0", "standard": "^17.1.0", + "tailwindcss": "^3.3.3", "typescript": ">=2.8.0", "vite": "^4.4.5", "vite-plugin-eslint": "^1.8.1" diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml b/pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml index c823e99ef..5ab1837a1 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml @@ -7,16 +7,19 @@ specifiers: '@types/react': ^18.2.15 '@types/react-dom': ^18.2.7 '@vitejs/plugin-react-swc': ^3.3.2 + autoprefixer: ^10.4.14 eslint: ^8.45.0 eslint-config-prettier: ^8.8.0 eslint-config-react-app: ^7.0.1 eslint-plugin-react: ^7.32.2 eslint-plugin-react-hooks: ^4.6.0 eslint-plugin-react-refresh: ^0.4.3 + postcss: ^8.4.27 prettier: ^3.0.0 react: ^18.2.0 react-dom: ^18.2.0 standard: ^17.1.0 + tailwindcss: ^3.3.3 typescript: '>=2.8.0' vite: ^4.4.5 vite-plugin-eslint: ^1.8.1 @@ -32,62 +35,56 @@ devDependencies: '@types/react': 18.2.15 '@types/react-dom': 18.2.7 '@vitejs/plugin-react-swc': 3.3.2_vite@4.4.6 + autoprefixer: 10.4.14_postcss@8.4.27 eslint: 8.45.0 eslint-config-prettier: 8.8.0_eslint@8.45.0 eslint-config-react-app: 7.0.1_cehorzkv5ezvj4qputao2nrtpq eslint-plugin-react: 7.33.0_eslint@8.45.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.45.0 eslint-plugin-react-refresh: 0.4.3_eslint@8.45.0 + postcss: 8.4.27 prettier: 3.0.0 standard: 17.1.0 + tailwindcss: 3.3.3 typescript: 5.1.6 vite: 4.4.6 vite-plugin-eslint: 1.8.1_eslint@8.45.0+vite@4.4.6 packages: + /@aashutoshrathi/word-wrap/1.2.6: - resolution: - { - integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==, - } - engines: { node: '>=0.10.0' } + resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} + engines: {node: '>=0.10.0'} + dev: true + + /@alloc/quick-lru/5.2.0: + resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} + engines: {node: '>=10'} dev: true /@ampproject/remapping/2.2.1: - resolution: - { - integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==, - } - engines: { node: '>=6.0.0' } + resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} + engines: {node: '>=6.0.0'} dependencies: '@jridgewell/gen-mapping': 0.3.3 '@jridgewell/trace-mapping': 0.3.18 dev: true /@babel/code-frame/7.22.5: - resolution: - { - integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==} + engines: {node: '>=6.9.0'} dependencies: '@babel/highlight': 7.22.5 dev: true /@babel/compat-data/7.22.9: - resolution: - { - integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==} + engines: {node: '>=6.9.0'} dev: true /@babel/core/7.22.9: - resolution: - { - integrity: sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==} + engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.1 '@babel/code-frame': 7.22.5 @@ -109,11 +106,8 @@ packages: dev: true /@babel/eslint-parser/7.22.9_mxva3tvsh22zo7fr2tqrirzrru: - resolution: - { - integrity: sha512-xdMkt39/nviO/4vpVdrEYPwXCsYIXSSAr6mC7WQsNIlGnuxKyKE7GZjalcnbSWiC4OXGNNN3UQPeHfjSC6sTDA==, - } - engines: { node: ^10.13.0 || ^12.13.0 || >=14.0.0 } + resolution: {integrity: sha512-xdMkt39/nviO/4vpVdrEYPwXCsYIXSSAr6mC7WQsNIlGnuxKyKE7GZjalcnbSWiC4OXGNNN3UQPeHfjSC6sTDA==} + engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: '@babel/core': '>=7.11.0' eslint: ^7.5.0 || ^8.0.0 @@ -126,11 +120,8 @@ packages: dev: true /@babel/generator/7.22.9: - resolution: - { - integrity: sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==} + engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.5 '@jridgewell/gen-mapping': 0.3.3 @@ -139,31 +130,22 @@ packages: dev: true /@babel/helper-annotate-as-pure/7.22.5: - resolution: - { - integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} + engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.5 dev: true /@babel/helper-builder-binary-assignment-operator-visitor/7.22.5: - resolution: - { - integrity: sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==} + engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.5 dev: true /@babel/helper-compilation-targets/7.22.9_@babel+core@7.22.9: - resolution: - { - integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -176,11 +158,8 @@ packages: dev: true /@babel/helper-create-class-features-plugin/7.22.9_@babel+core@7.22.9: - resolution: - { - integrity: sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -197,11 +176,8 @@ packages: dev: true /@babel/helper-create-regexp-features-plugin/7.22.9_@babel+core@7.22.9: - resolution: - { - integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -212,10 +188,7 @@ packages: dev: true /@babel/helper-define-polyfill-provider/0.4.2_@babel+core@7.22.9: - resolution: - { - integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==, - } + resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: @@ -230,60 +203,42 @@ packages: dev: true /@babel/helper-environment-visitor/7.22.5: - resolution: - { - integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==} + engines: {node: '>=6.9.0'} dev: true /@babel/helper-function-name/7.22.5: - resolution: - { - integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==} + engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.22.5 '@babel/types': 7.22.5 dev: true /@babel/helper-hoist-variables/7.22.5: - resolution: - { - integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} + engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.5 dev: true /@babel/helper-member-expression-to-functions/7.22.5: - resolution: - { - integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==} + engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.5 dev: true /@babel/helper-module-imports/7.22.5: - resolution: - { - integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==} + engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.5 dev: true /@babel/helper-module-transforms/7.22.9_@babel+core@7.22.9: - resolution: - { - integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -296,29 +251,20 @@ packages: dev: true /@babel/helper-optimise-call-expression/7.22.5: - resolution: - { - integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} + engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.5 dev: true /@babel/helper-plugin-utils/7.22.5: - resolution: - { - integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} + engines: {node: '>=6.9.0'} dev: true /@babel/helper-remap-async-to-generator/7.22.9_@babel+core@7.22.9: - resolution: - { - integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -329,11 +275,8 @@ packages: dev: true /@babel/helper-replace-supers/7.22.9_@babel+core@7.22.9: - resolution: - { - integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -344,65 +287,44 @@ packages: dev: true /@babel/helper-simple-access/7.22.5: - resolution: - { - integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} + engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.5 dev: true /@babel/helper-skip-transparent-expression-wrappers/7.22.5: - resolution: - { - integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} + engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.5 dev: true /@babel/helper-split-export-declaration/7.22.6: - resolution: - { - integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} + engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.5 dev: true /@babel/helper-string-parser/7.22.5: - resolution: - { - integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} + engines: {node: '>=6.9.0'} dev: true /@babel/helper-validator-identifier/7.22.5: - resolution: - { - integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==} + engines: {node: '>=6.9.0'} dev: true /@babel/helper-validator-option/7.22.5: - resolution: - { - integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==} + engines: {node: '>=6.9.0'} dev: true /@babel/helper-wrap-function/7.22.9: - resolution: - { - integrity: sha512-sZ+QzfauuUEfxSEjKFmi3qDSHgLsTPK/pEpoD/qonZKOtTPTLbf59oabPQ4rKekt9lFcj/hTZaOhWwFYrgjk+Q==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-sZ+QzfauuUEfxSEjKFmi3qDSHgLsTPK/pEpoD/qonZKOtTPTLbf59oabPQ4rKekt9lFcj/hTZaOhWwFYrgjk+Q==} + engines: {node: '>=6.9.0'} dependencies: '@babel/helper-function-name': 7.22.5 '@babel/template': 7.22.5 @@ -410,11 +332,8 @@ packages: dev: true /@babel/helpers/7.22.6: - resolution: - { - integrity: sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==} + engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.22.5 '@babel/traverse': 7.22.8 @@ -424,11 +343,8 @@ packages: dev: true /@babel/highlight/7.22.5: - resolution: - { - integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==} + engines: {node: '>=6.9.0'} dependencies: '@babel/helper-validator-identifier': 7.22.5 chalk: 2.4.2 @@ -436,22 +352,16 @@ packages: dev: true /@babel/parser/7.22.7: - resolution: - { - integrity: sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==, - } - engines: { node: '>=6.0.0' } + resolution: {integrity: sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==} + engines: {node: '>=6.0.0'} hasBin: true dependencies: '@babel/types': 7.22.5 dev: true /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -460,11 +370,8 @@ packages: dev: true /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: @@ -475,11 +382,8 @@ packages: dev: true /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.22.9: - resolution: - { - integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -489,11 +393,8 @@ packages: dev: true /@babel/plugin-proposal-decorators/7.22.7_@babel+core@7.22.9: - resolution: - { - integrity: sha512-omXqPF7Onq4Bb7wHxXjM3jSMSJvUUbvDvmmds7KI5n9Cq6Ln5I05I1W2nRlRof1rGdiUxJrxwe285WF96XlBXQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-omXqPF7Onq4Bb7wHxXjM3jSMSJvUUbvDvmmds7KI5n9Cq6Ln5I05I1W2nRlRof1rGdiUxJrxwe285WF96XlBXQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -506,11 +407,8 @@ packages: dev: true /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.22.9: - resolution: - { - integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -520,11 +418,8 @@ packages: dev: true /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.22.9: - resolution: - { - integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -534,11 +429,8 @@ packages: dev: true /@babel/plugin-proposal-optional-chaining/7.21.0_@babel+core@7.22.9: - resolution: - { - integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -549,11 +441,8 @@ packages: dev: true /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.22.9: - resolution: - { - integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -563,11 +452,8 @@ packages: dev: true /@babel/plugin-proposal-private-property-in-object/7.21.0-placeholder-for-preset-env.2_@babel+core@7.22.9: - resolution: - { - integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -575,11 +461,8 @@ packages: dev: true /@babel/plugin-proposal-private-property-in-object/7.21.11_@babel+core@7.22.9: - resolution: - { - integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -591,11 +474,8 @@ packages: dev: true /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.22.9: - resolution: - { - integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} + engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -605,10 +485,7 @@ packages: dev: true /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.22.9: - resolution: - { - integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, - } + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -617,10 +494,7 @@ packages: dev: true /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.22.9: - resolution: - { - integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, - } + resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -629,11 +503,8 @@ packages: dev: true /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -642,11 +513,8 @@ packages: dev: true /@babel/plugin-syntax-decorators/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -655,10 +523,7 @@ packages: dev: true /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.22.9: - resolution: - { - integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==, - } + resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -667,10 +532,7 @@ packages: dev: true /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.22.9: - resolution: - { - integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==, - } + resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -679,11 +541,8 @@ packages: dev: true /@babel/plugin-syntax-flow/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -692,11 +551,8 @@ packages: dev: true /@babel/plugin-syntax-import-assertions/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -705,11 +561,8 @@ packages: dev: true /@babel/plugin-syntax-import-attributes/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -718,10 +571,7 @@ packages: dev: true /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.22.9: - resolution: - { - integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, - } + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -730,10 +580,7 @@ packages: dev: true /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.22.9: - resolution: - { - integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, - } + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -742,11 +589,8 @@ packages: dev: true /@babel/plugin-syntax-jsx/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -755,10 +599,7 @@ packages: dev: true /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.22.9: - resolution: - { - integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, - } + resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -767,10 +608,7 @@ packages: dev: true /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.22.9: - resolution: - { - integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, - } + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -779,10 +617,7 @@ packages: dev: true /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.22.9: - resolution: - { - integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, - } + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -791,10 +626,7 @@ packages: dev: true /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.22.9: - resolution: - { - integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, - } + resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -803,10 +635,7 @@ packages: dev: true /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.22.9: - resolution: - { - integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, - } + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -815,10 +644,7 @@ packages: dev: true /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.22.9: - resolution: - { - integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, - } + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -827,11 +653,8 @@ packages: dev: true /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -840,11 +663,8 @@ packages: dev: true /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -853,11 +673,8 @@ packages: dev: true /@babel/plugin-syntax-typescript/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -866,11 +683,8 @@ packages: dev: true /@babel/plugin-syntax-unicode-sets-regex/7.18.6_@babel+core@7.22.9: - resolution: - { - integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -880,11 +694,8 @@ packages: dev: true /@babel/plugin-transform-arrow-functions/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -893,11 +704,8 @@ packages: dev: true /@babel/plugin-transform-async-generator-functions/7.22.7_@babel+core@7.22.9: - resolution: - { - integrity: sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -909,11 +717,8 @@ packages: dev: true /@babel/plugin-transform-async-to-generator/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -924,11 +729,8 @@ packages: dev: true /@babel/plugin-transform-block-scoped-functions/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -937,11 +739,8 @@ packages: dev: true /@babel/plugin-transform-block-scoping/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -950,11 +749,8 @@ packages: dev: true /@babel/plugin-transform-class-properties/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -964,11 +760,8 @@ packages: dev: true /@babel/plugin-transform-class-static-block/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: @@ -979,11 +772,8 @@ packages: dev: true /@babel/plugin-transform-classes/7.22.6_@babel+core@7.22.9: - resolution: - { - integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1000,11 +790,8 @@ packages: dev: true /@babel/plugin-transform-computed-properties/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1014,11 +801,8 @@ packages: dev: true /@babel/plugin-transform-destructuring/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1027,11 +811,8 @@ packages: dev: true /@babel/plugin-transform-dotall-regex/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1041,11 +822,8 @@ packages: dev: true /@babel/plugin-transform-duplicate-keys/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1054,11 +832,8 @@ packages: dev: true /@babel/plugin-transform-dynamic-import/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1068,11 +843,8 @@ packages: dev: true /@babel/plugin-transform-exponentiation-operator/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1082,11 +854,8 @@ packages: dev: true /@babel/plugin-transform-export-namespace-from/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1096,11 +865,8 @@ packages: dev: true /@babel/plugin-transform-flow-strip-types/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1110,11 +876,8 @@ packages: dev: true /@babel/plugin-transform-for-of/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1123,11 +886,8 @@ packages: dev: true /@babel/plugin-transform-function-name/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1138,11 +898,8 @@ packages: dev: true /@babel/plugin-transform-json-strings/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1152,11 +909,8 @@ packages: dev: true /@babel/plugin-transform-literals/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1165,11 +919,8 @@ packages: dev: true /@babel/plugin-transform-logical-assignment-operators/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1179,11 +930,8 @@ packages: dev: true /@babel/plugin-transform-member-expression-literals/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1192,11 +940,8 @@ packages: dev: true /@babel/plugin-transform-modules-amd/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1206,11 +951,8 @@ packages: dev: true /@babel/plugin-transform-modules-commonjs/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1221,11 +963,8 @@ packages: dev: true /@babel/plugin-transform-modules-systemjs/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1237,11 +976,8 @@ packages: dev: true /@babel/plugin-transform-modules-umd/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1251,11 +987,8 @@ packages: dev: true /@babel/plugin-transform-named-capturing-groups-regex/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -1265,11 +998,8 @@ packages: dev: true /@babel/plugin-transform-new-target/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1278,11 +1008,8 @@ packages: dev: true /@babel/plugin-transform-nullish-coalescing-operator/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1292,11 +1019,8 @@ packages: dev: true /@babel/plugin-transform-numeric-separator/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1306,11 +1030,8 @@ packages: dev: true /@babel/plugin-transform-object-rest-spread/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1323,11 +1044,8 @@ packages: dev: true /@babel/plugin-transform-object-super/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1337,11 +1055,8 @@ packages: dev: true /@babel/plugin-transform-optional-catch-binding/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1351,11 +1066,8 @@ packages: dev: true /@babel/plugin-transform-optional-chaining/7.22.6_@babel+core@7.22.9: - resolution: - { - integrity: sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1366,11 +1078,8 @@ packages: dev: true /@babel/plugin-transform-parameters/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1379,11 +1088,8 @@ packages: dev: true /@babel/plugin-transform-private-methods/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1393,11 +1099,8 @@ packages: dev: true /@babel/plugin-transform-private-property-in-object/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1409,11 +1112,8 @@ packages: dev: true /@babel/plugin-transform-property-literals/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1422,11 +1122,8 @@ packages: dev: true /@babel/plugin-transform-react-display-name/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1435,11 +1132,8 @@ packages: dev: true /@babel/plugin-transform-react-jsx-development/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1448,11 +1142,8 @@ packages: dev: true /@babel/plugin-transform-react-jsx/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1465,11 +1156,8 @@ packages: dev: true /@babel/plugin-transform-react-pure-annotations/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1479,11 +1167,8 @@ packages: dev: true /@babel/plugin-transform-regenerator/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1493,11 +1178,8 @@ packages: dev: true /@babel/plugin-transform-reserved-words/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1506,11 +1188,8 @@ packages: dev: true /@babel/plugin-transform-runtime/7.22.9_@babel+core@7.22.9: - resolution: - { - integrity: sha512-9KjBH61AGJetCPYp/IEyLEp47SyybZb0nDRpBvmtEkm+rUIwxdlKpyNHI1TmsGkeuLclJdleQHRZ8XLBnnh8CQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-9KjBH61AGJetCPYp/IEyLEp47SyybZb0nDRpBvmtEkm+rUIwxdlKpyNHI1TmsGkeuLclJdleQHRZ8XLBnnh8CQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1526,11 +1205,8 @@ packages: dev: true /@babel/plugin-transform-shorthand-properties/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1539,11 +1215,8 @@ packages: dev: true /@babel/plugin-transform-spread/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1553,11 +1226,8 @@ packages: dev: true /@babel/plugin-transform-sticky-regex/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1566,11 +1236,8 @@ packages: dev: true /@babel/plugin-transform-template-literals/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1579,11 +1246,8 @@ packages: dev: true /@babel/plugin-transform-typeof-symbol/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1592,11 +1256,8 @@ packages: dev: true /@babel/plugin-transform-typescript/7.22.9_@babel+core@7.22.9: - resolution: - { - integrity: sha512-BnVR1CpKiuD0iobHPaM1iLvcwPYN2uVFAqoLVSpEDKWuOikoCv5HbKLxclhKYUXlWkX86DoZGtqI4XhbOsyrMg==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-BnVR1CpKiuD0iobHPaM1iLvcwPYN2uVFAqoLVSpEDKWuOikoCv5HbKLxclhKYUXlWkX86DoZGtqI4XhbOsyrMg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1608,11 +1269,8 @@ packages: dev: true /@babel/plugin-transform-unicode-escapes/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1621,11 +1279,8 @@ packages: dev: true /@babel/plugin-transform-unicode-property-regex/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1635,11 +1290,8 @@ packages: dev: true /@babel/plugin-transform-unicode-regex/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1649,11 +1301,8 @@ packages: dev: true /@babel/plugin-transform-unicode-sets-regex/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -1663,11 +1312,8 @@ packages: dev: true /@babel/preset-env/7.22.9_@babel+core@7.22.9: - resolution: - { - integrity: sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1757,10 +1403,7 @@ packages: dev: true /@babel/preset-modules/0.1.6_@babel+core@7.22.9: - resolution: - { - integrity: sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==, - } + resolution: {integrity: sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==} peerDependencies: '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: @@ -1773,11 +1416,8 @@ packages: dev: true /@babel/preset-react/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-M+Is3WikOpEJHgR385HbuCITPTaPRaNkibTEa9oiofmJvIsrceb4yp9RL9Kb+TE8LznmeyZqpP+Lopwcx59xPQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-M+Is3WikOpEJHgR385HbuCITPTaPRaNkibTEa9oiofmJvIsrceb4yp9RL9Kb+TE8LznmeyZqpP+Lopwcx59xPQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1791,11 +1431,8 @@ packages: dev: true /@babel/preset-typescript/7.22.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1808,28 +1445,19 @@ packages: dev: true /@babel/regjsgen/0.8.0: - resolution: - { - integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==, - } + resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} dev: true /@babel/runtime/7.22.6: - resolution: - { - integrity: sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==} + engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.13.11 dev: true /@babel/template/7.22.5: - resolution: - { - integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==} + engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.22.5 '@babel/parser': 7.22.7 @@ -1837,11 +1465,8 @@ packages: dev: true /@babel/traverse/7.22.8: - resolution: - { - integrity: sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==} + engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.22.5 '@babel/generator': 7.22.9 @@ -1858,11 +1483,8 @@ packages: dev: true /@babel/types/7.22.5: - resolution: - { - integrity: sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==} + engines: {node: '>=6.9.0'} dependencies: '@babel/helper-string-parser': 7.22.5 '@babel/helper-validator-identifier': 7.22.5 @@ -1870,11 +1492,8 @@ packages: dev: true /@esbuild/android-arm/0.18.16: - resolution: - { - integrity: sha512-gCHjjQmA8L0soklKbLKA6pgsLk1byULuHe94lkZDzcO3/Ta+bbeewJioEn1Fr7kgy9NWNFy/C+MrBwC6I/WCug==, - } - engines: { node: '>=12' } + resolution: {integrity: sha512-gCHjjQmA8L0soklKbLKA6pgsLk1byULuHe94lkZDzcO3/Ta+bbeewJioEn1Fr7kgy9NWNFy/C+MrBwC6I/WCug==} + engines: {node: '>=12'} cpu: [arm] os: [android] requiresBuild: true @@ -1882,11 +1501,8 @@ packages: optional: true /@esbuild/android-arm64/0.18.16: - resolution: - { - integrity: sha512-wsCqSPqLz+6Ov+OM4EthU43DyYVVyfn15S4j1bJzylDpc1r1jZFFfJQNfDuT8SlgwuqpmpJXK4uPlHGw6ve7eA==, - } - engines: { node: '>=12' } + resolution: {integrity: sha512-wsCqSPqLz+6Ov+OM4EthU43DyYVVyfn15S4j1bJzylDpc1r1jZFFfJQNfDuT8SlgwuqpmpJXK4uPlHGw6ve7eA==} + engines: {node: '>=12'} cpu: [arm64] os: [android] requiresBuild: true @@ -1894,11 +1510,8 @@ packages: optional: true /@esbuild/android-x64/0.18.16: - resolution: - { - integrity: sha512-ldsTXolyA3eTQ1//4DS+E15xl0H/3DTRJaRL0/0PgkqDsI0fV/FlOtD+h0u/AUJr+eOTlZv4aC9gvfppo3C4sw==, - } - engines: { node: '>=12' } + resolution: {integrity: sha512-ldsTXolyA3eTQ1//4DS+E15xl0H/3DTRJaRL0/0PgkqDsI0fV/FlOtD+h0u/AUJr+eOTlZv4aC9gvfppo3C4sw==} + engines: {node: '>=12'} cpu: [x64] os: [android] requiresBuild: true @@ -1906,11 +1519,8 @@ packages: optional: true /@esbuild/darwin-arm64/0.18.16: - resolution: - { - integrity: sha512-aBxruWCII+OtluORR/KvisEw0ALuw/qDQWvkoosA+c/ngC/Kwk0lLaZ+B++LLS481/VdydB2u6tYpWxUfnLAIw==, - } - engines: { node: '>=12' } + resolution: {integrity: sha512-aBxruWCII+OtluORR/KvisEw0ALuw/qDQWvkoosA+c/ngC/Kwk0lLaZ+B++LLS481/VdydB2u6tYpWxUfnLAIw==} + engines: {node: '>=12'} cpu: [arm64] os: [darwin] requiresBuild: true @@ -1918,11 +1528,8 @@ packages: optional: true /@esbuild/darwin-x64/0.18.16: - resolution: - { - integrity: sha512-6w4Dbue280+rp3LnkgmriS1icOUZDyPuZo/9VsuMUTns7SYEiOaJ7Ca1cbhu9KVObAWfmdjUl4gwy9TIgiO5eA==, - } - engines: { node: '>=12' } + resolution: {integrity: sha512-6w4Dbue280+rp3LnkgmriS1icOUZDyPuZo/9VsuMUTns7SYEiOaJ7Ca1cbhu9KVObAWfmdjUl4gwy9TIgiO5eA==} + engines: {node: '>=12'} cpu: [x64] os: [darwin] requiresBuild: true @@ -1930,11 +1537,8 @@ packages: optional: true /@esbuild/freebsd-arm64/0.18.16: - resolution: - { - integrity: sha512-x35fCebhe9s979DGKbVAwXUOcTmCIE32AIqB9CB1GralMIvxdnMLAw5CnID17ipEw9/3MvDsusj/cspYt2ZLNQ==, - } - engines: { node: '>=12' } + resolution: {integrity: sha512-x35fCebhe9s979DGKbVAwXUOcTmCIE32AIqB9CB1GralMIvxdnMLAw5CnID17ipEw9/3MvDsusj/cspYt2ZLNQ==} + engines: {node: '>=12'} cpu: [arm64] os: [freebsd] requiresBuild: true @@ -1942,11 +1546,8 @@ packages: optional: true /@esbuild/freebsd-x64/0.18.16: - resolution: - { - integrity: sha512-YM98f+PeNXF3GbxIJlUsj+McUWG1irguBHkszCIwfr3BXtXZsXo0vqybjUDFfu9a8Wr7uUD/YSmHib+EeGAFlg==, - } - engines: { node: '>=12' } + resolution: {integrity: sha512-YM98f+PeNXF3GbxIJlUsj+McUWG1irguBHkszCIwfr3BXtXZsXo0vqybjUDFfu9a8Wr7uUD/YSmHib+EeGAFlg==} + engines: {node: '>=12'} cpu: [x64] os: [freebsd] requiresBuild: true @@ -1954,11 +1555,8 @@ packages: optional: true /@esbuild/linux-arm/0.18.16: - resolution: - { - integrity: sha512-b5ABb+5Ha2C9JkeZXV+b+OruR1tJ33ePmv9ZwMeETSEKlmu/WJ45XTTG+l6a2KDsQtJJ66qo/hbSGBtk0XVLHw==, - } - engines: { node: '>=12' } + resolution: {integrity: sha512-b5ABb+5Ha2C9JkeZXV+b+OruR1tJ33ePmv9ZwMeETSEKlmu/WJ45XTTG+l6a2KDsQtJJ66qo/hbSGBtk0XVLHw==} + engines: {node: '>=12'} cpu: [arm] os: [linux] requiresBuild: true @@ -1966,11 +1564,8 @@ packages: optional: true /@esbuild/linux-arm64/0.18.16: - resolution: - { - integrity: sha512-XIqhNUxJiuy+zsR77+H5Z2f7s4YRlriSJKtvx99nJuG5ATuJPjmZ9n0ANgnGlPCpXGSReFpgcJ7O3SMtzIFeiQ==, - } - engines: { node: '>=12' } + resolution: {integrity: sha512-XIqhNUxJiuy+zsR77+H5Z2f7s4YRlriSJKtvx99nJuG5ATuJPjmZ9n0ANgnGlPCpXGSReFpgcJ7O3SMtzIFeiQ==} + engines: {node: '>=12'} cpu: [arm64] os: [linux] requiresBuild: true @@ -1978,11 +1573,8 @@ packages: optional: true /@esbuild/linux-ia32/0.18.16: - resolution: - { - integrity: sha512-no+pfEpwnRvIyH+txbBAWtjxPU9grslmTBfsmDndj7bnBmr55rOo/PfQmRfz7Qg9isswt1FP5hBbWb23fRWnow==, - } - engines: { node: '>=12' } + resolution: {integrity: sha512-no+pfEpwnRvIyH+txbBAWtjxPU9grslmTBfsmDndj7bnBmr55rOo/PfQmRfz7Qg9isswt1FP5hBbWb23fRWnow==} + engines: {node: '>=12'} cpu: [ia32] os: [linux] requiresBuild: true @@ -1990,11 +1582,8 @@ packages: optional: true /@esbuild/linux-loong64/0.18.16: - resolution: - { - integrity: sha512-Zbnczs9ZXjmo0oZSS0zbNlJbcwKXa/fcNhYQjahDs4Xg18UumpXG/lwM2lcSvHS3mTrRyCYZvJbmzYc4laRI1g==, - } - engines: { node: '>=12' } + resolution: {integrity: sha512-Zbnczs9ZXjmo0oZSS0zbNlJbcwKXa/fcNhYQjahDs4Xg18UumpXG/lwM2lcSvHS3mTrRyCYZvJbmzYc4laRI1g==} + engines: {node: '>=12'} cpu: [loong64] os: [linux] requiresBuild: true @@ -2002,11 +1591,8 @@ packages: optional: true /@esbuild/linux-mips64el/0.18.16: - resolution: - { - integrity: sha512-YMF7hih1HVR/hQVa/ot4UVffc5ZlrzEb3k2ip0nZr1w6fnYypll9td2qcoMLvd3o8j3y6EbJM3MyIcXIVzXvQQ==, - } - engines: { node: '>=12' } + resolution: {integrity: sha512-YMF7hih1HVR/hQVa/ot4UVffc5ZlrzEb3k2ip0nZr1w6fnYypll9td2qcoMLvd3o8j3y6EbJM3MyIcXIVzXvQQ==} + engines: {node: '>=12'} cpu: [mips64el] os: [linux] requiresBuild: true @@ -2014,11 +1600,8 @@ packages: optional: true /@esbuild/linux-ppc64/0.18.16: - resolution: - { - integrity: sha512-Wkz++LZ29lDwUyTSEnzDaaP5OveOgTU69q9IyIw9WqLRxM4BjTBjz9un4G6TOvehWpf/J3gYVFN96TjGHrbcNQ==, - } - engines: { node: '>=12' } + resolution: {integrity: sha512-Wkz++LZ29lDwUyTSEnzDaaP5OveOgTU69q9IyIw9WqLRxM4BjTBjz9un4G6TOvehWpf/J3gYVFN96TjGHrbcNQ==} + engines: {node: '>=12'} cpu: [ppc64] os: [linux] requiresBuild: true @@ -2026,11 +1609,8 @@ packages: optional: true /@esbuild/linux-riscv64/0.18.16: - resolution: - { - integrity: sha512-LFMKZ30tk78/mUv1ygvIP+568bwf4oN6reG/uczXnz6SvFn4e2QUFpUpZY9iSJT6Qpgstrhef/nMykIXZtZWGQ==, - } - engines: { node: '>=12' } + resolution: {integrity: sha512-LFMKZ30tk78/mUv1ygvIP+568bwf4oN6reG/uczXnz6SvFn4e2QUFpUpZY9iSJT6Qpgstrhef/nMykIXZtZWGQ==} + engines: {node: '>=12'} cpu: [riscv64] os: [linux] requiresBuild: true @@ -2038,11 +1618,8 @@ packages: optional: true /@esbuild/linux-s390x/0.18.16: - resolution: - { - integrity: sha512-3ZC0BgyYHYKfZo3AV2/66TD/I9tlSBaW7eWTEIkrQQKfJIifKMMttXl9FrAg+UT0SGYsCRLI35Gwdmm96vlOjg==, - } - engines: { node: '>=12' } + resolution: {integrity: sha512-3ZC0BgyYHYKfZo3AV2/66TD/I9tlSBaW7eWTEIkrQQKfJIifKMMttXl9FrAg+UT0SGYsCRLI35Gwdmm96vlOjg==} + engines: {node: '>=12'} cpu: [s390x] os: [linux] requiresBuild: true @@ -2050,11 +1627,8 @@ packages: optional: true /@esbuild/linux-x64/0.18.16: - resolution: - { - integrity: sha512-xu86B3647DihHJHv/wx3NCz2Dg1gjQ8bbf9cVYZzWKY+gsvxYmn/lnVlqDRazObc3UMwoHpUhNYaZset4X8IPA==, - } - engines: { node: '>=12' } + resolution: {integrity: sha512-xu86B3647DihHJHv/wx3NCz2Dg1gjQ8bbf9cVYZzWKY+gsvxYmn/lnVlqDRazObc3UMwoHpUhNYaZset4X8IPA==} + engines: {node: '>=12'} cpu: [x64] os: [linux] requiresBuild: true @@ -2062,11 +1636,8 @@ packages: optional: true /@esbuild/netbsd-x64/0.18.16: - resolution: - { - integrity: sha512-uVAgpimx9Ffw3xowtg/7qQPwHFx94yCje+DoBx+LNm2ePDpQXHrzE+Sb0Si2VBObYz+LcRps15cq+95YM7gkUw==, - } - engines: { node: '>=12' } + resolution: {integrity: sha512-uVAgpimx9Ffw3xowtg/7qQPwHFx94yCje+DoBx+LNm2ePDpQXHrzE+Sb0Si2VBObYz+LcRps15cq+95YM7gkUw==} + engines: {node: '>=12'} cpu: [x64] os: [netbsd] requiresBuild: true @@ -2074,11 +1645,8 @@ packages: optional: true /@esbuild/openbsd-x64/0.18.16: - resolution: - { - integrity: sha512-6OjCQM9wf7z8/MBi6BOWaTL2AS/SZudsZtBziXMtNI8r/U41AxS9x7jn0ATOwVy08OotwkPqGRMkpPR2wcTJXA==, - } - engines: { node: '>=12' } + resolution: {integrity: sha512-6OjCQM9wf7z8/MBi6BOWaTL2AS/SZudsZtBziXMtNI8r/U41AxS9x7jn0ATOwVy08OotwkPqGRMkpPR2wcTJXA==} + engines: {node: '>=12'} cpu: [x64] os: [openbsd] requiresBuild: true @@ -2086,11 +1654,8 @@ packages: optional: true /@esbuild/sunos-x64/0.18.16: - resolution: - { - integrity: sha512-ZoNkruFYJp9d1LbUYCh8awgQDvB9uOMZqlQ+gGEZR7v6C+N6u7vPr86c+Chih8niBR81Q/bHOSKGBK3brJyvkQ==, - } - engines: { node: '>=12' } + resolution: {integrity: sha512-ZoNkruFYJp9d1LbUYCh8awgQDvB9uOMZqlQ+gGEZR7v6C+N6u7vPr86c+Chih8niBR81Q/bHOSKGBK3brJyvkQ==} + engines: {node: '>=12'} cpu: [x64] os: [sunos] requiresBuild: true @@ -2098,11 +1663,8 @@ packages: optional: true /@esbuild/win32-arm64/0.18.16: - resolution: - { - integrity: sha512-+j4anzQ9hrs+iqO+/wa8UE6TVkKua1pXUb0XWFOx0FiAj6R9INJ+WE//1/Xo6FG1vB5EpH3ko+XcgwiDXTxcdw==, - } - engines: { node: '>=12' } + resolution: {integrity: sha512-+j4anzQ9hrs+iqO+/wa8UE6TVkKua1pXUb0XWFOx0FiAj6R9INJ+WE//1/Xo6FG1vB5EpH3ko+XcgwiDXTxcdw==} + engines: {node: '>=12'} cpu: [arm64] os: [win32] requiresBuild: true @@ -2110,11 +1672,8 @@ packages: optional: true /@esbuild/win32-ia32/0.18.16: - resolution: - { - integrity: sha512-5PFPmq3sSKTp9cT9dzvI67WNfRZGvEVctcZa1KGjDDu4n3H8k59Inbk0du1fz0KrAbKKNpJbdFXQMDUz7BG4rQ==, - } - engines: { node: '>=12' } + resolution: {integrity: sha512-5PFPmq3sSKTp9cT9dzvI67WNfRZGvEVctcZa1KGjDDu4n3H8k59Inbk0du1fz0KrAbKKNpJbdFXQMDUz7BG4rQ==} + engines: {node: '>=12'} cpu: [ia32] os: [win32] requiresBuild: true @@ -2122,11 +1681,8 @@ packages: optional: true /@esbuild/win32-x64/0.18.16: - resolution: - { - integrity: sha512-sCIVrrtcWN5Ua7jYXNG1xD199IalrbfV2+0k/2Zf2OyV2FtnQnMgdzgpRAbi4AWlKJj1jkX+M+fEGPQj6BQB4w==, - } - engines: { node: '>=12' } + resolution: {integrity: sha512-sCIVrrtcWN5Ua7jYXNG1xD199IalrbfV2+0k/2Zf2OyV2FtnQnMgdzgpRAbi4AWlKJj1jkX+M+fEGPQj6BQB4w==} + engines: {node: '>=12'} cpu: [x64] os: [win32] requiresBuild: true @@ -2134,11 +1690,8 @@ packages: optional: true /@eslint-community/eslint-utils/4.4.0_eslint@8.45.0: - resolution: - { - integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: @@ -2147,19 +1700,13 @@ packages: dev: true /@eslint-community/regexpp/4.6.0: - resolution: - { - integrity: sha512-uiPeRISaglZnaZk8vwrjQZ1CxogZeY/4IYft6gBOTqu1WhVXWmCmZMWxUv2Q/pxSvPdp1JPaO62kLOcOkMqWrw==, - } - engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 } + resolution: {integrity: sha512-uiPeRISaglZnaZk8vwrjQZ1CxogZeY/4IYft6gBOTqu1WhVXWmCmZMWxUv2Q/pxSvPdp1JPaO62kLOcOkMqWrw==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} dev: true /@eslint/eslintrc/2.1.0: - resolution: - { - integrity: sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 debug: 4.3.4 @@ -2175,19 +1722,13 @@ packages: dev: true /@eslint/js/8.44.0: - resolution: - { - integrity: sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true /@humanwhocodes/config-array/0.11.10: - resolution: - { - integrity: sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==, - } - engines: { node: '>=10.10.0' } + resolution: {integrity: sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==} + engines: {node: '>=10.10.0'} dependencies: '@humanwhocodes/object-schema': 1.2.1 debug: 4.3.4 @@ -2197,26 +1738,17 @@ packages: dev: true /@humanwhocodes/module-importer/1.0.1: - resolution: - { - integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==, - } - engines: { node: '>=12.22' } + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} dev: true /@humanwhocodes/object-schema/1.2.1: - resolution: - { - integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==, - } + resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} dev: true /@jridgewell/gen-mapping/0.3.3: - resolution: - { - integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==, - } - engines: { node: '>=6.0.0' } + resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} + engines: {node: '>=6.0.0'} dependencies: '@jridgewell/set-array': 1.1.2 '@jridgewell/sourcemap-codec': 1.4.15 @@ -2224,108 +1756,72 @@ packages: dev: true /@jridgewell/resolve-uri/3.1.0: - resolution: - { - integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==, - } - engines: { node: '>=6.0.0' } + resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} + engines: {node: '>=6.0.0'} dev: true /@jridgewell/set-array/1.1.2: - resolution: - { - integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==, - } - engines: { node: '>=6.0.0' } + resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} + engines: {node: '>=6.0.0'} dev: true /@jridgewell/sourcemap-codec/1.4.14: - resolution: - { - integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==, - } + resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} dev: true /@jridgewell/sourcemap-codec/1.4.15: - resolution: - { - integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==, - } + resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} dev: true /@jridgewell/trace-mapping/0.3.18: - resolution: - { - integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==, - } + resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==} dependencies: '@jridgewell/resolve-uri': 3.1.0 '@jridgewell/sourcemap-codec': 1.4.14 dev: true /@nicolo-ribaudo/eslint-scope-5-internals/5.1.1-v1: - resolution: - { - integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==, - } + resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==} dependencies: eslint-scope: 5.1.1 dev: true /@nodelib/fs.scandir/2.1.5: - resolution: - { - integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, - } - engines: { node: '>= 8' } + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} dependencies: '@nodelib/fs.stat': 2.0.5 run-parallel: 1.2.0 dev: true /@nodelib/fs.stat/2.0.5: - resolution: - { - integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, - } - engines: { node: '>= 8' } + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} dev: true /@nodelib/fs.walk/1.2.8: - resolution: - { - integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, - } - engines: { node: '>= 8' } + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} dependencies: '@nodelib/fs.scandir': 2.1.5 fastq: 1.15.0 dev: true /@rollup/pluginutils/4.2.1: - resolution: - { - integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==, - } - engines: { node: '>= 8.0.0' } + resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} + engines: {node: '>= 8.0.0'} dependencies: estree-walker: 2.0.2 picomatch: 2.3.1 dev: true /@rushstack/eslint-patch/1.3.2: - resolution: - { - integrity: sha512-V+MvGwaHH03hYhY+k6Ef/xKd6RYlc4q8WBx+2ANmipHJcKuktNcI/NgEsJgdSUF6Lw32njT6OnrRsKYCdgHjYw==, - } + resolution: {integrity: sha512-V+MvGwaHH03hYhY+k6Ef/xKd6RYlc4q8WBx+2ANmipHJcKuktNcI/NgEsJgdSUF6Lw32njT6OnrRsKYCdgHjYw==} dev: true /@swc/core-darwin-arm64/1.3.70: - resolution: - { - integrity: sha512-31+mcl0dgdRHvZRjhLOK9V6B+qJ7nxDZYINr9pBlqGWxknz37Vld5KK19Kpr79r0dXUZvaaelLjCnJk9dA2PcQ==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-31+mcl0dgdRHvZRjhLOK9V6B+qJ7nxDZYINr9pBlqGWxknz37Vld5KK19Kpr79r0dXUZvaaelLjCnJk9dA2PcQ==} + engines: {node: '>=10'} cpu: [arm64] os: [darwin] requiresBuild: true @@ -2333,11 +1829,8 @@ packages: optional: true /@swc/core-darwin-x64/1.3.70: - resolution: - { - integrity: sha512-GMFJ65E18zQC80t0os+TZvI+8lbRuitncWVge/RXmXbVLPRcdykP4EJ87cqzcG5Ah0z18/E0T+ixD6jHRisrYQ==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-GMFJ65E18zQC80t0os+TZvI+8lbRuitncWVge/RXmXbVLPRcdykP4EJ87cqzcG5Ah0z18/E0T+ixD6jHRisrYQ==} + engines: {node: '>=10'} cpu: [x64] os: [darwin] requiresBuild: true @@ -2345,11 +1838,8 @@ packages: optional: true /@swc/core-linux-arm-gnueabihf/1.3.70: - resolution: - { - integrity: sha512-wjhCwS8LCiAq2VedF1b4Bryyw68xZnfMED4pLRazAl8BaUlDFANfRBORNunxlfHQj4V3x39IaiLgCZRHMdzXBg==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-wjhCwS8LCiAq2VedF1b4Bryyw68xZnfMED4pLRazAl8BaUlDFANfRBORNunxlfHQj4V3x39IaiLgCZRHMdzXBg==} + engines: {node: '>=10'} cpu: [arm] os: [linux] requiresBuild: true @@ -2357,11 +1847,8 @@ packages: optional: true /@swc/core-linux-arm64-gnu/1.3.70: - resolution: - { - integrity: sha512-9D/Rx67cAOnMiexvCqARxvhj7coRajTp5HlJHuf+rfwMqI2hLhpO9/pBMQxBUAWxODO/ksQ/OF+GJRjmtWw/2A==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-9D/Rx67cAOnMiexvCqARxvhj7coRajTp5HlJHuf+rfwMqI2hLhpO9/pBMQxBUAWxODO/ksQ/OF+GJRjmtWw/2A==} + engines: {node: '>=10'} cpu: [arm64] os: [linux] requiresBuild: true @@ -2369,11 +1856,8 @@ packages: optional: true /@swc/core-linux-arm64-musl/1.3.70: - resolution: - { - integrity: sha512-gkjxBio7XD+1GlQVVyPP/qeFkLu83VhRHXaUrkNYpr5UZG9zZurBERT9nkS6Y+ouYh+Q9xmw57aIyd2KvD2zqQ==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-gkjxBio7XD+1GlQVVyPP/qeFkLu83VhRHXaUrkNYpr5UZG9zZurBERT9nkS6Y+ouYh+Q9xmw57aIyd2KvD2zqQ==} + engines: {node: '>=10'} cpu: [arm64] os: [linux] requiresBuild: true @@ -2381,11 +1865,8 @@ packages: optional: true /@swc/core-linux-x64-gnu/1.3.70: - resolution: - { - integrity: sha512-/nCly+V4xfMVwfEUoLLAukxUSot/RcSzsf6GdsGTjFcrp5sZIntAjokYRytm3VT1c2TK321AfBorsi9R5w8Y7Q==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-/nCly+V4xfMVwfEUoLLAukxUSot/RcSzsf6GdsGTjFcrp5sZIntAjokYRytm3VT1c2TK321AfBorsi9R5w8Y7Q==} + engines: {node: '>=10'} cpu: [x64] os: [linux] requiresBuild: true @@ -2393,11 +1874,8 @@ packages: optional: true /@swc/core-linux-x64-musl/1.3.70: - resolution: - { - integrity: sha512-HoOsPJbt361KGKaivAK0qIiYARkhzlxeAfvF5NlnKxkIMOZpQ46Lwj3tR0VWohKbrhS+cYKFlVuDi5XnDkx0XA==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-HoOsPJbt361KGKaivAK0qIiYARkhzlxeAfvF5NlnKxkIMOZpQ46Lwj3tR0VWohKbrhS+cYKFlVuDi5XnDkx0XA==} + engines: {node: '>=10'} cpu: [x64] os: [linux] requiresBuild: true @@ -2405,11 +1883,8 @@ packages: optional: true /@swc/core-win32-arm64-msvc/1.3.70: - resolution: - { - integrity: sha512-hm4IBK/IaRil+aj1cWU6f0GyAdHpw/Jr5nyFYLM2c/tt7w2t5hgb8NjzM2iM84lOClrig1fG6edj2vCF1dFzNQ==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-hm4IBK/IaRil+aj1cWU6f0GyAdHpw/Jr5nyFYLM2c/tt7w2t5hgb8NjzM2iM84lOClrig1fG6edj2vCF1dFzNQ==} + engines: {node: '>=10'} cpu: [arm64] os: [win32] requiresBuild: true @@ -2417,11 +1892,8 @@ packages: optional: true /@swc/core-win32-ia32-msvc/1.3.70: - resolution: - { - integrity: sha512-5cgKUKIT/9Fp5fCA+zIjYCQ4dSvjFYOeWGZR3QiTXGkC4bGa1Ji9SEPyeIAX0iruUnKjYaZB9RvHK2tNn7RLrQ==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-5cgKUKIT/9Fp5fCA+zIjYCQ4dSvjFYOeWGZR3QiTXGkC4bGa1Ji9SEPyeIAX0iruUnKjYaZB9RvHK2tNn7RLrQ==} + engines: {node: '>=10'} cpu: [ia32] os: [win32] requiresBuild: true @@ -2429,11 +1901,8 @@ packages: optional: true /@swc/core-win32-x64-msvc/1.3.70: - resolution: - { - integrity: sha512-LE8lW46+TQBzVkn2mHBlk8DIElPIZ2dO5P8AbJiARNBAnlqQWu67l9gWM89UiZ2l33J2cI37pHzON3tKnT8f9g==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-LE8lW46+TQBzVkn2mHBlk8DIElPIZ2dO5P8AbJiARNBAnlqQWu67l9gWM89UiZ2l33J2cI37pHzON3tKnT8f9g==} + engines: {node: '>=10'} cpu: [x64] os: [win32] requiresBuild: true @@ -2441,11 +1910,8 @@ packages: optional: true /@swc/core/1.3.70: - resolution: - { - integrity: sha512-LWVWlEDLlOD25PvA2NEz41UzdwXnlDyBiZbe69s3zM0DfCPwZXLUm79uSqH9ItsOjTrXSL5/1+XUL6C/BZwChA==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-LWVWlEDLlOD25PvA2NEz41UzdwXnlDyBiZbe69s3zM0DfCPwZXLUm79uSqH9ItsOjTrXSL5/1+XUL6C/BZwChA==} + engines: {node: '>=10'} requiresBuild: true peerDependencies: '@swc/helpers': ^0.5.0 @@ -2466,64 +1932,40 @@ packages: dev: true /@types/eslint/8.44.0: - resolution: - { - integrity: sha512-gsF+c/0XOguWgaOgvFs+xnnRqt9GwgTvIks36WpE6ueeI4KCEHHd8K/CKHqhOqrJKsYH8m27kRzQEvWXAwXUTw==, - } + resolution: {integrity: sha512-gsF+c/0XOguWgaOgvFs+xnnRqt9GwgTvIks36WpE6ueeI4KCEHHd8K/CKHqhOqrJKsYH8m27kRzQEvWXAwXUTw==} dependencies: '@types/estree': 1.0.1 '@types/json-schema': 7.0.12 dev: true /@types/estree/1.0.1: - resolution: - { - integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==, - } + resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==} dev: true /@types/json-schema/7.0.12: - resolution: - { - integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==, - } + resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==} dev: true /@types/json5/0.0.29: - resolution: - { - integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==, - } + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} dev: true /@types/parse-json/4.0.0: - resolution: - { - integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==, - } + resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} dev: true /@types/prop-types/15.7.5: - resolution: - { - integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==, - } + resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} dev: true /@types/react-dom/18.2.7: - resolution: - { - integrity: sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==, - } + resolution: {integrity: sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==} dependencies: '@types/react': 18.2.15 dev: true /@types/react/18.2.15: - resolution: - { - integrity: sha512-oEjE7TQt1fFTFSbf8kkNuc798ahTUzn3Le67/PWjE8MAfYAD/qB7O8hSTcromLFqHCt9bcdOg5GXMokzTjJ5SA==, - } + resolution: {integrity: sha512-oEjE7TQt1fFTFSbf8kkNuc798ahTUzn3Le67/PWjE8MAfYAD/qB7O8hSTcromLFqHCt9bcdOg5GXMokzTjJ5SA==} dependencies: '@types/prop-types': 15.7.5 '@types/scheduler': 0.16.3 @@ -2531,25 +1973,16 @@ packages: dev: true /@types/scheduler/0.16.3: - resolution: - { - integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==, - } + resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==} dev: true /@types/semver/7.5.0: - resolution: - { - integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==, - } + resolution: {integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==} dev: true /@typescript-eslint/eslint-plugin/5.62.0_tbbci4he2x65aggpp4j2oxxdvm: - resolution: - { - integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -2576,11 +2009,8 @@ packages: dev: true /@typescript-eslint/experimental-utils/5.62.0_ko3fmmbeyij36muomfgt2u76xu: - resolution: - { - integrity: sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: @@ -2592,11 +2022,8 @@ packages: dev: true /@typescript-eslint/parser/5.62.0_ko3fmmbeyij36muomfgt2u76xu: - resolution: - { - integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 typescript: '*' @@ -2615,22 +2042,16 @@ packages: dev: true /@typescript-eslint/scope-manager/5.62.0: - resolution: - { - integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 dev: true /@typescript-eslint/type-utils/5.62.0_ko3fmmbeyij36muomfgt2u76xu: - resolution: - { - integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' typescript: '*' @@ -2649,19 +2070,13 @@ packages: dev: true /@typescript-eslint/types/5.62.0: - resolution: - { - integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true /@typescript-eslint/typescript-estree/5.62.0_typescript@5.1.6: - resolution: - { - integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' peerDependenciesMeta: @@ -2681,11 +2096,8 @@ packages: dev: true /@typescript-eslint/utils/5.62.0_ko3fmmbeyij36muomfgt2u76xu: - resolution: - { - integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: @@ -2704,21 +2116,15 @@ packages: dev: true /@typescript-eslint/visitor-keys/5.62.0: - resolution: - { - integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: '@typescript-eslint/types': 5.62.0 eslint-visitor-keys: 3.4.1 dev: true /@vitejs/plugin-react-swc/3.3.2_vite@4.4.6: - resolution: - { - integrity: sha512-VJFWY5sfoZerQRvJrh518h3AcQt6f/yTuWn4/TRB+dqmYU0NX1qz7qM5Wfd+gOQqUzQW4gxKqKN3KpE/P3+zrA==, - } + resolution: {integrity: sha512-VJFWY5sfoZerQRvJrh518h3AcQt6f/yTuWn4/TRB+dqmYU0NX1qz7qM5Wfd+gOQqUzQW4gxKqKN3KpE/P3+zrA==} peerDependencies: vite: ^4 dependencies: @@ -2729,10 +2135,7 @@ packages: dev: true /acorn-jsx/5.3.2_acorn@8.10.0: - resolution: - { - integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==, - } + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: @@ -2740,19 +2143,13 @@ packages: dev: true /acorn/8.10.0: - resolution: - { - integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==, - } - engines: { node: '>=0.4.0' } + resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==} + engines: {node: '>=0.4.0'} hasBin: true dev: true /ajv/6.12.6: - resolution: - { - integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==, - } + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} dependencies: fast-deep-equal: 3.1.3 fast-json-stable-stringify: 2.1.0 @@ -2761,65 +2158,60 @@ packages: dev: true /ansi-regex/5.0.1: - resolution: - { - integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, - } - engines: { node: '>=8' } + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} dev: true /ansi-styles/3.2.1: - resolution: - { - integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} dependencies: color-convert: 1.9.3 dev: true /ansi-styles/4.3.0: - resolution: - { - integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, - } - engines: { node: '>=8' } + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} dependencies: color-convert: 2.0.1 dev: true + /any-promise/1.3.0: + resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} + dev: true + + /anymatch/3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + dev: true + + /arg/5.0.2: + resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} + dev: true + /argparse/2.0.1: - resolution: - { - integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, - } + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} dev: true /aria-query/5.3.0: - resolution: - { - integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==, - } + resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} dependencies: dequal: 2.0.3 dev: true /array-buffer-byte-length/1.0.0: - resolution: - { - integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==, - } + resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} dependencies: call-bind: 1.0.2 is-array-buffer: 3.0.2 dev: true /array-includes/3.1.6: - resolution: - { - integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -2829,19 +2221,13 @@ packages: dev: true /array-union/2.1.0: - resolution: - { - integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==, - } - engines: { node: '>=8' } + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} dev: true /array.prototype.flat/1.3.1: - resolution: - { - integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -2850,11 +2236,8 @@ packages: dev: true /array.prototype.flatmap/1.3.1: - resolution: - { - integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -2863,10 +2246,7 @@ packages: dev: true /array.prototype.tosorted/1.1.1: - resolution: - { - integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==, - } + resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==} dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -2876,11 +2256,8 @@ packages: dev: true /arraybuffer.prototype.slice/1.0.1: - resolution: - { - integrity: sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==} + engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.0 call-bind: 1.0.2 @@ -2891,43 +2268,44 @@ packages: dev: true /ast-types-flow/0.0.7: - resolution: - { - integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==, - } + resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} + dev: true + + /autoprefixer/10.4.14_postcss@8.4.27: + resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + dependencies: + browserslist: 4.21.9 + caniuse-lite: 1.0.30001517 + fraction.js: 4.2.0 + normalize-range: 0.1.2 + picocolors: 1.0.0 + postcss: 8.4.27 + postcss-value-parser: 4.2.0 dev: true /available-typed-arrays/1.0.5: - resolution: - { - integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} + engines: {node: '>= 0.4'} dev: true /axe-core/4.7.2: - resolution: - { - integrity: sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==} + engines: {node: '>=4'} dev: true /axobject-query/3.2.1: - resolution: - { - integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==, - } + resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==} dependencies: dequal: 2.0.3 dev: true /babel-plugin-macros/3.1.0: - resolution: - { - integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==, - } - engines: { node: '>=10', npm: '>=6' } + resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} + engines: {node: '>=10', npm: '>=6'} dependencies: '@babel/runtime': 7.22.6 cosmiconfig: 7.1.0 @@ -2935,10 +2313,7 @@ packages: dev: true /babel-plugin-polyfill-corejs2/0.4.5_@babel+core@7.22.9: - resolution: - { - integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==, - } + resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: @@ -2951,10 +2326,7 @@ packages: dev: true /babel-plugin-polyfill-corejs3/0.8.3_@babel+core@7.22.9: - resolution: - { - integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==, - } + resolution: {integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: @@ -2966,10 +2338,7 @@ packages: dev: true /babel-plugin-polyfill-regenerator/0.5.2_@babel+core@7.22.9: - resolution: - { - integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==, - } + resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: @@ -2980,17 +2349,11 @@ packages: dev: true /babel-plugin-transform-react-remove-prop-types/0.4.24: - resolution: - { - integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==, - } + resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==} dev: true /babel-preset-react-app/10.0.1: - resolution: - { - integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==, - } + resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==} dependencies: '@babel/core': 7.22.9 '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.22.9 @@ -3014,38 +2377,31 @@ packages: dev: true /balanced-match/1.0.2: - resolution: - { - integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, - } + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + dev: true + + /binary-extensions/2.2.0: + resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} + engines: {node: '>=8'} dev: true /brace-expansion/1.1.11: - resolution: - { - integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==, - } + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 dev: true /braces/3.0.2: - resolution: - { - integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==, - } - engines: { node: '>=8' } + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} + engines: {node: '>=8'} dependencies: fill-range: 7.0.1 dev: true /browserslist/4.21.9: - resolution: - { - integrity: sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==, - } - engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } + resolution: {integrity: sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: caniuse-lite: 1.0.30001517 @@ -3055,45 +2411,35 @@ packages: dev: true /builtins/5.0.1: - resolution: - { - integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==, - } + resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==} dependencies: semver: 7.5.4 dev: true /call-bind/1.0.2: - resolution: - { - integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==, - } + resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} dependencies: function-bind: 1.1.1 get-intrinsic: 1.2.1 dev: true /callsites/3.1.0: - resolution: - { - integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==, - } - engines: { node: '>=6' } + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + dev: true + + /camelcase-css/2.0.1: + resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} + engines: {node: '>= 6'} dev: true /caniuse-lite/1.0.30001517: - resolution: - { - integrity: sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA==, - } + resolution: {integrity: sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA==} dev: true /chalk/2.4.2: - resolution: - { - integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} dependencies: ansi-styles: 3.2.1 escape-string-regexp: 1.0.5 @@ -3101,85 +2447,75 @@ packages: dev: true /chalk/4.1.2: - resolution: - { - integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 dev: true + /chokidar/3.5.3: + resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} + engines: {node: '>= 8.10.0'} + dependencies: + anymatch: 3.1.3 + braces: 3.0.2 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.2 + dev: true + /color-convert/1.9.3: - resolution: - { - integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, - } + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} dependencies: color-name: 1.1.3 dev: true /color-convert/2.0.1: - resolution: - { - integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==, - } - engines: { node: '>=7.0.0' } + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} dependencies: color-name: 1.1.4 dev: true /color-name/1.1.3: - resolution: - { - integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==, - } + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} dev: true /color-name/1.1.4: - resolution: - { - integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, - } + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + dev: true + + /commander/4.1.1: + resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} + engines: {node: '>= 6'} dev: true /concat-map/0.0.1: - resolution: - { - integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, - } + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} dev: true /confusing-browser-globals/1.0.11: - resolution: - { - integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==, - } + resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} dev: true /convert-source-map/1.9.0: - resolution: - { - integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==, - } + resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} dev: true /core-js-compat/3.31.1: - resolution: - { - integrity: sha512-wIDWd2s5/5aJSdpOJHfSibxNODxoGoWOBHt8JSPB41NOE94M7kuTPZCYLOlTtuoXTsBPKobpJ6T+y0SSy5L9SA==, - } + resolution: {integrity: sha512-wIDWd2s5/5aJSdpOJHfSibxNODxoGoWOBHt8JSPB41NOE94M7kuTPZCYLOlTtuoXTsBPKobpJ6T+y0SSy5L9SA==} dependencies: browserslist: 4.21.9 dev: true /cosmiconfig/7.1.0: - resolution: - { - integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} + engines: {node: '>=10'} dependencies: '@types/parse-json': 4.0.0 import-fresh: 3.3.0 @@ -3189,36 +2525,30 @@ packages: dev: true /cross-spawn/7.0.3: - resolution: - { - integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==, - } - engines: { node: '>= 8' } + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} dependencies: path-key: 3.1.1 shebang-command: 2.0.0 which: 2.0.2 dev: true + /cssesc/3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + dev: true + /csstype/3.1.2: - resolution: - { - integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==, - } + resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==} dev: true /damerau-levenshtein/1.0.8: - resolution: - { - integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==, - } + resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} dev: true /debug/3.2.7: - resolution: - { - integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==, - } + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} peerDependencies: supports-color: '*' peerDependenciesMeta: @@ -3229,11 +2559,8 @@ packages: dev: true /debug/4.3.4: - resolution: - { - integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, - } - engines: { node: '>=6.0' } + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} peerDependencies: supports-color: '*' peerDependenciesMeta: @@ -3244,90 +2571,68 @@ packages: dev: true /deep-is/0.1.4: - resolution: - { - integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==, - } + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} dev: true /define-properties/1.2.0: - resolution: - { - integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==} + engines: {node: '>= 0.4'} dependencies: has-property-descriptors: 1.0.0 object-keys: 1.1.1 dev: true /dequal/2.0.3: - resolution: - { - integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==, - } - engines: { node: '>=6' } + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} + dev: true + + /didyoumean/1.2.2: + resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} dev: true /dir-glob/3.0.1: - resolution: - { - integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==, - } - engines: { node: '>=8' } + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} dependencies: path-type: 4.0.0 dev: true + /dlv/1.1.3: + resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} + dev: true + /doctrine/2.1.0: - resolution: - { - integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==, - } - engines: { node: '>=0.10.0' } + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} dependencies: esutils: 2.0.3 dev: true /doctrine/3.0.0: - resolution: - { - integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==, - } - engines: { node: '>=6.0.0' } + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} dependencies: esutils: 2.0.3 dev: true /electron-to-chromium/1.4.468: - resolution: - { - integrity: sha512-6M1qyhaJOt7rQtNti1lBA0GwclPH+oKCmsra/hkcWs5INLxfXXD/dtdnaKUYQu/pjOBP/8Osoe4mAcNvvzoFag==, - } + resolution: {integrity: sha512-6M1qyhaJOt7rQtNti1lBA0GwclPH+oKCmsra/hkcWs5INLxfXXD/dtdnaKUYQu/pjOBP/8Osoe4mAcNvvzoFag==} dev: true /emoji-regex/9.2.2: - resolution: - { - integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==, - } + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} dev: true /error-ex/1.3.2: - resolution: - { - integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, - } + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} dependencies: is-arrayish: 0.2.1 dev: true /es-abstract/1.22.1: - resolution: - { - integrity: sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==} + engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.0 arraybuffer.prototype.slice: 1.0.1 @@ -3371,11 +2676,8 @@ packages: dev: true /es-set-tostringtag/2.0.1: - resolution: - { - integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} + engines: {node: '>= 0.4'} dependencies: get-intrinsic: 1.2.1 has: 1.0.3 @@ -3383,20 +2685,14 @@ packages: dev: true /es-shim-unscopables/1.0.0: - resolution: - { - integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==, - } + resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} dependencies: has: 1.0.3 dev: true /es-to-primitive/1.2.1: - resolution: - { - integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} + engines: {node: '>= 0.4'} dependencies: is-callable: 1.2.7 is-date-object: 1.0.5 @@ -3404,11 +2700,8 @@ packages: dev: true /esbuild/0.18.16: - resolution: - { - integrity: sha512-1xLsOXrDqwdHxyXb/x/SOyg59jpf/SH7YMvU5RNSU7z3TInaASNJWNFJ6iRvLvLETZMasF3d1DdZLg7sgRimRQ==, - } - engines: { node: '>=12' } + resolution: {integrity: sha512-1xLsOXrDqwdHxyXb/x/SOyg59jpf/SH7YMvU5RNSU7z3TInaASNJWNFJ6iRvLvLETZMasF3d1DdZLg7sgRimRQ==} + engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: @@ -3437,34 +2730,22 @@ packages: dev: true /escalade/3.1.1: - resolution: - { - integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==, - } - engines: { node: '>=6' } + resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} + engines: {node: '>=6'} dev: true /escape-string-regexp/1.0.5: - resolution: - { - integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==, - } - engines: { node: '>=0.8.0' } + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} dev: true /escape-string-regexp/4.0.0: - resolution: - { - integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} dev: true /eslint-config-prettier/8.8.0_eslint@8.45.0: - resolution: - { - integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==, - } + resolution: {integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==} hasBin: true peerDependencies: eslint: '>=7.0.0' @@ -3473,11 +2754,8 @@ packages: dev: true /eslint-config-react-app/7.0.1_cehorzkv5ezvj4qputao2nrtpq: - resolution: - { - integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==, - } - engines: { node: '>=14.0.0' } + resolution: {integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==} + engines: {node: '>=14.0.0'} peerDependencies: eslint: ^8.0.0 typescript: '*' @@ -3511,10 +2789,7 @@ packages: dev: true /eslint-config-standard-jsx/11.0.0_zckabqedyvojuo7tqv24azkgyy: - resolution: - { - integrity: sha512-+1EV/R0JxEK1L0NGolAr8Iktm3Rgotx3BKwgaX+eAuSX8D952LULKtjgZD3F+e6SvibONnhLwoTi9DPxN5LvvQ==, - } + resolution: {integrity: sha512-+1EV/R0JxEK1L0NGolAr8Iktm3Rgotx3BKwgaX+eAuSX8D952LULKtjgZD3F+e6SvibONnhLwoTi9DPxN5LvvQ==} peerDependencies: eslint: ^8.8.0 eslint-plugin-react: ^7.28.0 @@ -3524,11 +2799,8 @@ packages: dev: true /eslint-config-standard/17.1.0_ps2l5xafq4bppcbrd7h2jbiwne: - resolution: - { - integrity: sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==, - } - engines: { node: '>=12.0.0' } + resolution: {integrity: sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==} + engines: {node: '>=12.0.0'} peerDependencies: eslint: ^8.0.1 eslint-plugin-import: ^2.25.2 @@ -3542,10 +2814,7 @@ packages: dev: true /eslint-import-resolver-node/0.3.7: - resolution: - { - integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==, - } + resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==} dependencies: debug: 3.2.7 is-core-module: 2.12.1 @@ -3555,11 +2824,8 @@ packages: dev: true /eslint-module-utils/2.8.0_etj5dsfllspaklowyfw33flf3u: - resolution: - { - integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} + engines: {node: '>=4'} peerDependencies: '@typescript-eslint/parser': '*' eslint: '*' @@ -3586,11 +2852,8 @@ packages: dev: true /eslint-module-utils/2.8.0_h2tu665zyzp3li3mokdnt2kw74: - resolution: - { - integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} + engines: {node: '>=4'} peerDependencies: '@typescript-eslint/parser': '*' eslint: '*' @@ -3618,11 +2881,8 @@ packages: dev: true /eslint-plugin-es/4.1.0_eslint@8.45.0: - resolution: - { - integrity: sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==, - } - engines: { node: '>=8.10.0' } + resolution: {integrity: sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==} + engines: {node: '>=8.10.0'} peerDependencies: eslint: '>=4.19.1' dependencies: @@ -3632,11 +2892,8 @@ packages: dev: true /eslint-plugin-flowtype/8.0.3_o57qlx2hvlwmdhni4ono35dn54: - resolution: - { - integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==, - } - engines: { node: '>=12.0.0' } + resolution: {integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==} + engines: {node: '>=12.0.0'} peerDependencies: '@babel/plugin-syntax-flow': ^7.14.5 '@babel/plugin-transform-react-jsx': ^7.14.9 @@ -3650,11 +2907,8 @@ packages: dev: true /eslint-plugin-import/2.27.5_eslint@8.45.0: - resolution: - { - integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} + engines: {node: '>=4'} peerDependencies: '@typescript-eslint/parser': '*' eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 @@ -3685,11 +2939,8 @@ packages: dev: true /eslint-plugin-import/2.27.5_vdlnholh74uk2lamdhhi4g2qza: - resolution: - { - integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} + engines: {node: '>=4'} peerDependencies: '@typescript-eslint/parser': '*' eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 @@ -3721,11 +2972,8 @@ packages: dev: true /eslint-plugin-jest/25.7.0_i6yykrnbhxgwloever4oq5cyda: - resolution: - { - integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==, - } - engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } + resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} peerDependencies: '@typescript-eslint/eslint-plugin': ^4.0.0 || ^5.0.0 eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -3745,11 +2993,8 @@ packages: dev: true /eslint-plugin-jsx-a11y/6.7.1_eslint@8.45.0: - resolution: - { - integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==, - } - engines: { node: '>=4.0' } + resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} + engines: {node: '>=4.0'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: @@ -3773,11 +3018,8 @@ packages: dev: true /eslint-plugin-n/15.7.0_eslint@8.45.0: - resolution: - { - integrity: sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==, - } - engines: { node: '>=12.22.0' } + resolution: {integrity: sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==} + engines: {node: '>=12.22.0'} peerDependencies: eslint: '>=7.0.0' dependencies: @@ -3793,11 +3035,8 @@ packages: dev: true /eslint-plugin-promise/6.1.1_eslint@8.45.0: - resolution: - { - integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 dependencies: @@ -3805,11 +3044,8 @@ packages: dev: true /eslint-plugin-react-hooks/4.6.0_eslint@8.45.0: - resolution: - { - integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} + engines: {node: '>=10'} peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 dependencies: @@ -3817,10 +3053,7 @@ packages: dev: true /eslint-plugin-react-refresh/0.4.3_eslint@8.45.0: - resolution: - { - integrity: sha512-Hh0wv8bUNY877+sI0BlCUlsS0TYYQqvzEwJsJJPM2WF4RnTStSnSR3zdJYa2nPOJgg3UghXi54lVyMSmpCalzA==, - } + resolution: {integrity: sha512-Hh0wv8bUNY877+sI0BlCUlsS0TYYQqvzEwJsJJPM2WF4RnTStSnSR3zdJYa2nPOJgg3UghXi54lVyMSmpCalzA==} peerDependencies: eslint: '>=7' dependencies: @@ -3828,11 +3061,8 @@ packages: dev: true /eslint-plugin-react/7.33.0_eslint@8.45.0: - resolution: - { - integrity: sha512-qewL/8P34WkY8jAqdQxsiL82pDUeT7nhs8IsuXgfgnsEloKCT4miAV9N9kGtx7/KM9NH/NCGUE7Edt9iGxLXFw==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-qewL/8P34WkY8jAqdQxsiL82pDUeT7nhs8IsuXgfgnsEloKCT4miAV9N9kGtx7/KM9NH/NCGUE7Edt9iGxLXFw==} + engines: {node: '>=4'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: @@ -3855,11 +3085,8 @@ packages: dev: true /eslint-plugin-testing-library/5.11.0_ko3fmmbeyij36muomfgt2u76xu: - resolution: - { - integrity: sha512-ELY7Gefo+61OfXKlQeXNIDVVLPcvKTeiQOoMZG9TeuWa7Ln4dUNRv8JdRWBQI9Mbb427XGlVB1aa1QPZxBJM8Q==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6' } + resolution: {integrity: sha512-ELY7Gefo+61OfXKlQeXNIDVVLPcvKTeiQOoMZG9TeuWa7Ln4dUNRv8JdRWBQI9Mbb427XGlVB1aa1QPZxBJM8Q==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} peerDependencies: eslint: ^7.5.0 || ^8.0.0 dependencies: @@ -3871,43 +3098,31 @@ packages: dev: true /eslint-scope/5.1.1: - resolution: - { - integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==, - } - engines: { node: '>=8.0.0' } + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} dependencies: esrecurse: 4.3.0 estraverse: 4.3.0 dev: true /eslint-scope/7.2.1: - resolution: - { - integrity: sha512-CvefSOsDdaYYvxChovdrPo/ZGt8d5lrJWleAc1diXRKhHGiTYEI26cvo8Kle/wGnsizoCJjK73FMg1/IkIwiNA==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-CvefSOsDdaYYvxChovdrPo/ZGt8d5lrJWleAc1diXRKhHGiTYEI26cvo8Kle/wGnsizoCJjK73FMg1/IkIwiNA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 dev: true /eslint-utils/2.1.0: - resolution: - { - integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==, - } - engines: { node: '>=6' } + resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} + engines: {node: '>=6'} dependencies: eslint-visitor-keys: 1.3.0 dev: true /eslint-utils/3.0.0_eslint@8.45.0: - resolution: - { - integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==, - } - engines: { node: ^10.0.0 || ^12.0.0 || >= 14.0.0 } + resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} + engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: eslint: '>=5' dependencies: @@ -3916,35 +3131,23 @@ packages: dev: true /eslint-visitor-keys/1.3.0: - resolution: - { - integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} + engines: {node: '>=4'} dev: true /eslint-visitor-keys/2.1.0: - resolution: - { - integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} + engines: {node: '>=10'} dev: true /eslint-visitor-keys/3.4.1: - resolution: - { - integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true /eslint/8.45.0: - resolution: - { - integrity: sha512-pd8KSxiQpdYRfYa9Wufvdoct3ZPQQuVuU5O6scNgMuOMYuxvH0IGaYK0wUFjo4UYYQQCUndlXiMbnxopwvvTiw==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-pd8KSxiQpdYRfYa9Wufvdoct3ZPQQuVuU5O6scNgMuOMYuxvH0IGaYK0wUFjo4UYYQQCUndlXiMbnxopwvvTiw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: '@eslint-community/eslint-utils': 4.4.0_eslint@8.45.0 @@ -3989,11 +3192,8 @@ packages: dev: true /espree/9.6.1: - resolution: - { - integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: acorn: 8.10.0 acorn-jsx: 5.3.2_acorn@8.10.0 @@ -4001,69 +3201,45 @@ packages: dev: true /esquery/1.5.0: - resolution: - { - integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==, - } - engines: { node: '>=0.10' } + resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} + engines: {node: '>=0.10'} dependencies: estraverse: 5.3.0 dev: true /esrecurse/4.3.0: - resolution: - { - integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==, - } - engines: { node: '>=4.0' } + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} dependencies: estraverse: 5.3.0 dev: true /estraverse/4.3.0: - resolution: - { - integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==, - } - engines: { node: '>=4.0' } + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} dev: true /estraverse/5.3.0: - resolution: - { - integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==, - } - engines: { node: '>=4.0' } + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} dev: true /estree-walker/2.0.2: - resolution: - { - integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, - } + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} dev: true /esutils/2.0.3: - resolution: - { - integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==, - } - engines: { node: '>=0.10.0' } + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} dev: true /fast-deep-equal/3.1.3: - resolution: - { - integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, - } + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} dev: true /fast-glob/3.3.1: - resolution: - { - integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==, - } - engines: { node: '>=8.6.0' } + resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} + engines: {node: '>=8.6.0'} dependencies: '@nodelib/fs.stat': 2.0.5 '@nodelib/fs.walk': 1.2.8 @@ -4073,127 +3249,89 @@ packages: dev: true /fast-json-stable-stringify/2.1.0: - resolution: - { - integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==, - } + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} dev: true /fast-levenshtein/2.0.6: - resolution: - { - integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==, - } + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} dev: true /fastq/1.15.0: - resolution: - { - integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==, - } + resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} dependencies: reusify: 1.0.4 dev: true /file-entry-cache/6.0.1: - resolution: - { - integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==, - } - engines: { node: ^10.12.0 || >=12.0.0 } + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} dependencies: flat-cache: 3.0.4 dev: true /fill-range/7.0.1: - resolution: - { - integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==, - } - engines: { node: '>=8' } + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} + engines: {node: '>=8'} dependencies: to-regex-range: 5.0.1 dev: true /find-up/3.0.0: - resolution: - { - integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==, - } - engines: { node: '>=6' } + resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} + engines: {node: '>=6'} dependencies: locate-path: 3.0.0 dev: true /find-up/5.0.0: - resolution: - { - integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} dependencies: locate-path: 6.0.0 path-exists: 4.0.0 dev: true /flat-cache/3.0.4: - resolution: - { - integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==, - } - engines: { node: ^10.12.0 || >=12.0.0 } + resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} + engines: {node: ^10.12.0 || >=12.0.0} dependencies: flatted: 3.2.7 rimraf: 3.0.2 dev: true /flatted/3.2.7: - resolution: - { - integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==, - } + resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} dev: true /for-each/0.3.3: - resolution: - { - integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==, - } + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} dependencies: is-callable: 1.2.7 dev: true + /fraction.js/4.2.0: + resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} + dev: true + /fs.realpath/1.0.0: - resolution: - { - integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, - } + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} dev: true /fsevents/2.3.2: - resolution: - { - integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==, - } - engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } + resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] requiresBuild: true dev: true optional: true /function-bind/1.1.1: - resolution: - { - integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==, - } + resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} dev: true /function.prototype.name/1.1.5: - resolution: - { - integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -4202,25 +3340,16 @@ packages: dev: true /functions-have-names/1.2.3: - resolution: - { - integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, - } + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} dev: true /gensync/1.0.0-beta.2: - resolution: - { - integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==, - } - engines: { node: '>=6.9.0' } + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} dev: true /get-intrinsic/1.2.1: - resolution: - { - integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==, - } + resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==} dependencies: function-bind: 1.1.1 has: 1.0.3 @@ -4229,49 +3358,45 @@ packages: dev: true /get-stdin/8.0.0: - resolution: - { - integrity: sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==} + engines: {node: '>=10'} dev: true /get-symbol-description/1.0.0: - resolution: - { - integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.1 dev: true /glob-parent/5.1.2: - resolution: - { - integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, - } - engines: { node: '>= 6' } + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} dependencies: is-glob: 4.0.3 dev: true /glob-parent/6.0.2: - resolution: - { - integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==, - } - engines: { node: '>=10.13.0' } + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} dependencies: is-glob: 4.0.3 dev: true + /glob/7.1.6: + resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + /glob/7.2.3: - resolution: - { - integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==, - } + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -4282,39 +3407,27 @@ packages: dev: true /globals/11.12.0: - resolution: - { - integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} dev: true /globals/13.20.0: - resolution: - { - integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==, - } - engines: { node: '>=8' } + resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==} + engines: {node: '>=8'} dependencies: type-fest: 0.20.2 dev: true /globalthis/1.0.3: - resolution: - { - integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} + engines: {node: '>= 0.4'} dependencies: define-properties: 1.2.0 dev: true /globby/11.1.0: - resolution: - { - integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} dependencies: array-union: 2.1.0 dir-glob: 3.0.1 @@ -4325,146 +3438,95 @@ packages: dev: true /gopd/1.0.1: - resolution: - { - integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, - } + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} dependencies: get-intrinsic: 1.2.1 dev: true /graceful-fs/4.2.11: - resolution: - { - integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==, - } + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} dev: true /graphemer/1.4.0: - resolution: - { - integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==, - } + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} dev: true /has-bigints/1.0.2: - resolution: - { - integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==, - } + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} dev: true /has-flag/3.0.0: - resolution: - { - integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} dev: true /has-flag/4.0.0: - resolution: - { - integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==, - } - engines: { node: '>=8' } + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} dev: true /has-property-descriptors/1.0.0: - resolution: - { - integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==, - } + resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} dependencies: get-intrinsic: 1.2.1 dev: true /has-proto/1.0.1: - resolution: - { - integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} + engines: {node: '>= 0.4'} dev: true /has-symbols/1.0.3: - resolution: - { - integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} dev: true /has-tostringtag/1.0.0: - resolution: - { - integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} + engines: {node: '>= 0.4'} dependencies: has-symbols: 1.0.3 dev: true /has/1.0.3: - resolution: - { - integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==, - } - engines: { node: '>= 0.4.0' } + resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} + engines: {node: '>= 0.4.0'} dependencies: function-bind: 1.1.1 dev: true /ignore/5.2.4: - resolution: - { - integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==, - } - engines: { node: '>= 4' } + resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} + engines: {node: '>= 4'} dev: true /import-fresh/3.3.0: - resolution: - { - integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==, - } - engines: { node: '>=6' } + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 dev: true /imurmurhash/0.1.4: - resolution: - { - integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==, - } - engines: { node: '>=0.8.19' } + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} dev: true /inflight/1.0.6: - resolution: - { - integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==, - } + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} dependencies: once: 1.4.0 wrappy: 1.0.2 dev: true /inherits/2.0.4: - resolution: - { - integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, - } + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} dev: true /internal-slot/1.0.5: - resolution: - { - integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} + engines: {node: '>= 0.4'} dependencies: get-intrinsic: 1.2.1 has: 1.0.3 @@ -4472,10 +3534,7 @@ packages: dev: true /is-array-buffer/3.0.2: - resolution: - { - integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==, - } + resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.1 @@ -4483,270 +3542,189 @@ packages: dev: true /is-arrayish/0.2.1: - resolution: - { - integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, - } + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} dev: true /is-bigint/1.0.4: - resolution: - { - integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==, - } + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} dependencies: has-bigints: 1.0.2 dev: true + /is-binary-path/2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + dependencies: + binary-extensions: 2.2.0 + dev: true + /is-boolean-object/1.1.2: - resolution: - { - integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 has-tostringtag: 1.0.0 dev: true /is-callable/1.2.7: - resolution: - { - integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} dev: true /is-core-module/2.12.1: - resolution: - { - integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==, - } + resolution: {integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==} dependencies: has: 1.0.3 dev: true /is-date-object/1.0.5: - resolution: - { - integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.0 dev: true /is-extglob/2.1.1: - resolution: - { - integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, - } - engines: { node: '>=0.10.0' } + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} dev: true /is-glob/4.0.3: - resolution: - { - integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, - } - engines: { node: '>=0.10.0' } + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} dependencies: is-extglob: 2.1.1 dev: true /is-negative-zero/2.0.2: - resolution: - { - integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} + engines: {node: '>= 0.4'} dev: true /is-number-object/1.0.7: - resolution: - { - integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.0 dev: true /is-number/7.0.0: - resolution: - { - integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, - } - engines: { node: '>=0.12.0' } + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} dev: true /is-path-inside/3.0.3: - resolution: - { - integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==, - } - engines: { node: '>=8' } + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} dev: true /is-regex/1.1.4: - resolution: - { - integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 has-tostringtag: 1.0.0 dev: true /is-shared-array-buffer/1.0.2: - resolution: - { - integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==, - } + resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} dependencies: call-bind: 1.0.2 dev: true /is-string/1.0.7: - resolution: - { - integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} + engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.0 dev: true /is-symbol/1.0.4: - resolution: - { - integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} + engines: {node: '>= 0.4'} dependencies: has-symbols: 1.0.3 dev: true /is-typed-array/1.1.12: - resolution: - { - integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} + engines: {node: '>= 0.4'} dependencies: which-typed-array: 1.1.11 dev: true /is-weakref/1.0.2: - resolution: - { - integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==, - } + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} dependencies: call-bind: 1.0.2 dev: true /isarray/2.0.5: - resolution: - { - integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==, - } + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} dev: true /isexe/2.0.0: - resolution: - { - integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, - } + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + dev: true + + /jiti/1.19.1: + resolution: {integrity: sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg==} + hasBin: true dev: true /js-tokens/4.0.0: - resolution: - { - integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, - } + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} /js-yaml/4.1.0: - resolution: - { - integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, - } + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} hasBin: true dependencies: argparse: 2.0.1 dev: true /jsesc/0.5.0: - resolution: - { - integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==, - } + resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} hasBin: true dev: true /jsesc/2.5.2: - resolution: - { - integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} + engines: {node: '>=4'} hasBin: true dev: true /json-parse-better-errors/1.0.2: - resolution: - { - integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==, - } + resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} dev: true /json-parse-even-better-errors/2.3.1: - resolution: - { - integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==, - } + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} dev: true /json-schema-traverse/0.4.1: - resolution: - { - integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==, - } + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} dev: true /json-stable-stringify-without-jsonify/1.0.1: - resolution: - { - integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==, - } + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} dev: true /json5/1.0.2: - resolution: - { - integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==, - } + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} hasBin: true dependencies: minimist: 1.2.8 dev: true /json5/2.2.3: - resolution: - { - integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==, - } - engines: { node: '>=6' } + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} hasBin: true dev: true /jsx-ast-utils/3.3.4: - resolution: - { - integrity: sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==, - } - engines: { node: '>=4.0' } + resolution: {integrity: sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==} + engines: {node: '>=4.0'} dependencies: array-includes: 3.1.6 array.prototype.flat: 1.3.1 @@ -4755,45 +3733,35 @@ packages: dev: true /language-subtag-registry/0.3.22: - resolution: - { - integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==, - } + resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} dev: true /language-tags/1.0.5: - resolution: - { - integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==, - } + resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==} dependencies: language-subtag-registry: 0.3.22 dev: true /levn/0.4.1: - resolution: - { - integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==, - } - engines: { node: '>= 0.8.0' } + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.2.1 type-check: 0.4.0 dev: true + /lilconfig/2.1.0: + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} + engines: {node: '>=10'} + dev: true + /lines-and-columns/1.2.4: - resolution: - { - integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, - } + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} dev: true /load-json-file/5.3.0: - resolution: - { - integrity: sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==, - } - engines: { node: '>=6' } + resolution: {integrity: sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==} + engines: {node: '>=6'} dependencies: graceful-fs: 4.2.11 parse-json: 4.0.0 @@ -4803,176 +3771,136 @@ packages: dev: true /locate-path/3.0.0: - resolution: - { - integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==, - } - engines: { node: '>=6' } + resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} + engines: {node: '>=6'} dependencies: p-locate: 3.0.0 path-exists: 3.0.0 dev: true /locate-path/6.0.0: - resolution: - { - integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} dependencies: p-locate: 5.0.0 dev: true /lodash.debounce/4.0.8: - resolution: - { - integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==, - } + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} dev: true /lodash.merge/4.6.2: - resolution: - { - integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==, - } + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} dev: true /lodash/4.17.21: - resolution: - { - integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, - } + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} dev: true /loose-envify/1.4.0: - resolution: - { - integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==, - } + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} hasBin: true dependencies: js-tokens: 4.0.0 /lru-cache/5.1.1: - resolution: - { - integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, - } + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} dependencies: yallist: 3.1.1 dev: true /lru-cache/6.0.0: - resolution: - { - integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} dependencies: yallist: 4.0.0 dev: true /merge2/1.4.1: - resolution: - { - integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, - } - engines: { node: '>= 8' } + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} dev: true /micromatch/4.0.5: - resolution: - { - integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==, - } - engines: { node: '>=8.6' } + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} + engines: {node: '>=8.6'} dependencies: braces: 3.0.2 picomatch: 2.3.1 dev: true /minimatch/3.1.2: - resolution: - { - integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==, - } + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} dependencies: brace-expansion: 1.1.11 dev: true /minimist/1.2.8: - resolution: - { - integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==, - } + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} dev: true /ms/2.1.2: - resolution: - { - integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, - } + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + dev: true + + /mz/2.7.0: + resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} + dependencies: + any-promise: 1.3.0 + object-assign: 4.1.1 + thenify-all: 1.6.0 dev: true /nanoid/3.3.6: - resolution: - { - integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==, - } - engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } + resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true dev: true /natural-compare-lite/1.4.0: - resolution: - { - integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==, - } + resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} dev: true /natural-compare/1.4.0: - resolution: - { - integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==, - } + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} dev: true /node-releases/2.0.13: - resolution: - { - integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==, - } + resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==} + dev: true + + /normalize-path/3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + dev: true + + /normalize-range/0.1.2: + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} + engines: {node: '>=0.10.0'} dev: true /object-assign/4.1.1: - resolution: - { - integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==, - } - engines: { node: '>=0.10.0' } + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + dev: true + + /object-hash/3.0.0: + resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} + engines: {node: '>= 6'} dev: true /object-inspect/1.12.3: - resolution: - { - integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==, - } + resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} dev: true /object-keys/1.1.1: - resolution: - { - integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} dev: true /object.assign/4.1.4: - resolution: - { - integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -4981,11 +3909,8 @@ packages: dev: true /object.entries/1.1.6: - resolution: - { - integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -4993,11 +3918,8 @@ packages: dev: true /object.fromentries/2.0.6: - resolution: - { - integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -5005,21 +3927,15 @@ packages: dev: true /object.hasown/1.1.2: - resolution: - { - integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==, - } + resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==} dependencies: define-properties: 1.2.0 es-abstract: 1.22.1 dev: true /object.values/1.1.6: - resolution: - { - integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -5027,20 +3943,14 @@ packages: dev: true /once/1.4.0: - resolution: - { - integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==, - } + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} dependencies: wrappy: 1.0.2 dev: true /optionator/0.9.3: - resolution: - { - integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==, - } - engines: { node: '>= 0.8.0' } + resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} + engines: {node: '>= 0.8.0'} dependencies: '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 @@ -5051,80 +3961,56 @@ packages: dev: true /p-limit/2.3.0: - resolution: - { - integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==, - } - engines: { node: '>=6' } + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} dependencies: p-try: 2.2.0 dev: true /p-limit/3.1.0: - resolution: - { - integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} dependencies: yocto-queue: 0.1.0 dev: true /p-locate/3.0.0: - resolution: - { - integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==, - } - engines: { node: '>=6' } + resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} + engines: {node: '>=6'} dependencies: p-limit: 2.3.0 dev: true /p-locate/5.0.0: - resolution: - { - integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} dependencies: p-limit: 3.1.0 dev: true /p-try/2.2.0: - resolution: - { - integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, - } - engines: { node: '>=6' } + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} dev: true /parent-module/1.0.1: - resolution: - { - integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==, - } - engines: { node: '>=6' } + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} dependencies: callsites: 3.1.0 dev: true /parse-json/4.0.0: - resolution: - { - integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} + engines: {node: '>=4'} dependencies: error-ex: 1.3.2 json-parse-better-errors: 1.0.2 dev: true /parse-json/5.2.0: - resolution: - { - integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==, - } - engines: { node: '>=8' } + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} dependencies: '@babel/code-frame': 7.22.5 error-ex: 1.3.2 @@ -5133,92 +4019,130 @@ packages: dev: true /path-exists/3.0.0: - resolution: - { - integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} + engines: {node: '>=4'} dev: true /path-exists/4.0.0: - resolution: - { - integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, - } - engines: { node: '>=8' } + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} dev: true /path-is-absolute/1.0.1: - resolution: - { - integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==, - } - engines: { node: '>=0.10.0' } + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} dev: true /path-key/3.1.1: - resolution: - { - integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, - } - engines: { node: '>=8' } + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} dev: true /path-parse/1.0.7: - resolution: - { - integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, - } + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} dev: true /path-type/4.0.0: - resolution: - { - integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==, - } - engines: { node: '>=8' } + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} dev: true /picocolors/1.0.0: - resolution: - { - integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, - } + resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} dev: true /picomatch/2.3.1: - resolution: - { - integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, - } - engines: { node: '>=8.6' } + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + dev: true + + /pify/2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} dev: true /pify/4.0.1: - resolution: - { - integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==, - } - engines: { node: '>=6' } + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} + dev: true + + /pirates/4.0.6: + resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} + engines: {node: '>= 6'} dev: true /pkg-conf/3.1.0: - resolution: - { - integrity: sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==, - } - engines: { node: '>=6' } + resolution: {integrity: sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==} + engines: {node: '>=6'} dependencies: find-up: 3.0.0 load-json-file: 5.3.0 dev: true + /postcss-import/15.1.0_postcss@8.4.27: + resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} + engines: {node: '>=14.0.0'} + peerDependencies: + postcss: ^8.0.0 + dependencies: + postcss: 8.4.27 + postcss-value-parser: 4.2.0 + read-cache: 1.0.0 + resolve: 1.22.2 + dev: true + + /postcss-js/4.0.1_postcss@8.4.27: + resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} + engines: {node: ^12 || ^14 || >= 16} + peerDependencies: + postcss: ^8.4.21 + dependencies: + camelcase-css: 2.0.1 + postcss: 8.4.27 + dev: true + + /postcss-load-config/4.0.1_postcss@8.4.27: + resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==} + engines: {node: '>= 14'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + dependencies: + lilconfig: 2.1.0 + postcss: 8.4.27 + yaml: 2.3.1 + dev: true + + /postcss-nested/6.0.1_postcss@8.4.27: + resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} + engines: {node: '>=12.0'} + peerDependencies: + postcss: ^8.2.14 + dependencies: + postcss: 8.4.27 + postcss-selector-parser: 6.0.13 + dev: true + + /postcss-selector-parser/6.0.13: + resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==} + engines: {node: '>=4'} + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + dev: true + + /postcss-value-parser/4.2.0: + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + dev: true + /postcss/8.4.27: - resolution: - { - integrity: sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==, - } - engines: { node: ^10 || ^12 || >=14 } + resolution: {integrity: sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==} + engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.6 picocolors: 1.0.0 @@ -5226,27 +4150,18 @@ packages: dev: true /prelude-ls/1.2.1: - resolution: - { - integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==, - } - engines: { node: '>= 0.8.0' } + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} dev: true /prettier/3.0.0: - resolution: - { - integrity: sha512-zBf5eHpwHOGPC47h0zrPyNn+eAEIdEzfywMoYn2XPi0P44Zp0tSq64rq0xAREh4auw2cJZHo9QUob+NqCQky4g==, - } - engines: { node: '>=14' } + resolution: {integrity: sha512-zBf5eHpwHOGPC47h0zrPyNn+eAEIdEzfywMoYn2XPi0P44Zp0tSq64rq0xAREh4auw2cJZHo9QUob+NqCQky4g==} + engines: {node: '>=14'} hasBin: true dev: true /prop-types/15.8.1: - resolution: - { - integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==, - } + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 @@ -5254,25 +4169,16 @@ packages: dev: true /punycode/2.3.0: - resolution: - { - integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==, - } - engines: { node: '>=6' } + resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} + engines: {node: '>=6'} dev: true /queue-microtask/1.2.3: - resolution: - { - integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, - } + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} dev: true /react-dom/18.2.0_react@18.2.0: - resolution: - { - integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==, - } + resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} peerDependencies: react: ^18.2.0 dependencies: @@ -5282,61 +4188,53 @@ packages: dev: false /react-is/16.13.1: - resolution: - { - integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==, - } + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} dev: true /react/18.2.0: - resolution: - { - integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==, - } - engines: { node: '>=0.10.0' } + resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} + engines: {node: '>=0.10.0'} dependencies: loose-envify: 1.4.0 dev: false + /read-cache/1.0.0: + resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + dependencies: + pify: 2.3.0 + dev: true + + /readdirp/3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + dependencies: + picomatch: 2.3.1 + dev: true + /regenerate-unicode-properties/10.1.0: - resolution: - { - integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==} + engines: {node: '>=4'} dependencies: regenerate: 1.4.2 dev: true /regenerate/1.4.2: - resolution: - { - integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==, - } + resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} dev: true /regenerator-runtime/0.13.11: - resolution: - { - integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==, - } + resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} dev: true /regenerator-transform/0.15.1: - resolution: - { - integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==, - } + resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==} dependencies: '@babel/runtime': 7.22.6 dev: true /regexp.prototype.flags/1.5.0: - resolution: - { - integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -5344,19 +4242,13 @@ packages: dev: true /regexpp/3.2.0: - resolution: - { - integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==, - } - engines: { node: '>=8' } + resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} + engines: {node: '>=8'} dev: true /regexpu-core/5.3.2: - resolution: - { - integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} + engines: {node: '>=4'} dependencies: '@babel/regjsgen': 0.8.0 regenerate: 1.4.2 @@ -5367,28 +4259,19 @@ packages: dev: true /regjsparser/0.9.1: - resolution: - { - integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==, - } + resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} hasBin: true dependencies: jsesc: 0.5.0 dev: true /resolve-from/4.0.0: - resolution: - { - integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} dev: true /resolve/1.22.2: - resolution: - { - integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==, - } + resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==} hasBin: true dependencies: is-core-module: 2.12.1 @@ -5397,10 +4280,7 @@ packages: dev: true /resolve/2.0.0-next.4: - resolution: - { - integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==, - } + resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} hasBin: true dependencies: is-core-module: 2.12.1 @@ -5409,60 +4289,42 @@ packages: dev: true /reusify/1.0.4: - resolution: - { - integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==, - } - engines: { iojs: '>=1.0.0', node: '>=0.10.0' } + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} dev: true /rimraf/3.0.2: - resolution: - { - integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==, - } + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} hasBin: true dependencies: glob: 7.2.3 dev: true /rollup/2.79.1: - resolution: - { - integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==, - } - engines: { node: '>=10.0.0' } + resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} + engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: fsevents: 2.3.2 dev: true /rollup/3.26.3: - resolution: - { - integrity: sha512-7Tin0C8l86TkpcMtXvQu6saWH93nhG3dGQ1/+l5V2TDMceTxO7kDiK6GzbfLWNNxqJXm591PcEZUozZm51ogwQ==, - } - engines: { node: '>=14.18.0', npm: '>=8.0.0' } + resolution: {integrity: sha512-7Tin0C8l86TkpcMtXvQu6saWH93nhG3dGQ1/+l5V2TDMceTxO7kDiK6GzbfLWNNxqJXm591PcEZUozZm51ogwQ==} + engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true optionalDependencies: fsevents: 2.3.2 dev: true /run-parallel/1.2.0: - resolution: - { - integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, - } + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} dependencies: queue-microtask: 1.2.3 dev: true /safe-array-concat/1.0.0: - resolution: - { - integrity: sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==, - } - engines: { node: '>=0.4' } + resolution: {integrity: sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==} + engines: {node: '>=0.4'} dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.1 @@ -5471,10 +4333,7 @@ packages: dev: true /safe-regex-test/1.0.0: - resolution: - { - integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==, - } + resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.1 @@ -5482,56 +4341,38 @@ packages: dev: true /scheduler/0.23.0: - resolution: - { - integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==, - } + resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} dependencies: loose-envify: 1.4.0 dev: false /semver/6.3.1: - resolution: - { - integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, - } + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true dev: true /semver/7.5.4: - resolution: - { - integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} + engines: {node: '>=10'} hasBin: true dependencies: lru-cache: 6.0.0 dev: true /shebang-command/2.0.0: - resolution: - { - integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, - } - engines: { node: '>=8' } + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} dependencies: shebang-regex: 3.0.0 dev: true /shebang-regex/3.0.0: - resolution: - { - integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, - } - engines: { node: '>=8' } + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} dev: true /side-channel/1.0.4: - resolution: - { - integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==, - } + resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.1 @@ -5539,27 +4380,18 @@ packages: dev: true /slash/3.0.0: - resolution: - { - integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==, - } - engines: { node: '>=8' } + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} dev: true /source-map-js/1.0.2: - resolution: - { - integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==, - } - engines: { node: '>=0.10.0' } + resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} + engines: {node: '>=0.10.0'} dev: true /standard-engine/15.1.0: - resolution: - { - integrity: sha512-VHysfoyxFu/ukT+9v49d4BRXIokFRZuH3z1VRxzFArZdjSCFpro6rEIU3ji7e4AoAtuSfKBkiOmsrDqKW5ZSRw==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-VHysfoyxFu/ukT+9v49d4BRXIokFRZuH3z1VRxzFArZdjSCFpro6rEIU3ji7e4AoAtuSfKBkiOmsrDqKW5ZSRw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: get-stdin: 8.0.0 minimist: 1.2.8 @@ -5568,11 +4400,8 @@ packages: dev: true /standard/17.1.0: - resolution: - { - integrity: sha512-jaDqlNSzLtWYW4lvQmU0EnxWMUGQiwHasZl5ZEIwx3S/ijZDjZOzs1y1QqKwKs5vqnFpGtizo4NOYX2s0Voq/g==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-jaDqlNSzLtWYW4lvQmU0EnxWMUGQiwHasZl5ZEIwx3S/ijZDjZOzs1y1QqKwKs5vqnFpGtizo4NOYX2s0Voq/g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: eslint: 8.45.0 @@ -5592,17 +4421,11 @@ packages: dev: true /string-natural-compare/3.0.1: - resolution: - { - integrity: sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==, - } + resolution: {integrity: sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==} dev: true /string.prototype.matchall/4.0.8: - resolution: - { - integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==, - } + resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==} dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -5615,11 +4438,8 @@ packages: dev: true /string.prototype.trim/1.2.7: - resolution: - { - integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -5627,10 +4447,7 @@ packages: dev: true /string.prototype.trimend/1.0.6: - resolution: - { - integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==, - } + resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -5638,10 +4455,7 @@ packages: dev: true /string.prototype.trimstart/1.0.6: - resolution: - { - integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==, - } + resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -5649,89 +4463,121 @@ packages: dev: true /strip-ansi/6.0.1: - resolution: - { - integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, - } - engines: { node: '>=8' } + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} dependencies: ansi-regex: 5.0.1 dev: true /strip-bom/3.0.0: - resolution: - { - integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} dev: true /strip-json-comments/3.1.1: - resolution: - { - integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==, - } - engines: { node: '>=8' } + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + dev: true + + /sucrase/3.34.0: + resolution: {integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==} + engines: {node: '>=8'} + hasBin: true + dependencies: + '@jridgewell/gen-mapping': 0.3.3 + commander: 4.1.1 + glob: 7.1.6 + lines-and-columns: 1.2.4 + mz: 2.7.0 + pirates: 4.0.6 + ts-interface-checker: 0.1.13 dev: true /supports-color/5.5.0: - resolution: - { - integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} dependencies: has-flag: 3.0.0 dev: true /supports-color/7.2.0: - resolution: - { - integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==, - } - engines: { node: '>=8' } + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} dependencies: has-flag: 4.0.0 dev: true /supports-preserve-symlinks-flag/1.0.0: - resolution: - { - integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + dev: true + + /tailwindcss/3.3.3: + resolution: {integrity: sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==} + engines: {node: '>=14.0.0'} + hasBin: true + dependencies: + '@alloc/quick-lru': 5.2.0 + arg: 5.0.2 + chokidar: 3.5.3 + didyoumean: 1.2.2 + dlv: 1.1.3 + fast-glob: 3.3.1 + glob-parent: 6.0.2 + is-glob: 4.0.3 + jiti: 1.19.1 + lilconfig: 2.1.0 + micromatch: 4.0.5 + normalize-path: 3.0.0 + object-hash: 3.0.0 + picocolors: 1.0.0 + postcss: 8.4.27 + postcss-import: 15.1.0_postcss@8.4.27 + postcss-js: 4.0.1_postcss@8.4.27 + postcss-load-config: 4.0.1_postcss@8.4.27 + postcss-nested: 6.0.1_postcss@8.4.27 + postcss-selector-parser: 6.0.13 + resolve: 1.22.2 + sucrase: 3.34.0 + transitivePeerDependencies: + - ts-node dev: true /text-table/0.2.0: - resolution: - { - integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==, - } + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + dev: true + + /thenify-all/1.6.0: + resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} + engines: {node: '>=0.8'} + dependencies: + thenify: 3.3.1 + dev: true + + /thenify/3.3.1: + resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} + dependencies: + any-promise: 1.3.0 dev: true /to-fast-properties/2.0.0: - resolution: - { - integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} + engines: {node: '>=4'} dev: true /to-regex-range/5.0.1: - resolution: - { - integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, - } - engines: { node: '>=8.0' } + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} dependencies: is-number: 7.0.0 dev: true + /ts-interface-checker/0.1.13: + resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} + dev: true + /tsconfig-paths/3.14.2: - resolution: - { - integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==, - } + resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} dependencies: '@types/json5': 0.0.29 json5: 1.0.2 @@ -5740,18 +4586,12 @@ packages: dev: true /tslib/1.14.1: - resolution: - { - integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==, - } + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} dev: true /tsutils/3.21.0_typescript@5.1.6: - resolution: - { - integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==, - } - engines: { node: '>= 6' } + resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} + engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: @@ -5760,37 +4600,25 @@ packages: dev: true /type-check/0.4.0: - resolution: - { - integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==, - } - engines: { node: '>= 0.8.0' } + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.2.1 dev: true /type-fest/0.20.2: - resolution: - { - integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} dev: true /type-fest/0.3.1: - resolution: - { - integrity: sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==, - } - engines: { node: '>=6' } + resolution: {integrity: sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==} + engines: {node: '>=6'} dev: true /typed-array-buffer/1.0.0: - resolution: - { - integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.1 @@ -5798,11 +4626,8 @@ packages: dev: true /typed-array-byte-length/1.0.0: - resolution: - { - integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} + engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 for-each: 0.3.3 @@ -5811,11 +4636,8 @@ packages: dev: true /typed-array-byte-offset/1.0.0: - resolution: - { - integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} + engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.5 call-bind: 1.0.2 @@ -5825,10 +4647,7 @@ packages: dev: true /typed-array-length/1.0.4: - resolution: - { - integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==, - } + resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} dependencies: call-bind: 1.0.2 for-each: 0.3.3 @@ -5836,19 +4655,13 @@ packages: dev: true /typescript/5.1.6: - resolution: - { - integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==, - } - engines: { node: '>=14.17' } + resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==} + engines: {node: '>=14.17'} hasBin: true dev: true /unbox-primitive/1.0.2: - resolution: - { - integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, - } + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} dependencies: call-bind: 1.0.2 has-bigints: 1.0.2 @@ -5857,45 +4670,30 @@ packages: dev: true /unicode-canonical-property-names-ecmascript/2.0.0: - resolution: - { - integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} + engines: {node: '>=4'} dev: true /unicode-match-property-ecmascript/2.0.0: - resolution: - { - integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} + engines: {node: '>=4'} dependencies: unicode-canonical-property-names-ecmascript: 2.0.0 unicode-property-aliases-ecmascript: 2.1.0 dev: true /unicode-match-property-value-ecmascript/2.1.0: - resolution: - { - integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} + engines: {node: '>=4'} dev: true /unicode-property-aliases-ecmascript/2.1.0: - resolution: - { - integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==, - } - engines: { node: '>=4' } + resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} + engines: {node: '>=4'} dev: true /update-browserslist-db/1.0.11_browserslist@4.21.9: - resolution: - { - integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==, - } + resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' @@ -5906,27 +4704,22 @@ packages: dev: true /uri-js/4.4.1: - resolution: - { - integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, - } + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} dependencies: punycode: 2.3.0 dev: true + /util-deprecate/1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + dev: true + /version-guard/1.1.1: - resolution: - { - integrity: sha512-MGQLX89UxmYHgDvcXyjBI0cbmoW+t/dANDppNPrno64rYr8nH4SHSuElQuSYdXGEs0mUzdQe1BY+FhVPNsAmJQ==, - } - engines: { node: '>=0.10.48' } + resolution: {integrity: sha512-MGQLX89UxmYHgDvcXyjBI0cbmoW+t/dANDppNPrno64rYr8nH4SHSuElQuSYdXGEs0mUzdQe1BY+FhVPNsAmJQ==} + engines: {node: '>=0.10.48'} dev: true /vite-plugin-eslint/1.8.1_eslint@8.45.0+vite@4.4.6: - resolution: - { - integrity: sha512-PqdMf3Y2fLO9FsNPmMX+//2BF5SF8nEWspZdgl4kSt7UvHDRHVVfHvxsD7ULYzZrJDGRxR81Nq7TOFgwMnUang==, - } + resolution: {integrity: sha512-PqdMf3Y2fLO9FsNPmMX+//2BF5SF8nEWspZdgl4kSt7UvHDRHVVfHvxsD7ULYzZrJDGRxR81Nq7TOFgwMnUang==} peerDependencies: eslint: '>=7' vite: '>=2' @@ -5939,11 +4732,8 @@ packages: dev: true /vite/4.4.6: - resolution: - { - integrity: sha512-EY6Mm8vJ++S3D4tNAckaZfw3JwG3wa794Vt70M6cNJ6NxT87yhq7EC8Rcap3ahyHdo8AhCmV9PTk+vG1HiYn1A==, - } - engines: { node: ^14.18.0 || >=16.0.0 } + resolution: {integrity: sha512-EY6Mm8vJ++S3D4tNAckaZfw3JwG3wa794Vt70M6cNJ6NxT87yhq7EC8Rcap3ahyHdo8AhCmV9PTk+vG1HiYn1A==} + engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: '@types/node': '>= 14' @@ -5977,10 +4767,7 @@ packages: dev: true /which-boxed-primitive/1.0.2: - resolution: - { - integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==, - } + resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} dependencies: is-bigint: 1.0.4 is-boolean-object: 1.1.2 @@ -5990,11 +4777,8 @@ packages: dev: true /which-typed-array/1.1.11: - resolution: - { - integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==, - } - engines: { node: '>= 0.4' } + resolution: {integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==} + engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.5 call-bind: 1.0.2 @@ -6004,57 +4788,41 @@ packages: dev: true /which/2.0.2: - resolution: - { - integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, - } - engines: { node: '>= 8' } + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} hasBin: true dependencies: isexe: 2.0.0 dev: true /wrappy/1.0.2: - resolution: - { - integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==, - } + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} dev: true /xdg-basedir/4.0.0: - resolution: - { - integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==, - } - engines: { node: '>=8' } + resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==} + engines: {node: '>=8'} dev: true /yallist/3.1.1: - resolution: - { - integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, - } + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} dev: true /yallist/4.0.0: - resolution: - { - integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==, - } + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} dev: true /yaml/1.10.2: - resolution: - { - integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==, - } - engines: { node: '>= 6' } + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} + dev: true + + /yaml/2.3.1: + resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==} + engines: {node: '>= 14'} dev: true /yocto-queue/0.1.0: - resolution: - { - integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==, - } - engines: { node: '>=10' } + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} dev: true diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/postcss.config.js b/pruebas/01-reading-list/CarlosUlisesOchoa/postcss.config.js new file mode 100644 index 000000000..2e7af2b7f --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/postcss.config.js @@ -0,0 +1,6 @@ +export default { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.css index b9d355df2..902778b76 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.css +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.css @@ -4,39 +4,3 @@ padding: 2rem; text-align: center; } - -.logo { - height: 6em; - padding: 1.5em; - will-change: filter; - transition: filter 300ms; -} -.logo:hover { - filter: drop-shadow(0 0 2em #646cffaa); -} -.logo.react:hover { - filter: drop-shadow(0 0 2em #61dafbaa); -} - -@keyframes logo-spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -} - -@media (prefers-reduced-motion: no-preference) { - a:nth-of-type(2) .logo { - animation: logo-spin infinite 20s linear; - } -} - -.card { - padding: 2em; -} - -.read-the-docs { - color: #888; -} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/index.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/index.css index 2c3fac689..34e0d5b22 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/index.css +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/index.css @@ -1,3 +1,7 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + :root { font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; line-height: 1.5; @@ -6,64 +10,18 @@ color-scheme: light dark; color: rgba(255, 255, 255, 0.87); background-color: #242424; - - font-synthesis: none; - text-rendering: optimizeLegibility; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -webkit-text-size-adjust: 100%; -} - -a { - font-weight: 500; - color: #646cff; - text-decoration: inherit; -} -a:hover { - color: #535bf2; } body { margin: 0; display: flex; place-items: center; - min-width: 320px; min-height: 100vh; } -h1 { - font-size: 3.2em; - line-height: 1.1; -} - -button { - border-radius: 8px; - border: 1px solid transparent; - padding: 0.6em 1.2em; - font-size: 1em; - font-weight: 500; - font-family: inherit; - background-color: #1a1a1a; - cursor: pointer; - transition: border-color 0.25s; -} -button:hover { - border-color: #646cff; -} -button:focus, -button:focus-visible { - outline: 4px auto -webkit-focus-ring-color; -} - @media (prefers-color-scheme: light) { :root { color: #213547; background-color: #ffffff; } - a:hover { - color: #747bff; - } - button { - background-color: #f9f9f9; - } } diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/tailwind.config.js b/pruebas/01-reading-list/CarlosUlisesOchoa/tailwind.config.js new file mode 100644 index 000000000..cbb508c02 --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/tailwind.config.js @@ -0,0 +1,26 @@ +/** @type {import('tailwindcss').Config} */ +export default { + content: ['./src/**/*.{js,ts,jsx,tsx}'], + darkMode: 'class', + theme: { + container: { + center: true, + padding: '2rem', + screens: { + '2xl': '1400px', + }, + }, + extend: { + colors: { + transparent: 'transparent', + current: 'currentColor', + }, + borderRadius: { + lg: 'var(--radius)', + md: 'calc(var(--radius) - 2px)', + sm: 'calc(var(--radius) - 4px)', + }, + }, + }, + plugins: [], +} From 53907948a785424d70b29ec0e5eaac88f5af6a43 Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Mon, 24 Jul 2023 18:12:16 -0600 Subject: [PATCH 10/52] styles moved --- .../01-reading-list/CarlosUlisesOchoa/src/App.jsx | 10 ++++++++-- .../01-reading-list/CarlosUlisesOchoa/src/main.jsx | 2 +- .../CarlosUlisesOchoa/src/{ => styles}/App.css | 0 .../CarlosUlisesOchoa/src/{ => styles}/index.css | 13 +++++++++---- 4 files changed, 18 insertions(+), 7 deletions(-) rename pruebas/01-reading-list/CarlosUlisesOchoa/src/{ => styles}/App.css (100%) rename pruebas/01-reading-list/CarlosUlisesOchoa/src/{ => styles}/index.css (82%) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx index 650afb8c6..0ee0d207b 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx @@ -1,7 +1,13 @@ -import '@/App.css' +import '@/styles/App.css' +import BookList from '@/components/BookList/BookList' function App() { - return

Work In Progress...

+ return ( + <> +

Work In Progress...

+ + + ) } export default App diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/main.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/main.jsx index b5bfad796..f36f69c6f 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/main.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/main.jsx @@ -1,7 +1,7 @@ import React from 'react' import ReactDOM from 'react-dom/client' import App from '@/App.jsx' -import '@/index.css' +import '@/styles/index.css' ReactDOM.createRoot(document.getElementById('root')).render( diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/App.css similarity index 100% rename from pruebas/01-reading-list/CarlosUlisesOchoa/src/App.css rename to pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/App.css diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/index.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/index.css similarity index 82% rename from pruebas/01-reading-list/CarlosUlisesOchoa/src/index.css rename to pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/index.css index 34e0d5b22..1e7db326a 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/index.css +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/index.css @@ -6,16 +6,21 @@ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; line-height: 1.5; font-weight: 400; - - color-scheme: light dark; + box-sizing: border-box; color: rgba(255, 255, 255, 0.87); background-color: #242424; + color-scheme: light dark; +} + +*, +*::before, +*::after { + box-sizing: inherit; } body { margin: 0; - display: flex; - place-items: center; + padding: 0; min-height: 100vh; } From 6108c91d3a9a056fbbcc46e97a778d4821d43dc8 Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Mon, 24 Jul 2023 18:13:14 -0600 Subject: [PATCH 11/52] ADD uuid js package --- pruebas/01-reading-list/CarlosUlisesOchoa/package.json | 3 ++- pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml | 7 +++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/package.json b/pruebas/01-reading-list/CarlosUlisesOchoa/package.json index 46a46860b..e72d702dc 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/package.json +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/package.json @@ -16,7 +16,8 @@ }, "dependencies": { "react": "^18.2.0", - "react-dom": "^18.2.0" + "react-dom": "^18.2.0", + "uuid": "^9.0.0" }, "devDependencies": { "@babel/core": ">=7.0.0-0 <8.0.0", diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml b/pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml index 5ab1837a1..5daf60858 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml @@ -21,12 +21,14 @@ specifiers: standard: ^17.1.0 tailwindcss: ^3.3.3 typescript: '>=2.8.0' + uuid: ^9.0.0 vite: ^4.4.5 vite-plugin-eslint: ^1.8.1 dependencies: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + uuid: 9.0.0 devDependencies: '@babel/core': 7.22.9 @@ -4713,6 +4715,11 @@ packages: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} dev: true + /uuid/9.0.0: + resolution: {integrity: sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==} + hasBin: true + dev: false + /version-guard/1.1.1: resolution: {integrity: sha512-MGQLX89UxmYHgDvcXyjBI0cbmoW+t/dANDppNPrno64rYr8nH4SHSuElQuSYdXGEs0mUzdQe1BY+FhVPNsAmJQ==} engines: {node: '>=0.10.48'} From 2462a5957c697f1d6bf23413009d7c89e4b719e7 Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Tue, 25 Jul 2023 10:57:18 -0600 Subject: [PATCH 12/52] website title modified --- pruebas/01-reading-list/CarlosUlisesOchoa/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/index.html b/pruebas/01-reading-list/CarlosUlisesOchoa/index.html index 905077c7e..004233f77 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/index.html +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/index.html @@ -5,7 +5,7 @@ - Vite + React + Reading list - CarlosUlisesOchoa From 7a3a3713420eaa531e0a5fd8668b209d686ba6a3 Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Tue, 25 Jul 2023 13:18:33 -0600 Subject: [PATCH 13/52] eslint and prettier config modified --- pruebas/01-reading-list/CarlosUlisesOchoa/.eslintrc.cjs | 1 + pruebas/01-reading-list/CarlosUlisesOchoa/.prettierrc.json | 1 + 2 files changed, 2 insertions(+) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/.eslintrc.cjs b/pruebas/01-reading-list/CarlosUlisesOchoa/.eslintrc.cjs index 3cdc19a94..b20d1e3a1 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/.eslintrc.cjs +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/.eslintrc.cjs @@ -34,6 +34,7 @@ module.exports = { 'warn', { allowConstantExport: true }, ], + 'react/prop-types': 'off', 'import/no-duplicates': 'off', quotes: 'off', 'block-spacing': 'off', diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/.prettierrc.json b/pruebas/01-reading-list/CarlosUlisesOchoa/.prettierrc.json index f62c75110..71734d6e2 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/.prettierrc.json +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/.prettierrc.json @@ -1,5 +1,6 @@ { "semi": false, + "printWidth": 90, "singleQuote": true, "jsxSingleQuote": true, "trailingComma": "es5", From 2306b59134cf8bf9e173fdf4a3b11008ee771db8 Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Tue, 25 Jul 2023 13:18:43 -0600 Subject: [PATCH 14/52] tailwind config updated --- .../CarlosUlisesOchoa/src/App.jsx | 45 ++++++- .../src/components/Book/Book.css | 89 +++++++++++++ .../src/components/Book/Book.jsx | 22 ++++ .../src/components/BookList/BookList.css | 47 +++++++ .../src/components/BookList/BookList.jsx | 29 +++++ .../src/components/Filter/Filter.jsx | 0 .../src/components/Icons/AddSquareIcon.jsx | 24 ++++ .../src/components/Icons/TrashIcon.jsx | 21 ++++ .../components/ReadingList/ReadingList.css | 119 ++++++++++++++++++ .../components/ReadingList/ReadingList.jsx | 41 ++++++ .../CarlosUlisesOchoa/src/styles/index.css | 10 +- .../CarlosUlisesOchoa/tailwind.config.js | 1 - 12 files changed, 440 insertions(+), 8 deletions(-) create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.css create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.css create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Filter/Filter.jsx create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Icons/AddSquareIcon.jsx create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Icons/TrashIcon.jsx create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.css create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.jsx diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx index 0ee0d207b..67cae7c2b 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx @@ -1,11 +1,52 @@ import '@/styles/App.css' import BookList from '@/components/BookList/BookList' +import ReadingList from '@/components/ReadingList/ReadingList' +import booksData from '@/data/books.json' function App() { + let booksArray = booksData && booksData.library?.length > 0 ? booksData.library : [] + booksArray = booksArray.map((item) => item.book) + const readingListArray = [ + { + title: 'El Señor de los Anillos', + pages: 1200, + genre: 'Fantasía', + cover: + 'https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1566425108i/33.jpg', + synopsis: 'Una aventura épica en un mundo de fantasía llamado la Tierra Media.', + year: 1954, + ISBN: '978-0618640157', + author: { + name: 'J.R.R. Tolkien', + otherBooks: ['El Hobbit', 'El Silmarillion'], + }, + }, + { + title: 'Juego de Tronos', + pages: 694, + genre: 'Fantasía', + cover: + 'https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1273763400i/8189620.jpg', + synopsis: + 'En un reino donde las estaciones duran años, una batalla épica por el trono se desarrolla.', + year: 1996, + ISBN: '978-0553103540', + author: { + name: 'George R. R. Martin', + otherBooks: ['Choque de Reyes', 'Tormenta de Espadas', 'Festín de Cuervos'], + }, + }, + // add more books here + ] return ( <> -

Work In Progress...

- +
+
+

Books

+ +
+ +
) } diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.css new file mode 100644 index 000000000..b14eed3ad --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.css @@ -0,0 +1,89 @@ +.grid-item { + width: 100%; + height: 100%; +} + +.item-inner { + height: 274px; +} + +/* book style start */ +.book { + cursor: pointer; + position: relative; + overflow: hidden; + background-color: #111; + width: 100%; + height: 100%; +} + +.book:hover .book__content { + opacity: 1; +} + +.book:hover .book__image { + opacity: 0.25; + filter: blur(2px); +} + +.book__image { + object-fit: fill; + width: 100%; + height: 100%; + opacity: 1; + transition: + filter 0.3s ease-in-out, + opacity 0.3s ease-in-out; + filter: none; +} + +.book__content { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + cursor: pointer; + color: white; + opacity: 0; + transition: opacity 0.2s ease-in-out; +} + +.book__icon { + color: white; + padding-bottom: 8px; +} + +.book__text { + text-transform: uppercase; + font-size: 12px; + width: 50%; + text-align: center; +} + +/* book style end */ + +/* Tablet */ +/* @media screen and (min-width: 480px) { + .item-inner { + height: 274px; + } +} */ + +/* Small screens, laptops */ +/* @media screen and (min-width: 768px) { + .item-inner { + height: 274px; + } +} */ + +/* Large screens */ +/* @media screen and (min-width: 1025px) { + .item-inner { + height: 274px; + } +} */ diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx new file mode 100644 index 000000000..ad16c2812 --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx @@ -0,0 +1,22 @@ +import '@/components/Book/Book.css' +import AddSquareIcon from '@/components/Icons/AddSquareIcon' + +const Book = ({ data }) => { + return ( +
+
+
+ {`Cover +
+ + + + Añadir a la lista de lectura +
+
+
+
+ ) +} + +export default Book diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.css new file mode 100644 index 000000000..e1f25d346 --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.css @@ -0,0 +1,47 @@ +.books { + margin: 0 auto; + width: 100%; + max-width: 300px; +} + +.grid-container { + display: grid; + grid-template-columns: auto; + grid-template-rows: auto; + grid-gap: 10px; + padding: 10px; +} + +/* Tablet */ +@media screen and (min-width: 480px) { + .books { + max-width: 400px; + /* width: 100%; */ + } + + .grid-container { + grid-template-columns: repeat(2, auto); + } +} + +/* Small screens, laptops */ +@media screen and (min-width: 768px) { + .books { + max-width: 650px; + } + + .grid-container { + grid-template-columns: repeat(3, auto); + } +} + +/* Large screens */ +@media screen and (min-width: 1025px) { + .books { + max-width: 800px; + } + + .grid-container { + grid-template-columns: repeat(4, auto); + } +} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx new file mode 100644 index 000000000..13fe87894 --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx @@ -0,0 +1,29 @@ +import { useState, useEffect } from 'react' +import { v4 as uuidv4 } from 'uuid' +import Book from '@/components/Book/Book' +import '@/components/BookList/BookList.css' + +const BookList = ({ books }) => { + const [bookList, setBookList] = useState([]) + + useEffect(() => { + const fetchBooks = () => { + const myBooks = books && Array.isArray(books) ? books : [] + setBookList(myBooks) + } + + fetchBooks() + }, []) + + return ( +
+
+ {bookList.map((book) => ( + + ))} +
+
+ ) +} + +export default BookList diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Filter/Filter.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Filter/Filter.jsx new file mode 100644 index 000000000..e69de29bb diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Icons/AddSquareIcon.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Icons/AddSquareIcon.jsx new file mode 100644 index 000000000..c20d3c80d --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Icons/AddSquareIcon.jsx @@ -0,0 +1,24 @@ +const AddSquareIcon = (props) => { + return ( + + + + + ) +} +export default AddSquareIcon diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Icons/TrashIcon.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Icons/TrashIcon.jsx new file mode 100644 index 000000000..b887d5f52 --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Icons/TrashIcon.jsx @@ -0,0 +1,21 @@ +const TrashIcon = (props) => { + return ( + + + + ) +} + +export default TrashIcon diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.css new file mode 100644 index 000000000..130ca91bb --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.css @@ -0,0 +1,119 @@ +.reading-list-card { + position: fixed; + right: 10px; + top: 10px; + z-index: 999; +} + +.card-container { + width: 100%; + max-width: 24rem; + padding: 1.5rem; + background-color: rgb(255, 255, 255); + border: 1px solid #cbd5e0; + border-radius: 0.375rem; + box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); +} + +.card-header { + display: flex; + align-items: center; + justify-content: center; + margin-bottom: 1rem; +} + +.card-title { + font-size: 1.25rem; + font-weight: 700; + line-height: 1; + color: #1a202c; + margin: 0; +} + +.list { + padding: 0; +} + +.list-item { + list-style-type: none; + padding-top: 1rem; + padding-bottom: 1rem; +} + +.list-item-remove-button { + color: #475569; + cursor: pointer; + transition: color 0.2s ease-in-out; +} + +.list-item-remove-button:hover { + color: #1a202c; +} + +.list-item-content { + display: flex; + align-items: center; + gap: 1rem; +} + +.list-item-image-container { + flex-shrink: 0; +} + +.list-item-image { + width: 2.75rem; + height: 2.75rem; +} + +.list-item-detail { + flex-grow: 1; + min-width: 0; /* This is to enable truncation */ +} + +.list-item-name { + font-size: 0.875rem; + font-weight: 500; + color: #1a202c; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; /* This is to enable truncation */ +} + +.list-item-email { + font-size: 0.875rem; + color: #718096; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; /* This is to enable truncation */ +} + +@media (prefers-color-scheme: dark) { + .card-container { + background-color: #212b3e; + border-color: #4a5568; + } + + .card-title { + color: white; + } + + .list-item-remove-button { + color: #4a586e; + } + + .list-item-remove-button:hover { + color: #5c6c85; + } + + .list-item-name { + color: white; + } + + .list-item-email { + color: #a0aec0; + } + + .list { + border-color: #4a5568; + } +} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.jsx new file mode 100644 index 000000000..89d60799d --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.jsx @@ -0,0 +1,41 @@ +// ReadingList.jsx +import TrashIcon from '@/components/Icons/TrashIcon' +import './ReadingList.css' + +const ReadingList = ({ books }) => { + return ( +
+
+
+
My Reading List
+
+
+
    + {books.map((book) => ( +
  • +
    +
    + {`Portada +
    +
    +

    {book.title}

    +

    {book.author.name}

    +
    +
    + +
    +
    +
  • + ))} +
+
+
+
+ ) +} + +export default ReadingList diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/index.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/index.css index 1e7db326a..a635caebf 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/index.css +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/index.css @@ -6,9 +6,9 @@ font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; line-height: 1.5; font-weight: 400; + color: #213547; + background-color: #efefef; box-sizing: border-box; - color: rgba(255, 255, 255, 0.87); - background-color: #242424; color-scheme: light dark; } @@ -24,9 +24,9 @@ body { min-height: 100vh; } -@media (prefers-color-scheme: light) { +@media (prefers-color-scheme: dark) { :root { - color: #213547; - background-color: #ffffff; + color: rgba(255, 255, 255, 0.87); + background-color: #030915; } } diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/tailwind.config.js b/pruebas/01-reading-list/CarlosUlisesOchoa/tailwind.config.js index cbb508c02..47821a746 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/tailwind.config.js +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/tailwind.config.js @@ -1,7 +1,6 @@ /** @type {import('tailwindcss').Config} */ export default { content: ['./src/**/*.{js,ts,jsx,tsx}'], - darkMode: 'class', theme: { container: { center: true, From 1c31ad685aac0ff364274bf629c702f15cb12f00 Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Tue, 25 Jul 2023 15:50:08 -0600 Subject: [PATCH 15/52] commit before implement global state --- .../CarlosUlisesOchoa/src/App.jsx | 53 ++++++---------- .../src/components/Book/Book.jsx | 10 ++- .../src/components/BookList/BookList.jsx | 28 ++++----- .../components/ReadingList/ReadingList.css | 22 +++++++ .../components/ReadingList/ReadingList.jsx | 62 +++++++++++-------- 5 files changed, 99 insertions(+), 76 deletions(-) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx index 67cae7c2b..72f16e4e8 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx @@ -1,3 +1,4 @@ +import { useState } from 'react' import '@/styles/App.css' import BookList from '@/components/BookList/BookList' import ReadingList from '@/components/ReadingList/ReadingList' @@ -6,46 +7,30 @@ import booksData from '@/data/books.json' function App() { let booksArray = booksData && booksData.library?.length > 0 ? booksData.library : [] booksArray = booksArray.map((item) => item.book) - const readingListArray = [ - { - title: 'El Señor de los Anillos', - pages: 1200, - genre: 'Fantasía', - cover: - 'https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1566425108i/33.jpg', - synopsis: 'Una aventura épica en un mundo de fantasía llamado la Tierra Media.', - year: 1954, - ISBN: '978-0618640157', - author: { - name: 'J.R.R. Tolkien', - otherBooks: ['El Hobbit', 'El Silmarillion'], - }, - }, - { - title: 'Juego de Tronos', - pages: 694, - genre: 'Fantasía', - cover: - 'https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1273763400i/8189620.jpg', - synopsis: - 'En un reino donde las estaciones duran años, una batalla épica por el trono se desarrolla.', - year: 1996, - ISBN: '978-0553103540', - author: { - name: 'George R. R. Martin', - otherBooks: ['Choque de Reyes', 'Tormenta de Espadas', 'Festín de Cuervos'], - }, - }, - // add more books here - ] + + const [readingList, setReadingList] = useState([]) + + const addBookToReadingList = (book) => { + // Avoid duplicates in the reading list + if (!readingList.some((b) => b.title === book.title)) { + setReadingList([...readingList, book]) + } + } + return ( <>

Books

- +
- +
) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx index ad16c2812..1cb45bd3c 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx @@ -1,13 +1,17 @@ import '@/components/Book/Book.css' import AddSquareIcon from '@/components/Icons/AddSquareIcon' -const Book = ({ data }) => { +const Book = ({ data, onAddBookToReadingListClick }) => { return (
- {`Cover -
+ {`Imagen +
diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx index 13fe87894..5a4b93e29 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx @@ -1,25 +1,25 @@ -import { useState, useEffect } from 'react' import { v4 as uuidv4 } from 'uuid' import Book from '@/components/Book/Book' import '@/components/BookList/BookList.css' -const BookList = ({ books }) => { - const [bookList, setBookList] = useState([]) - - useEffect(() => { - const fetchBooks = () => { - const myBooks = books && Array.isArray(books) ? books : [] - setBookList(myBooks) - } - - fetchBooks() - }, []) +const BookList = ({ + books, + readingList, + setReadingList, + onAddBookToReadingListClick, +}) => { + // Filter out the books that are already in the reading list + const availableBooks = books.filter((book) => !readingList.includes(book)) return (
- {bookList.map((book) => ( - + {availableBooks.map((book) => ( + onAddBookToReadingListClick(book)} + /> ))}
diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.css index 130ca91bb..379da7115 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.css +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.css @@ -3,6 +3,28 @@ right: 10px; top: 10px; z-index: 999; + max-width: 350px; +} + +/* Tablet */ +/* @media screen and (min-width: 480px) { + .reading-list-card { + + } +} */ + +/* Small screens, laptops */ +/* @media screen and (min-width: 768px) { + .reading-list-card { + + } +} */ + +/* Large screens */ +@media screen and (min-width: 1025px) { + .reading-list-card { + width: 350px; + } } .card-container { diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.jsx index 89d60799d..569c9030e 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.jsx @@ -1,38 +1,50 @@ -// ReadingList.jsx import TrashIcon from '@/components/Icons/TrashIcon' import './ReadingList.css' -const ReadingList = ({ books }) => { +const ReadingList = ({ readingList, setReadingList }) => { + function removeBookFromReadingList(book) { + setReadingList(readingList.filter((b) => b !== book)) + } return (
My Reading List
-
-
    - {books.map((book) => ( -
  • -
    -
    - {`Portada + {readingList && readingList.length > 0 ? ( +
    +
      + {readingList.map((book) => ( +
    • +
      +
      + {`Portada +
      +
      +

      {book.title}

      +

      {book.author.name}

      +
      +
      removeBookFromReadingList(book)}> + +
      -
      -

      {book.title}

      -

      {book.author.name}

      -
      -
      - -
      -
    -
  • - ))} -
-
+ + ))} + +
+ ) : ( +
+

No hay libros en la lista de lectura.

+
+ )}
) From bcd3f7bf37e725d52bb3c9d38283dfea86429c69 Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Tue, 25 Jul 2023 18:30:17 -0600 Subject: [PATCH 16/52] Adding zustand --- .../CarlosUlisesOchoa/package.json | 4 +- .../CarlosUlisesOchoa/pnpm-lock.yaml | 38 +++++++++++++++++++ 2 files changed, 41 insertions(+), 1 deletion(-) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/package.json b/pruebas/01-reading-list/CarlosUlisesOchoa/package.json index e72d702dc..922dec4e4 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/package.json +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/package.json @@ -17,7 +17,9 @@ "dependencies": { "react": "^18.2.0", "react-dom": "^18.2.0", - "uuid": "^9.0.0" + "uuid": "^9.0.0", + "zustand": "^4.3.9", + "zustand-persist": "^0.4.0" }, "devDependencies": { "@babel/core": ">=7.0.0-0 <8.0.0", diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml b/pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml index 5daf60858..ad70027dd 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml @@ -24,11 +24,15 @@ specifiers: uuid: ^9.0.0 vite: ^4.4.5 vite-plugin-eslint: ^1.8.1 + zustand: ^4.3.9 + zustand-persist: ^0.4.0 dependencies: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 uuid: 9.0.0 + zustand: 4.3.9_react@18.2.0 + zustand-persist: 0.4.0_react@18.2.0+zustand@4.3.9 devDependencies: '@babel/core': 7.22.9 @@ -4711,6 +4715,14 @@ packages: punycode: 2.3.0 dev: true + /use-sync-external-store/1.2.0_react@18.2.0: + resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + react: 18.2.0 + dev: false + /util-deprecate/1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} dev: true @@ -4833,3 +4845,29 @@ packages: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} dev: true + + /zustand-persist/0.4.0_react@18.2.0+zustand@4.3.9: + resolution: {integrity: sha512-u6bBIc4yZRpSKBKuTNhoqvoIb09gGHk2NkiPg4K7MPIWTYZg70PlpBn48QEDnKZwfNurnf58TaW5BuMGIMf5hw==} + peerDependencies: + react: '>=16.8.0' + zustand: '>=3.6.3' + dependencies: + react: 18.2.0 + zustand: 4.3.9_react@18.2.0 + dev: false + + /zustand/4.3.9_react@18.2.0: + resolution: {integrity: sha512-Tat5r8jOMG1Vcsj8uldMyqYKC5IZvQif8zetmLHs9WoZlntTHmIoNM8TpLRY31ExncuUvUOXehd0kvahkuHjDw==} + engines: {node: '>=12.7.0'} + peerDependencies: + immer: '>=9.0' + react: '>=16.8' + peerDependenciesMeta: + immer: + optional: true + react: + optional: true + dependencies: + react: 18.2.0 + use-sync-external-store: 1.2.0_react@18.2.0 + dev: false From d5f2b5b86e5d66371782a2bd1afcfbafefdf034c Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Tue, 25 Jul 2023 18:30:43 -0600 Subject: [PATCH 17/52] its working but slow --- .../CarlosUlisesOchoa/src/App.jsx | 26 ++++-------- .../src/components/BookList/BookList.jsx | 24 ++++++----- .../components/ReadingList/ReadingList.jsx | 23 ++++++++--- .../CarlosUlisesOchoa/src/const/books.js | 7 ++++ .../src/{data => mockups}/books.json | 0 .../src/store/useBooksStore.js | 27 +++++++++++++ .../src/store/useReadingListStore.js | 40 +++++++++++++++++++ .../CarlosUlisesOchoa/src/utils/persist.js | 6 +++ 8 files changed, 119 insertions(+), 34 deletions(-) create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/src/const/books.js rename pruebas/01-reading-list/CarlosUlisesOchoa/src/{data => mockups}/books.json (100%) create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/src/store/useBooksStore.js create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/src/store/useReadingListStore.js create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/src/utils/persist.js diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx index 72f16e4e8..5d773628e 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx @@ -1,20 +1,14 @@ -import { useState } from 'react' +import { useReadingListStore } from '@/store/useReadingListStore' import '@/styles/App.css' import BookList from '@/components/BookList/BookList' import ReadingList from '@/components/ReadingList/ReadingList' -import booksData from '@/data/books.json' function App() { - let booksArray = booksData && booksData.library?.length > 0 ? booksData.library : [] - booksArray = booksArray.map((item) => item.book) + // Use the hook here at the top level of your component + const addBookToReadingList = useReadingListStore((state) => state.addBookToReadingList) - const [readingList, setReadingList] = useState([]) - - const addBookToReadingList = (book) => { - // Avoid duplicates in the reading list - if (!readingList.some((b) => b.title === book.title)) { - setReadingList([...readingList, book]) - } + const handleAddBook = (book) => { + addBookToReadingList(book) } return ( @@ -22,15 +16,9 @@ function App() {

Books

- +
- +
) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx index 5a4b93e29..bf8171b3f 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx @@ -1,20 +1,26 @@ +import { useEffect, useState } from 'react' import { v4 as uuidv4 } from 'uuid' import Book from '@/components/Book/Book' import '@/components/BookList/BookList.css' +import { useReadingListStore } from '@/store/useReadingListStore' +import { useBooksStore } from '@/store/useBooksStore' -const BookList = ({ - books, - readingList, - setReadingList, - onAddBookToReadingListClick, -}) => { - // Filter out the books that are already in the reading list - const availableBooks = books.filter((book) => !readingList.includes(book)) +const BookList = ({ onAddBookToReadingListClick }) => { + const [availableBooksState, setAvailableBooksState] = useState([]) + + const bookList = useBooksStore((state) => state.books) + + const readingList = useReadingListStore((state) => state.readingList) + + useEffect(() => { + const availableBooks = bookList.filter((book) => !readingList.includes(book)) + setAvailableBooksState(availableBooks) + }, [bookList, readingList]) return (
- {availableBooks.map((book) => ( + {availableBooksState.map((book) => ( { + const removeBookFromReadingList = useReadingListStore( + (state) => state.removeBookFromReadingList + ) + + const [readingListState, setReadingListState] = useState([]) + + const readingList = useReadingListStore((state) => state.readingList) + + useEffect(() => { + setReadingListState(readingList) + }, [readingList]) -const ReadingList = ({ readingList, setReadingList }) => { - function removeBookFromReadingList(book) { - setReadingList(readingList.filter((b) => b !== book)) - } return (
My Reading List
- {readingList && readingList.length > 0 ? ( + {readingListState && readingListState.length > 0 ? (
    - {readingList.map((book) => ( + {readingListState.map((book) => (
  • diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/const/books.js b/pruebas/01-reading-list/CarlosUlisesOchoa/src/const/books.js new file mode 100644 index 000000000..c367ff6ab --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/const/books.js @@ -0,0 +1,7 @@ +import booksData from '@/mockups/books.json' +let booksArray = booksData && booksData.library?.length > 0 ? booksData.library : [] +if (booksArray.length > 0) { + booksArray = booksArray.map((item) => item.book) +} + +export const books = booksArray diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/data/books.json b/pruebas/01-reading-list/CarlosUlisesOchoa/src/mockups/books.json similarity index 100% rename from pruebas/01-reading-list/CarlosUlisesOchoa/src/data/books.json rename to pruebas/01-reading-list/CarlosUlisesOchoa/src/mockups/books.json diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/store/useBooksStore.js b/pruebas/01-reading-list/CarlosUlisesOchoa/src/store/useBooksStore.js new file mode 100644 index 000000000..f637480ef --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/store/useBooksStore.js @@ -0,0 +1,27 @@ +import { create } from 'zustand' +import persist from '@/utils/persist' +import { books } from '@/const/books' + +const DEFAULT_DATA = books + +export const useBooksStore = create( + persist( + { + key: 'books', + getStorage: () => localStorage, + }, + (set) => ({ + books: DEFAULT_DATA, + removeBookFromList: (book) => { + set((state) => ({ + books: state.books.filter((item) => item.ISBN !== book.ISBN), + })) + }, + clearList: () => { + set(() => ({ + books: [], + })) + }, + }) + ) +) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/store/useReadingListStore.js b/pruebas/01-reading-list/CarlosUlisesOchoa/src/store/useReadingListStore.js new file mode 100644 index 000000000..471d9838c --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/store/useReadingListStore.js @@ -0,0 +1,40 @@ +// useReadingListStore.js +import { create } from 'zustand' +import persist from '@/utils/persist' + +export const useReadingListStore = create( + persist( + { + key: 'readingList', + default: [], + }, + (set) => ({ + readingList: [], + addBookToReadingList: (book) => { + set((state) => { + const readingList = state.readingList + const existingBook = readingList.find((item) => item.ISBN === book.ISBN) + + // If the book already exists in the reading list, don't add it again + if (!existingBook) { + return { + readingList: [...state.readingList, book], + } + } else { + return state + } + }) + }, + removeBookFromReadingList: (book) => { + set((state) => ({ + readingList: state.readingList.filter((item) => item.ISBN !== book.ISBN), + })) + }, + clearReadingList: () => { + set(() => ({ + readingList: [], + })) + }, + }) + ) +) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/utils/persist.js b/pruebas/01-reading-list/CarlosUlisesOchoa/src/utils/persist.js new file mode 100644 index 000000000..bc68d45ea --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/utils/persist.js @@ -0,0 +1,6 @@ +import { configurePersist } from 'zustand-persist' +const { persist, purge } = configurePersist({ + storage: localStorage, +}) +export default persist +export { purge } From 3cb348332218852c17e3919068aeb53fb3a21d3e Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Thu, 3 Aug 2023 16:37:57 -0600 Subject: [PATCH 18/52] code refactor --- .../CarlosUlisesOchoa/package.json | 1 - .../CarlosUlisesOchoa/pnpm-lock.yaml | 7 -- .../CarlosUlisesOchoa/src/App.jsx | 8 +-- .../src/components/Book/Book.css | 24 ++++--- .../src/components/Book/Book.jsx | 42 ++++++++---- .../src/components/BookList/BookList.css | 64 ++++++++++++++----- .../src/components/BookList/BookList.jsx | 14 ++-- .../components/ReadingList/ReadingList.jsx | 4 +- .../src/store/useReadingListStore.js | 2 +- .../CarlosUlisesOchoa/src/styles/App.css | 7 ++ 10 files changed, 111 insertions(+), 62 deletions(-) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/package.json b/pruebas/01-reading-list/CarlosUlisesOchoa/package.json index 922dec4e4..717d26930 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/package.json +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/package.json @@ -17,7 +17,6 @@ "dependencies": { "react": "^18.2.0", "react-dom": "^18.2.0", - "uuid": "^9.0.0", "zustand": "^4.3.9", "zustand-persist": "^0.4.0" }, diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml b/pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml index ad70027dd..c8fed03cb 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml @@ -21,7 +21,6 @@ specifiers: standard: ^17.1.0 tailwindcss: ^3.3.3 typescript: '>=2.8.0' - uuid: ^9.0.0 vite: ^4.4.5 vite-plugin-eslint: ^1.8.1 zustand: ^4.3.9 @@ -30,7 +29,6 @@ specifiers: dependencies: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - uuid: 9.0.0 zustand: 4.3.9_react@18.2.0 zustand-persist: 0.4.0_react@18.2.0+zustand@4.3.9 @@ -4727,11 +4725,6 @@ packages: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} dev: true - /uuid/9.0.0: - resolution: {integrity: sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==} - hasBin: true - dev: false - /version-guard/1.1.1: resolution: {integrity: sha512-MGQLX89UxmYHgDvcXyjBI0cbmoW+t/dANDppNPrno64rYr8nH4SHSuElQuSYdXGEs0mUzdQe1BY+FhVPNsAmJQ==} engines: {node: '>=0.10.48'} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx index 5d773628e..b6944c745 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx @@ -14,10 +14,10 @@ function App() { return ( <>
    -
    -

    Books

    - -
    +
    +

    Libros

    + +
    diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.css index b14eed3ad..16de71375 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.css +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.css @@ -1,10 +1,14 @@ -.grid-item { +:root { + --dark-color: #111; +} + +.grid__item { width: 100%; height: 100%; } -.item-inner { - height: 274px; +.grid__item-inner { + height: 17.125rem; /* 274px/16 */ } /* book style start */ @@ -12,7 +16,7 @@ cursor: pointer; position: relative; overflow: hidden; - background-color: #111; + background-color: var(--dark-color); width: 100%; height: 100%; } @@ -53,14 +57,14 @@ transition: opacity 0.2s ease-in-out; } -.book__icon { +.book__content-icon { color: white; padding-bottom: 8px; } -.book__text { +.book__content-text { text-transform: uppercase; - font-size: 12px; + font-size: 0.75rem; /* 12px/16 */ width: 50%; text-align: center; } @@ -69,21 +73,21 @@ /* Tablet */ /* @media screen and (min-width: 480px) { - .item-inner { + .grid__item-inner { height: 274px; } } */ /* Small screens, laptops */ /* @media screen and (min-width: 768px) { - .item-inner { + .grid__item-inner { height: 274px; } } */ /* Large screens */ /* @media screen and (min-width: 1025px) { - .item-inner { + .grid__item-inner { height: 274px; } } */ diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx index 1cb45bd3c..082433dfb 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx @@ -1,25 +1,43 @@ +import { useState } from 'react' import '@/components/Book/Book.css' import AddSquareIcon from '@/components/Icons/AddSquareIcon' -const Book = ({ data, onAddBookToReadingListClick }) => { +const Book = ({ data, onAddBookToReadingListClick, fadingOut = false }) => { + const [isFadingOut, setIsFadingOut] = useState(fadingOut) + + const fadeOut = (cb) => { + setIsFadingOut(true) + cb() + } + + const handleAddBookToReadingListClick = () => { + fadeOut(() => { + setTimeout(() => { + onAddBookToReadingListClick() + setIsFadingOut(false) + }, 300) + }) + } + return ( -
    -
    -
    +
    +
    +
    {`Imagen -
    - - - - Añadir a la lista de lectura -
    -
    +
    {data.title}
    + +
    -
    + ) } diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.css index e1f25d346..142926b8a 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.css +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.css @@ -1,10 +1,7 @@ -.books { +.books__container { margin: 0 auto; width: 100%; max-width: 300px; -} - -.grid-container { display: grid; grid-template-columns: auto; grid-template-rows: auto; @@ -12,36 +9,69 @@ padding: 10px; } +.book { + animation: fadein 0.3s linear forwards; +} + +.book.fading-out { + animation: fadeout 0.3s linear forwards; +} + /* Tablet */ @media screen and (min-width: 480px) { - .books { + .books__container { max-width: 400px; - /* width: 100%; */ - } - - .grid-container { grid-template-columns: repeat(2, auto); } } /* Small screens, laptops */ @media screen and (min-width: 768px) { - .books { - max-width: 650px; - } - - .grid-container { + .books__container { grid-template-columns: repeat(3, auto); } } /* Large screens */ @media screen and (min-width: 1025px) { - .books { + .books__container { max-width: 800px; + grid-template-columns: repeat(4, auto); } +} - .grid-container { - grid-template-columns: repeat(4, auto); +@-webkit-keyframes fadein { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } +} + +@keyframes fadein { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } +} + +@-webkit-keyframes fadeout { + 0% { + opacity: 1; + } + 100% { + opacity: 0; + } +} + +@keyframes fadeout { + 0% { + opacity: 1; + } + 100% { + opacity: 0; } } diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx index bf8171b3f..b59631c26 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx @@ -1,5 +1,4 @@ import { useEffect, useState } from 'react' -import { v4 as uuidv4 } from 'uuid' import Book from '@/components/Book/Book' import '@/components/BookList/BookList.css' import { useReadingListStore } from '@/store/useReadingListStore' @@ -18,17 +17,16 @@ const BookList = ({ onAddBookToReadingListClick }) => { }, [bookList, readingList]) return ( -
    -
    - {availableBooksState.map((book) => ( +
      + {availableBooksState.map((book) => ( +
    • onAddBookToReadingListClick(book)} /> - ))} -
    -
    +
  • + ))} +
) } diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.jsx index 999804bb8..8ce14970c 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.jsx @@ -20,7 +20,7 @@ const ReadingList = () => {
-
My Reading List
+
Mi lista de lectura
{readingListState && readingListState.length > 0 ? (
@@ -28,7 +28,7 @@ const ReadingList = () => { role='list' className='list divide-y divide-gray-200 dark:divide-gray-700'> {readingListState.map((book) => ( -
  • +
  • localStorage, }, (set) => ({ readingList: [], diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/App.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/App.css index 902778b76..0378abf93 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/App.css +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/App.css @@ -4,3 +4,10 @@ padding: 2rem; text-align: center; } + +.books__title { + font-size: 1.875rem; + line-height: 2.25rem; + font-weight: 700; + margin-bottom: 0.5rem; +} From 802b2b55be6fb6c35e22af7a3938ec5c9fdebebd Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Thu, 3 Aug 2023 18:33:06 -0600 Subject: [PATCH 19/52] refactor code #2 --- .../CarlosUlisesOchoa/src/App.jsx | 16 +++-- .../src/components/Book/Book.css | 63 +++++++++++++++---- .../src/components/Book/Book.jsx | 29 ++++----- .../src/components/BookList/BookList.css | 44 +------------ .../src/components/BookList/BookList.jsx | 12 ++-- .../components/ReadingList/ReadingList.css | 8 +-- .../components/ReadingList/ReadingList.jsx | 4 +- .../src/store/useBooksStore.js | 20 +++--- .../src/store/useReadingListStore.js | 8 +-- 9 files changed, 96 insertions(+), 108 deletions(-) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx index b6944c745..6cf48d511 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx @@ -12,15 +12,13 @@ function App() { } return ( - <> -
    -
    -

    Libros

    - -
    - -
    - +
    +
    +

    Libros

    + +
    + +
    ) } diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.css index 16de71375..611161098 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.css +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.css @@ -2,17 +2,9 @@ --dark-color: #111; } -.grid__item { - width: 100%; - height: 100%; -} - -.grid__item-inner { - height: 17.125rem; /* 274px/16 */ -} - /* book style start */ .book { + max-height: 17.125rem; /* 274px/16 */ cursor: pointer; position: relative; overflow: hidden; @@ -21,7 +13,15 @@ height: 100%; } -.book:hover .book__content { +.book { + animation: fadein 0.3s linear forwards; +} + +.book--fading-out { + animation: fadeout 0.3s linear forwards; +} + +.book:hover .book__options { opacity: 1; } @@ -32,6 +32,7 @@ .book__image { object-fit: fill; + aspect-ratio: 9/14; width: 100%; height: 100%; opacity: 1; @@ -41,7 +42,7 @@ filter: none; } -.book__content { +.book__options { position: absolute; top: 0; right: 0; @@ -57,12 +58,12 @@ transition: opacity 0.2s ease-in-out; } -.book__content-icon { +.book__options-icon { color: white; padding-bottom: 8px; } -.book__content-text { +.book__options-text { text-transform: uppercase; font-size: 0.75rem; /* 12px/16 */ width: 50%; @@ -91,3 +92,39 @@ height: 274px; } } */ + +@-webkit-keyframes fadein { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } +} + +@keyframes fadein { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } +} + +@-webkit-keyframes fadeout { + 0% { + opacity: 1; + } + 100% { + opacity: 0; + } +} + +@keyframes fadeout { + 0% { + opacity: 1; + } + 100% { + opacity: 0; + } +} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx index 082433dfb..f2906ce17 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx @@ -20,23 +20,18 @@ const Book = ({ data, onAddBookToReadingListClick, fadingOut = false }) => { } return ( -
    -
    -
    - {`Imagen -
    {data.title}
    -
    - -
    +
    + {`Imagen +
    ) } diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.css index 142926b8a..3d9825198 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.css +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.css @@ -9,12 +9,8 @@ padding: 10px; } -.book { - animation: fadein 0.3s linear forwards; -} - -.book.fading-out { - animation: fadeout 0.3s linear forwards; +.books__element { + display: grid; } /* Tablet */ @@ -39,39 +35,3 @@ grid-template-columns: repeat(4, auto); } } - -@-webkit-keyframes fadein { - 0% { - opacity: 0; - } - 100% { - opacity: 1; - } -} - -@keyframes fadein { - 0% { - opacity: 0; - } - 100% { - opacity: 1; - } -} - -@-webkit-keyframes fadeout { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} - -@keyframes fadeout { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx index b59631c26..9741975d9 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx @@ -5,21 +5,21 @@ import { useReadingListStore } from '@/store/useReadingListStore' import { useBooksStore } from '@/store/useBooksStore' const BookList = ({ onAddBookToReadingListClick }) => { - const [availableBooksState, setAvailableBooksState] = useState([]) - const bookList = useBooksStore((state) => state.books) - const readingList = useReadingListStore((state) => state.readingList) + const [availableBooksState, setAvailableBooksState] = useState([]) useEffect(() => { - const availableBooks = bookList.filter((book) => !readingList.includes(book)) + const availableBooks = bookList.filter((book) => { + return !readingList.find((readingBook) => readingBook.ISBN === book.ISBN) + }) setAvailableBooksState(availableBooks) - }, [bookList, readingList]) + }, [readingList]) return (
      {availableBooksState.map((book) => ( -
    • +
    • onAddBookToReadingListClick(book)} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.css index 379da7115..4ac6427bb 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.css +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.css @@ -1,4 +1,4 @@ -.reading-list-card { +.reading__list { position: fixed; right: 10px; top: 10px; @@ -8,21 +8,21 @@ /* Tablet */ /* @media screen and (min-width: 480px) { - .reading-list-card { + .reading__list { } } */ /* Small screens, laptops */ /* @media screen and (min-width: 768px) { - .reading-list-card { + .reading__list { } } */ /* Large screens */ @media screen and (min-width: 1025px) { - .reading-list-card { + .reading__list { width: 350px; } } diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.jsx index 8ce14970c..08e47e642 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.jsx @@ -17,7 +17,7 @@ const ReadingList = () => { }, [readingList]) return ( -
      +
      Mi lista de lectura
      @@ -57,7 +57,7 @@ const ReadingList = () => {
      )}
      -
      + ) } diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/store/useBooksStore.js b/pruebas/01-reading-list/CarlosUlisesOchoa/src/store/useBooksStore.js index f637480ef..cd4912099 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/store/useBooksStore.js +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/store/useBooksStore.js @@ -12,16 +12,16 @@ export const useBooksStore = create( }, (set) => ({ books: DEFAULT_DATA, - removeBookFromList: (book) => { - set((state) => ({ - books: state.books.filter((item) => item.ISBN !== book.ISBN), - })) - }, - clearList: () => { - set(() => ({ - books: [], - })) - }, + // removeBookFromList: (book) => { + // set((state) => ({ + // books: state.books.filter((item) => item.ISBN !== book.ISBN), + // })) + // }, + // clearList: () => { + // set(() => ({ + // books: [], + // })) + // }, }) ) ) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/store/useReadingListStore.js b/pruebas/01-reading-list/CarlosUlisesOchoa/src/store/useReadingListStore.js index 37dc5a8d7..9a156ed04 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/store/useReadingListStore.js +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/store/useReadingListStore.js @@ -1,4 +1,4 @@ -// useReadingListStore.js +// src/store/useReadingListStore.js import { create } from 'zustand' import persist from '@/utils/persist' @@ -12,13 +12,11 @@ export const useReadingListStore = create( readingList: [], addBookToReadingList: (book) => { set((state) => { - const readingList = state.readingList + const readingList = [...state.readingList] const existingBook = readingList.find((item) => item.ISBN === book.ISBN) - - // If the book already exists in the reading list, don't add it again if (!existingBook) { return { - readingList: [...state.readingList, book], + readingList: [...readingList, book], } } else { return state From 230427275a8d472445a095178daa3e8788b84411 Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Fri, 4 Aug 2023 15:12:10 -0600 Subject: [PATCH 20/52] performance improved --- .../CarlosUlisesOchoa/src/App.jsx | 3 + .../src/components/Book/Book.jsx | 4 +- .../src/components/BookList/BookList.jsx | 4 +- .../components/ReadingList/ReadingList.css | 64 ++++++++----------- .../components/ReadingList/ReadingList.jsx | 39 +++++------ .../src/store/useBooksStore.js | 17 ++--- 6 files changed, 56 insertions(+), 75 deletions(-) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx index 6cf48d511..ba57acd13 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx @@ -2,8 +2,11 @@ import { useReadingListStore } from '@/store/useReadingListStore' import '@/styles/App.css' import BookList from '@/components/BookList/BookList' import ReadingList from '@/components/ReadingList/ReadingList' +import { useEffect } from 'react' function App() { + useEffect(() => console.log('[R]-------> App component rendered!'), []) // tetemp + // Use the hook here at the top level of your component const addBookToReadingList = useReadingListStore((state) => state.addBookToReadingList) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx index f2906ce17..34fbaf94a 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx @@ -1,8 +1,10 @@ -import { useState } from 'react' +import { useEffect, useState } from 'react' import '@/components/Book/Book.css' import AddSquareIcon from '@/components/Icons/AddSquareIcon' const Book = ({ data, onAddBookToReadingListClick, fadingOut = false }) => { + useEffect(() => console.log(`[R]-------> Book '${data.title}' rendered!`), []) // tetemp + const [isFadingOut, setIsFadingOut] = useState(fadingOut) const fadeOut = (cb) => { diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx index 9741975d9..2a1ac1d15 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx @@ -5,6 +5,8 @@ import { useReadingListStore } from '@/store/useReadingListStore' import { useBooksStore } from '@/store/useBooksStore' const BookList = ({ onAddBookToReadingListClick }) => { + useEffect(() => console.log('[R]-------> BookList component rendered!'), []) // tetemp + const bookList = useBooksStore((state) => state.books) const readingList = useReadingListStore((state) => state.readingList) const [availableBooksState, setAvailableBooksState] = useState([]) @@ -14,7 +16,7 @@ const BookList = ({ onAddBookToReadingListClick }) => { return !readingList.find((readingBook) => readingBook.ISBN === book.ISBN) }) setAvailableBooksState(availableBooks) - }, [readingList]) + }, [readingList, bookList]) return (
        diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.css index 4ac6427bb..4e9c0c302 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.css +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.css @@ -6,28 +6,13 @@ max-width: 350px; } -/* Tablet */ -/* @media screen and (min-width: 480px) { - .reading__list { - - } -} */ - -/* Small screens, laptops */ -/* @media screen and (min-width: 768px) { - .reading__list { - - } -} */ - -/* Large screens */ @media screen and (min-width: 1025px) { .reading__list { width: 350px; } } -.card-container { +.card { width: 100%; max-width: 24rem; padding: 1.5rem; @@ -37,14 +22,14 @@ box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); } -.card-header { +.card__header { display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; } -.card-title { +.card__title { font-size: 1.25rem; font-weight: 700; line-height: 1; @@ -56,43 +41,47 @@ padding: 0; } -.list-item { +.list > * + * { + border-top: 1px solid #edf2f7; /* equivalent to divide-gray-200 */ +} + +.list__item { list-style-type: none; padding-top: 1rem; padding-bottom: 1rem; } -.list-item-remove-button { +.item__remove-button { color: #475569; cursor: pointer; transition: color 0.2s ease-in-out; } -.list-item-remove-button:hover { +.item__remove-button:hover { color: #1a202c; } -.list-item-content { +.item__content { display: flex; align-items: center; gap: 1rem; } -.list-item-image-container { +.item__image-container { flex-shrink: 0; } -.list-item-image { +.item__image { width: 2.75rem; height: 2.75rem; } -.list-item-detail { +.item__detail { flex-grow: 1; min-width: 0; /* This is to enable truncation */ } -.list-item-name { +.item__title { font-size: 0.875rem; font-weight: 500; color: #1a202c; @@ -101,7 +90,7 @@ text-overflow: ellipsis; /* This is to enable truncation */ } -.list-item-email { +.item__email { font-size: 0.875rem; color: #718096; white-space: nowrap; @@ -110,32 +99,29 @@ } @media (prefers-color-scheme: dark) { - .card-container { + .card { background-color: #212b3e; border-color: #4a5568; } - - .card-title { + .card__title { color: white; } - - .list-item-remove-button { + .item__remove-button { color: #4a586e; } - - .list-item-remove-button:hover { + .item__remove-button:hover { color: #5c6c85; } - - .list-item-name { + .item__title { color: white; } - - .list-item-email { + .item__email { color: #a0aec0; } - .list { border-color: #4a5568; } + .list > * + * { + border-top: 1px solid #4a5568; /* equivalent to divide-gray-700 */ + } } diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.jsx index 08e47e642..01e3b20bf 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.jsx @@ -2,47 +2,41 @@ import { useEffect, useState } from 'react' import TrashIcon from '@/components/Icons/TrashIcon' import './ReadingList.css' import { useReadingListStore } from '@/store/useReadingListStore' - const ReadingList = () => { + useEffect(() => console.log('[R]-------> ReadingList component rendered!'), []) // tetemp const removeBookFromReadingList = useReadingListStore( (state) => state.removeBookFromReadingList ) - const [readingListState, setReadingListState] = useState([]) - const readingList = useReadingListStore((state) => state.readingList) - useEffect(() => { setReadingListState(readingList) }, [readingList]) - return (
        -
        -
        -
        Mi lista de lectura
        +
        +
        +
        Mi lista de lectura
        {readingListState && readingListState.length > 0 ? ( -
        -
          +
          +
            {readingListState.map((book) => ( -
          • -
            -
            +
          • +
            +
            {`Portada
            -
            -

            {book.title}

            -

            {book.author.name}

            +
            +

            {book.title}

            +

            {book.author.name}

            removeBookFromReadingList(book)}>
            @@ -52,13 +46,12 @@ const ReadingList = () => {
          ) : ( -
          -

          No hay libros en la lista de lectura.

          +
          +

          No hay libros en la lista de lectura.

          )}
        ) } - export default ReadingList diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/store/useBooksStore.js b/pruebas/01-reading-list/CarlosUlisesOchoa/src/store/useBooksStore.js index cd4912099..b43d1a49e 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/store/useBooksStore.js +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/store/useBooksStore.js @@ -2,7 +2,7 @@ import { create } from 'zustand' import persist from '@/utils/persist' import { books } from '@/const/books' -const DEFAULT_DATA = books +const DEFAULT_DATA = JSON.parse(localStorage.getItem('books')) || books || [] export const useBooksStore = create( persist( @@ -12,16 +12,11 @@ export const useBooksStore = create( }, (set) => ({ books: DEFAULT_DATA, - // removeBookFromList: (book) => { - // set((state) => ({ - // books: state.books.filter((item) => item.ISBN !== book.ISBN), - // })) - // }, - // clearList: () => { - // set(() => ({ - // books: [], - // })) - // }, + // Add a function to update the books array and persist it to localStorage + setBooks: (newBooks) => { + set({ books: newBooks }) + localStorage.setItem('books', JSON.stringify(newBooks)) + }, }) ) ) From 6e8c94f9e9e5f2eedd26d8205eac581c3da182c1 Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Fri, 4 Aug 2023 15:22:18 -0600 Subject: [PATCH 21/52] modified book thumbnail size --- .../src/components/ReadingList/ReadingList.css | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.css index 4e9c0c302..6f2f2251c 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.css +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.css @@ -68,12 +68,14 @@ } .item__image-container { - flex-shrink: 0; + height: 4.5rem; } .item__image { - width: 2.75rem; - height: 2.75rem; + object-fit: fill; + aspect-ratio: 6/7; + width: 100%; + height: 100%; } .item__detail { From b3c6fd9cde058d0d33f693ef1e8417d7b51fe8c8 Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Fri, 4 Aug 2023 20:56:19 -0600 Subject: [PATCH 22/52] filter by page number implemented --- .../CarlosUlisesOchoa/package.json | 1 + .../CarlosUlisesOchoa/pnpm-lock.yaml | 12 ++ .../src/components/BookList/BookList.jsx | 106 +++++++++++++++--- 3 files changed, 103 insertions(+), 16 deletions(-) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/package.json b/pruebas/01-reading-list/CarlosUlisesOchoa/package.json index 717d26930..c5dc53236 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/package.json +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/package.json @@ -17,6 +17,7 @@ "dependencies": { "react": "^18.2.0", "react-dom": "^18.2.0", + "react-range": "^1.8.14", "zustand": "^4.3.9", "zustand-persist": "^0.4.0" }, diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml b/pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml index c8fed03cb..ba70fc5dd 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/pnpm-lock.yaml @@ -18,6 +18,7 @@ specifiers: prettier: ^3.0.0 react: ^18.2.0 react-dom: ^18.2.0 + react-range: ^1.8.14 standard: ^17.1.0 tailwindcss: ^3.3.3 typescript: '>=2.8.0' @@ -29,6 +30,7 @@ specifiers: dependencies: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 + react-range: 1.8.14_biqbaboplfbrettd7655fr4n2y zustand: 4.3.9_react@18.2.0 zustand-persist: 0.4.0_react@18.2.0+zustand@4.3.9 @@ -4195,6 +4197,16 @@ packages: resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} dev: true + /react-range/1.8.14_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-v2nyD5106rHf9dwHzq+WRlhCes83h1wJRHIMFjbZsYYsO6LF4mG/mR3cH7Cf+dkeHq65DItuqIbLn/3jjYjsHg==} + peerDependencies: + react: ^16.8.0-0 || ^17.0.0-0 || ^18.0.0-0 + react-dom: ^16.8.0-0 || ^17.0.0-0 || ^18.0.0-0 + dependencies: + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + dev: false + /react/18.2.0: resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} engines: {node: '>=0.10.0'} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx index 2a1ac1d15..223118b44 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx @@ -1,4 +1,5 @@ import { useEffect, useState } from 'react' +import { Range } from 'react-range' import Book from '@/components/Book/Book' import '@/components/BookList/BookList.css' import { useReadingListStore } from '@/store/useReadingListStore' @@ -7,28 +8,101 @@ import { useBooksStore } from '@/store/useBooksStore' const BookList = ({ onAddBookToReadingListClick }) => { useEffect(() => console.log('[R]-------> BookList component rendered!'), []) // tetemp - const bookList = useBooksStore((state) => state.books) - const readingList = useReadingListStore((state) => state.readingList) - const [availableBooksState, setAvailableBooksState] = useState([]) + const booksArray = useBooksStore((state) => state.books) + const readingListBooksArray = useReadingListStore((state) => state.readingList) + const [availableBooks, setAvailableBooks] = useState([]) + const [genres, setGenres] = useState([]) // ['Fantasy', 'Horror', 'Science Fiction', etc... + const [genreFilter, setGenreFilter] = useState('') + const [maxPagesFilter, setMaxPagesFilter] = useState([1]) // maximum page filter + const [maxNumberOfPagesValue, setMaxNumberOfPagesValue] = useState(2) useEffect(() => { - const availableBooks = bookList.filter((book) => { - return !readingList.find((readingBook) => readingBook.ISBN === book.ISBN) + // get all the genres without duplicates + const genresArray = [...new Set(booksArray.map((book) => book.genre))] + // get the maximum number of pages + const maxPages = Math.max(...booksArray.map((book) => book.pages)) + console.log(maxPages) // tetemp + setMaxPagesFilter([maxPages]) + setMaxNumberOfPagesValue(maxPages) + setGenres(genresArray) + }, [booksArray]) + + useEffect(() => { + const availableBooksArray = booksArray.filter((book) => { + const notInReadingList = !readingListBooksArray.find( + (readingBook) => readingBook.ISBN === book.ISBN + ) + const matchesGenre = genreFilter ? book.genre === genreFilter : true + const matchesPageRange = book.pages <= maxPagesFilter[0] // condition to filter by page range + return notInReadingList && matchesGenre && matchesPageRange }) - setAvailableBooksState(availableBooks) - }, [readingList, bookList]) + setAvailableBooks(availableBooksArray) + console.log(genreFilter) // tetemp + console.log(maxPagesFilter) // tetemp + }, [readingListBooksArray, genreFilter, maxPagesFilter]) return ( -
          - {availableBooksState.map((book) => ( -
        • - onAddBookToReadingListClick(book)} + <> +
          +
          + Filter by genre + +
          +
          + {/* input field for page range filter */} + Filter by pages range + setMaxPagesFilter(values)} + renderTrack={({ props, children }) => ( +
          + {children} +
          + )} + renderThumb={({ props }) => ( +
          + )} /> -
        • - ))} -
        +
    + +
      + {availableBooks.map((book) => ( +
    • + onAddBookToReadingListClick(book)} + /> +
    • + ))} +
    + ) } From 7346170779d728ca8aad28e6566ceb2201f46a41 Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Mon, 14 Aug 2023 13:40:14 -0600 Subject: [PATCH 23/52] added custom books mockup --- .../src/mockups/customBooks.json | 235 ++++++++++++++++++ 1 file changed, 235 insertions(+) create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/src/mockups/customBooks.json diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/mockups/customBooks.json b/pruebas/01-reading-list/CarlosUlisesOchoa/src/mockups/customBooks.json new file mode 100644 index 000000000..4a648d3a2 --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/mockups/customBooks.json @@ -0,0 +1,235 @@ +{ + "library": [ + { + "book": { + "title": "El Señor de los Anillos", + "pages": 1200, + "genre": "Fantasía", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1566425108i/33.jpg", + "coverWidth": 317, + "coverHeight": 475, + "synopsis": "Una aventura épica en un mundo de fantasía llamado la Tierra Media.", + "year": 1954, + "ISBN": "978-0618640157", + "author": { + "name": "J.R.R. Tolkien", + "otherBooks": ["El Hobbit", "El Silmarillion"] + } + } + }, + { + "book": { + "title": "Juego de Tronos", + "pages": 694, + "genre": "Fantasía", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1273763400i/8189620.jpg", + "coverWidth": 310, + "coverHeight": 464, + "synopsis": "En un reino donde las estaciones duran años, una batalla épica por el trono se desarrolla.", + "year": 1996, + "ISBN": "978-0553103540", + "author": { + "name": "George R. R. Martin", + "otherBooks": ["Choque de Reyes", "Tormenta de Espadas", "Festín de Cuervos"] + } + } + }, + { + "book": { + "title": "Harry Potter y la piedra filosofal", + "pages": 223, + "genre": "Fantasía", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1550337333i/15868.jpg", + "coverWidth": 1594, + "coverHeight": 2541, + "synopsis": "Un niño descubre que es un mago y comienza una aventura en una escuela de magia.", + "year": 1997, + "ISBN": "978-0747532699", + "author": { + "name": "J.K. Rowling", + "otherBooks": [ + "Harry Potter y la cámara secreta", + "Harry Potter y el prisionero de Azkaban", + "Harry Potter y el cáliz de fuego" + ] + } + } + }, + { + "book": { + "title": "1984", + "pages": 328, + "genre": "Ciencia ficción", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1657781256i/61439040.jpg", + "coverWidth": 340, + "coverHeight": 499, + "synopsis": "Una inquietante visión de un futuro distópico y totalitario.", + "year": 1949, + "ISBN": "978-0451524935", + "author": { + "name": "George Orwell", + "otherBooks": ["Rebelión en la granja"] + } + } + }, + { + "book": { + "title": "Apocalipsis Zombie", + "pages": 444, + "genre": "Zombies", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1422626176i/24762432.jpg", + "coverWidth": 314, + "coverHeight": 475, + "synopsis": "Un gallego se queda en casa en pleno apocalipsis zombie y acaba casi salvando el mundo", + "year": 2001, + "ISBN": "978-4444532611", + "author": { + "name": "Manel Loreiro", + "otherBooks": [] + } + } + }, + { + "book": { + "title": "Dune", + "pages": 412, + "genre": "Ciencia ficción", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1555447414i/44767458.jpg", + "coverWidth": 599, + "coverHeight": 900, + "synopsis": "En el inhóspito planeta desértico de Arrakis, una gran intriga política y familiar se desarrolla.", + "year": 1965, + "ISBN": "978-0441172719", + "author": { + "name": "Frank Herbert", + "otherBooks": ["El mesías de Dune", "Hijos de Dune"] + } + } + }, + { + "book": { + "title": "La Guía del Autoestopista Galáctico", + "pages": 216, + "genre": "Ciencia ficción", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1653311117i/6691227.jpg", + "coverWidth": 329, + "coverHeight": 499, + "synopsis": "Un viaje absurdo y cómico por el espacio, con toallas.", + "year": 1979, + "ISBN": "978-0345391803", + "author": { + "name": "Douglas Adams", + "otherBooks": [ + "El restaurante del fin del mundo", + "La vida, el universo y todo lo demás" + ] + } + } + }, + { + "book": { + "title": "Neuromante", + "pages": 271, + "genre": "Ciencia ficción", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1554437249i/6088007.jpg", + "coverWidth": 333, + "coverHeight": 500, + "synopsis": "Una visión profética de la ciber-realidad y la inteligencia artificial.", + "year": 1984, + "ISBN": "978-0441569595", + "author": { + "name": "William Gibson", + "otherBooks": ["Conde Cero", "Mona Lisa Acelerada"] + } + } + }, + { + "book": { + "title": "Fahrenheit 451", + "pages": 249, + "genre": "Ciencia ficción", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1383718290i/13079982.jpg", + "coverWidth": 309, + "coverHeight": 475, + "synopsis": "Una sociedad futura donde los libros están prohibidos y 'bomberos' queman cualquier libro que encuentren.", + "year": 1953, + "ISBN": "978-1451673319", + "author": { + "name": "Ray Bradbury", + "otherBooks": ["Crónicas marcianas", "El hombre ilustrado"] + } + } + }, + { + "book": { + "title": "El resplandor", + "pages": 688, + "genre": "Terror", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1641398308i/60038757.jpg", + "coverWidth": 326, + "coverHeight": 500, + "synopsis": "Una familia se muda a un hotel aislado para el invierno donde una presencia siniestra influye en el padre hacia la violencia.", + "year": 1977, + "ISBN": "978-0307743657", + "author": { + "name": "Stephen King", + "otherBooks": ["Carrie", "It"] + } + } + }, + { + "book": { + "title": "Drácula", + "pages": 418, + "genre": "Terror", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1387151694i/17245.jpg", + "coverWidth": 240, + "coverHeight": 400, + "synopsis": "La historia del infame conde Drácula y su intento de mudarse de Transilvania a Inglaterra.", + "year": 1897, + "ISBN": "978-0486411095", + "author": { + "name": "Bram Stoker", + "otherBooks": [ + "La joya de las siete estrellas", + "La madriguera del gusano blanco" + ] + } + } + }, + { + "book": { + "title": "Frankenstein", + "pages": 280, + "genre": "Terror", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1669159060i/63631742.jpg", + "coverWidth": 1000, + "coverHeight": 1500, + "synopsis": "Un científico obsesionado crea una criatura viva a partir de partes de cuerpos robadas, con consecuencias desastrosas.", + "year": 1818, + "ISBN": "978-0486282114", + "author": { + "name": "Mary Shelley", + "otherBooks": ["El último hombre", "Valperga"] + } + } + }, + { + "book": { + "title": "La llamada de Cthulhu", + "pages": 43, + "genre": "Terror", + "cover": "https://images-na.ssl-images-amazon.com/images/S/compressed.photo.goodreads.com/books/1485924654i/34094154.jpg", + "coverWidth": 349, + "coverHeight": 500, + "synopsis": "La historia de un monstruo ancestral que amenaza con revivir y dominar el mundo.", + "year": 1928, + "ISBN": "978-1542461690", + "author": { + "name": "H.P. Lovecraft", + "otherBooks": ["El horror de Dunwich", "En las montañas de la locura"] + } + } + } + ] +} From 0ae3fe3ff37fa889120c1491169e5fb449329a1e Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Mon, 14 Aug 2023 13:40:38 -0600 Subject: [PATCH 24/52] modified command --- pruebas/01-reading-list/CarlosUlisesOchoa/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/package.json b/pruebas/01-reading-list/CarlosUlisesOchoa/package.json index c5dc53236..b485829c2 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/package.json +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/package.json @@ -9,7 +9,7 @@ "version": "0.0.0", "type": "module", "scripts": { - "dev": "vite", + "dev": "vite --host", "build": "vite build", "lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0", "preview": "vite preview" From cd12fd86b29d68a2ed912eb5aa23d90f8074cd50 Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Mon, 14 Aug 2023 13:41:08 -0600 Subject: [PATCH 25/52] code refactored --- .../src/components/BookList/BookList.css | 11 +++++ .../src/components/BookList/BookList.jsx | 49 +++++++++++++------ .../components/ReadingList/ReadingList.css | 9 ++++ 3 files changed, 55 insertions(+), 14 deletions(-) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.css index 3d9825198..a6e83cd49 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.css +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.css @@ -13,6 +13,17 @@ display: grid; } +.books__filters__pages { + display: flex; + justify-content: center; + align-items: center; + margin: 10px 0; +} + +.books__filters__pages > * { + display: inline-block; +} + /* Tablet */ @media screen and (min-width: 480px) { .books__container { diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx index 223118b44..9096b59db 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx @@ -1,4 +1,4 @@ -import { useEffect, useState } from 'react' +import { useEffect, useState, useRef } from 'react' import { Range } from 'react-range' import Book from '@/components/Book/Book' import '@/components/BookList/BookList.css' @@ -14,32 +14,53 @@ const BookList = ({ onAddBookToReadingListClick }) => { const [genres, setGenres] = useState([]) // ['Fantasy', 'Horror', 'Science Fiction', etc... const [genreFilter, setGenreFilter] = useState('') const [maxPagesFilter, setMaxPagesFilter] = useState([1]) // maximum page filter + const [debouncedMaxPagesFilter, setDebouncedMaxPagesFilter] = useState([1]) const [maxNumberOfPagesValue, setMaxNumberOfPagesValue] = useState(2) + const firstRender = useRef(true) useEffect(() => { // get all the genres without duplicates const genresArray = [...new Set(booksArray.map((book) => book.genre))] // get the maximum number of pages const maxPages = Math.max(...booksArray.map((book) => book.pages)) - console.log(maxPages) // tetemp - setMaxPagesFilter([maxPages]) + // console.log(maxPages) // tetemp setMaxNumberOfPagesValue(maxPages) + // Only set maxPagesFilter on the first render + if (firstRender.current) { + setMaxPagesFilter([maxPages]) + firstRender.current = false + } + if (maxPagesFilter[0] > maxPages) { + setMaxPagesFilter([maxPages]) + } setGenres(genresArray) }, [booksArray]) + useEffect(() => { + const delayInputTimeoutId = setTimeout(() => { + setDebouncedMaxPagesFilter(maxPagesFilter) + // console.log(debouncedMaxPagesFilter) // tetemp + }, 500) + return () => clearTimeout(delayInputTimeoutId) + }, [maxPagesFilter, 500]) + useEffect(() => { const availableBooksArray = booksArray.filter((book) => { const notInReadingList = !readingListBooksArray.find( (readingBook) => readingBook.ISBN === book.ISBN ) const matchesGenre = genreFilter ? book.genre === genreFilter : true - const matchesPageRange = book.pages <= maxPagesFilter[0] // condition to filter by page range + const matchesPageRange = book.pages <= debouncedMaxPagesFilter[0] // condition to filter by page range return notInReadingList && matchesGenre && matchesPageRange }) setAvailableBooks(availableBooksArray) - console.log(genreFilter) // tetemp - console.log(maxPagesFilter) // tetemp - }, [readingListBooksArray, genreFilter, maxPagesFilter]) + // console.log(genreFilter) // tetemp + // console.log(debouncedMaxPagesFilter) // tetemp + }, [readingListBooksArray, genreFilter, debouncedMaxPagesFilter]) + + function handleMaxPagesFilterChange(e) { + setMaxPagesFilter(e) + } return ( <> @@ -59,20 +80,20 @@ const BookList = ({ onAddBookToReadingListClick }) => {
    {/* input field for page range filter */} - Filter by pages range + Filter by pages range (1 - {maxPagesFilter}) setMaxPagesFilter(values)} + onChange={handleMaxPagesFilterChange} renderTrack={({ props, children }) => (
    {children} @@ -83,9 +104,9 @@ const BookList = ({ onAddBookToReadingListClick }) => { {...props} style={{ ...props.style, - height: '42px', - width: '42px', - backgroundColor: '#999', + height: '21px', + width: '21px', + backgroundColor: '#fff', }} /> )} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.css index 6f2f2251c..3f320579b 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.css +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.css @@ -1,4 +1,5 @@ .reading__list { + display: none; position: fixed; right: 10px; top: 10px; @@ -100,6 +101,14 @@ text-overflow: ellipsis; /* This is to enable truncation */ } +/* Large screens */ +/* tetemp */ +@media screen and (min-width: 1450px) { + .reading__list { + display: block; + } +} + @media (prefers-color-scheme: dark) { .card { background-color: #212b3e; From 857f00c62eda254fb2548cbcb8a33ae17cb23735 Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Tue, 15 Aug 2023 13:39:32 -0600 Subject: [PATCH 26/52] new style for books --- .../src/components/Book/Book.css | 36 ++---- .../src/components/BookList/BookList.css | 43 ++++---- .../src/components/BookList/BookList.jsx | 104 ++++++++++++------ 3 files changed, 101 insertions(+), 82 deletions(-) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.css index 611161098..a258e5464 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.css +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.css @@ -1,16 +1,17 @@ :root { --dark-color: #111; + --aspect-ratio: 9/14; } -/* book style start */ .book { - max-height: 17.125rem; /* 274px/16 */ cursor: pointer; + display: flex; position: relative; overflow: hidden; background-color: var(--dark-color); - width: 100%; - height: 100%; + flex-direction: column; + justify-content: space-between; + align-items: center; } .book { @@ -31,15 +32,12 @@ } .book__image { - object-fit: fill; - aspect-ratio: 9/14; - width: 100%; - height: 100%; + object-fit: contain; + aspect-ratio: var(--aspect-ratio, 9/14); opacity: 1; transition: filter 0.3s ease-in-out, opacity 0.3s ease-in-out; - filter: none; } .book__options { @@ -53,13 +51,11 @@ justify-content: center; align-items: center; cursor: pointer; - color: white; opacity: 0; transition: opacity 0.2s ease-in-out; } .book__options-icon { - color: white; padding-bottom: 8px; } @@ -93,15 +89,6 @@ } } */ -@-webkit-keyframes fadein { - 0% { - opacity: 0; - } - 100% { - opacity: 1; - } -} - @keyframes fadein { 0% { opacity: 0; @@ -111,15 +98,6 @@ } } -@-webkit-keyframes fadeout { - 0% { - opacity: 1; - } - 100% { - opacity: 0; - } -} - @keyframes fadeout { 0% { opacity: 1; diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.css index a6e83cd49..22c580feb 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.css +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.css @@ -1,18 +1,3 @@ -.books__container { - margin: 0 auto; - width: 100%; - max-width: 300px; - display: grid; - grid-template-columns: auto; - grid-template-rows: auto; - grid-gap: 10px; - padding: 10px; -} - -.books__element { - display: grid; -} - .books__filters__pages { display: flex; justify-content: center; @@ -24,25 +9,43 @@ display: inline-block; } +.books__filters__pages > .label { + text-wrap: none; +} + +.books__container { + display: grid; + gap: 1rem; + grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr)); + margin-left: auto; + margin-right: auto; + /* padding: 10px; */ + /* margin: 0 auto; */ + /* width: 100%; */ +} + +/* .books__element { + display: grid; +} */ + /* Tablet */ -@media screen and (min-width: 480px) { +/* @media screen and (min-width: 480px) { .books__container { max-width: 400px; grid-template-columns: repeat(2, auto); } -} +} */ /* Small screens, laptops */ -@media screen and (min-width: 768px) { +/* @media screen and (min-width: 768px) { .books__container { grid-template-columns: repeat(3, auto); } -} +} */ /* Large screens */ @media screen and (min-width: 1025px) { .books__container { max-width: 800px; - grid-template-columns: repeat(4, auto); } } diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx index 9096b59db..cc1f8bc1f 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx @@ -1,5 +1,5 @@ import { useEffect, useState, useRef } from 'react' -import { Range } from 'react-range' +import { Range, getTrackBackground } from 'react-range' import Book from '@/components/Book/Book' import '@/components/BookList/BookList.css' import { useReadingListStore } from '@/store/useReadingListStore' @@ -79,38 +79,76 @@ const BookList = ({ onAddBookToReadingListClick }) => {
    - {/* input field for page range filter */} - Filter by pages range (1 - {maxPagesFilter}) - ( -
    - {children} -
    - )} - renderThumb={({ props }) => ( -
    - )} - /> + + Filter by pages range (1 - {maxPagesFilter[0]}) + +
    + ( +
    +
    + {children} +
    +
    + )} + renderThumb={({ props, isDragged }) => ( +
    +
    +
    + )} + /> +
      From 94e73882a0f55313863e99a13327d87ad94ca151 Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Tue, 15 Aug 2023 13:45:56 -0600 Subject: [PATCH 27/52] commented temporal console messages --- pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx | 2 +- .../CarlosUlisesOchoa/src/components/Book/Book.jsx | 2 +- .../CarlosUlisesOchoa/src/components/BookList/BookList.jsx | 2 +- .../src/components/ReadingList/ReadingList.jsx | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx index ba57acd13..7eee0ad97 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx @@ -5,7 +5,7 @@ import ReadingList from '@/components/ReadingList/ReadingList' import { useEffect } from 'react' function App() { - useEffect(() => console.log('[R]-------> App component rendered!'), []) // tetemp + // useEffect(() => console.log('[R]-------> App component rendered!'), []) // tetemp // Use the hook here at the top level of your component const addBookToReadingList = useReadingListStore((state) => state.addBookToReadingList) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx index 34fbaf94a..79665e59d 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx @@ -3,7 +3,7 @@ import '@/components/Book/Book.css' import AddSquareIcon from '@/components/Icons/AddSquareIcon' const Book = ({ data, onAddBookToReadingListClick, fadingOut = false }) => { - useEffect(() => console.log(`[R]-------> Book '${data.title}' rendered!`), []) // tetemp + // useEffect(() => console.log(`[R]-------> Book '${data.title}' rendered!`), []) // tetemp const [isFadingOut, setIsFadingOut] = useState(fadingOut) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx index cc1f8bc1f..3cc40fc2a 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx @@ -6,7 +6,7 @@ import { useReadingListStore } from '@/store/useReadingListStore' import { useBooksStore } from '@/store/useBooksStore' const BookList = ({ onAddBookToReadingListClick }) => { - useEffect(() => console.log('[R]-------> BookList component rendered!'), []) // tetemp + // useEffect(() => console.log('[R]-------> BookList component rendered!'), []) // tetemp const booksArray = useBooksStore((state) => state.books) const readingListBooksArray = useReadingListStore((state) => state.readingList) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.jsx index 01e3b20bf..7cbefed24 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/ReadingList/ReadingList.jsx @@ -3,7 +3,7 @@ import TrashIcon from '@/components/Icons/TrashIcon' import './ReadingList.css' import { useReadingListStore } from '@/store/useReadingListStore' const ReadingList = () => { - useEffect(() => console.log('[R]-------> ReadingList component rendered!'), []) // tetemp + // useEffect(() => console.log('[R]-------> ReadingList component rendered!'), []) // tetemp const removeBookFromReadingList = useReadingListStore( (state) => state.removeBookFromReadingList ) From a1c471f07f2b0f96cd8c97c63d10a9ad03d6ccc2 Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Tue, 15 Aug 2023 13:49:03 -0600 Subject: [PATCH 28/52] translated some messages from english to spanish --- .../CarlosUlisesOchoa/src/components/BookList/BookList.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx index 3cc40fc2a..2d1b49578 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx @@ -66,11 +66,11 @@ const BookList = ({ onAddBookToReadingListClick }) => { <>
      - Filter by genre + Filtrar por género setGenreFilter(e.target.value)}> - - {genres.map((genre) => ( - - ))} - -
      -
      - - Filtrar por número de páginas (1 - {maxPagesFilter[0]}) - -
      - ( -
      -
      - {children} -
      -
      - )} - renderThumb={({ props, isDragged }) => ( -
      -
      -
      - )} - /> -
      -
      -
      -
        - {availableBooks.map((book) => ( -
      • - onAddBookToReadingListClick(book)} - /> -
      • - ))} -
      + {booksArray.length === 0 && ( +

      No se han encontrado libros que coincidan con tus criterios de búsqueda.

      + )} + {booksArray.length > 0 && ( +
        + {booksArray.map((book) => ( +
      • + onAddBookToReadingListClick(book)} + /> +
      • + ))} +
      + )} ) } diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/BooksFilters.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/BooksFilters.jsx new file mode 100644 index 000000000..b01a483ec --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/BooksFilters.jsx @@ -0,0 +1,58 @@ +import PropTypes from 'prop-types' +import { Range } from './Range' +import { Select } from './Select' +import { SearchBar } from './SearchBar' + +export function BooksFilters({ + onSearchChange, + onGenreChange, + onFilterPages, + genres, + pages, +}) { + return ( +
      +
      + { + e.preventDefault() + }} + onChange={(e) => { + onSearchChange(e.target.value) + }} + /> +
      + +
      +
      + { + const value = e.target.value + setQty(value) + onChange(value) + }} + /> + + + {qty && `Máximo: ${qty} páginas`} + + + ) +} + +Range.propTypes = { + label: PropTypes.string.isRequired, + min: PropTypes.number.isRequired, + max: PropTypes.number.isRequired, + step: PropTypes.number, + onChange: PropTypes.func, + className: PropTypes.string, + inputClassName: PropTypes.string, +} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/SearchBar.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/SearchBar.jsx new file mode 100644 index 000000000..865773375 --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/SearchBar.jsx @@ -0,0 +1,34 @@ +import PropTypes from 'prop-types' +import { useId } from 'react' +import SearchIcon from '@/components/Icons/SearchIcon' + +export function SearchBar({ onSubmit, onChange, placeholder, className = '' }) { + const id = useId() + + return ( +
      + + + +
      + ) +} + +SearchBar.propTypes = { + onSubmit: PropTypes.func, + onChange: PropTypes.func, + placeholder: PropTypes.string.isRequired, + className: PropTypes.string, +} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/Select.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/Select.jsx new file mode 100644 index 000000000..f9dc18dc6 --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/Select.jsx @@ -0,0 +1,36 @@ +import PropTypes from 'prop-types' +import { useId } from 'react' + +export function Select({ label, options, defaultValue, className = '', onChange }) { + const id = useId() + + return ( + <> + {label && ( + + )} + + + ) +} + +Select.propTypes = { + label: PropTypes.string, + options: PropTypes.array.isRequired, + defaultValue: PropTypes.string, + className: PropTypes.string, + onChange: PropTypes.func, +} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Header.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Header.jsx new file mode 100644 index 000000000..faf0980a6 --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Header.jsx @@ -0,0 +1,9 @@ +export function Header() { + return ( +
      +

      + Librerías 8a +

      +
      + ) +} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Icons/SearchIcon.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Icons/SearchIcon.jsx new file mode 100644 index 000000000..2038bd9e6 --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Icons/SearchIcon.jsx @@ -0,0 +1,20 @@ +export default function SearchIcon(props) { + return ( + + + + ) +} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Tabs.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Tabs.jsx new file mode 100644 index 000000000..799c7c258 --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Tabs.jsx @@ -0,0 +1,35 @@ +import PropTypes from 'prop-types' +import { useState } from 'react' + +export function Tabs({ data, selectedTabIndex = 0 }) { + const [selectedTab, setSelectedTab] = useState(selectedTabIndex) + + const tabsHeadings = data.map((tab, index) => { + let tabStyles = + 'pb-2 font-heading font-bold cursor-pointer transition duration-300 border-b-2 leading-tight sm:text-xl' + tabStyles += + selectedTab === index + ? ' text-gray-300 border-slate-500' + : ' text-gray-600 border-transparent hover:text-gray-400' + + return ( +
    • setSelectedTab(index)}> + {tab.name} +
    • + ) + }) + + return ( +
      + +
      {data[selectedTab].content}
      +
      + ) +} + +Tabs.propTypes = { + data: PropTypes.array.isRequired, + selectedTabIndex: PropTypes.number, +} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/hooks/useLocalStorage.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/hooks/useLocalStorage.jsx new file mode 100644 index 000000000..98a57c84a --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/hooks/useLocalStorage.jsx @@ -0,0 +1,24 @@ +import { useState, useEffect } from 'react' + +export function useLocalStorage(key, defaultValue) { + const [data, setData] = useState(() => { + const retrievedData = localStorage.getItem(key) + return retrievedData ? JSON.parse(retrievedData) : defaultValue + }) + + useEffect(() => { + localStorage.setItem(key, JSON.stringify(data)) + + // Sync changes between tabs + const setUpdatedData = (e) => { + if (e.storageArea === localStorage && e.key === key) setData(JSON.parse(e.newValue)) + } + window.addEventListener('storage', setUpdatedData) + + return () => { + window.removeEventListener('storage', setUpdatedData) + } + }, [key, data]) + + return [data, setData] +} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/App.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/App.css index 0378abf93..60170cfff 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/App.css +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/App.css @@ -1,13 +1,8 @@ #root { - max-width: 1280px; + max-width: 1024px; margin: 0 auto; - padding: 2rem; - text-align: center; } -.books__title { - font-size: 1.875rem; - line-height: 2.25rem; - font-weight: 700; - margin-bottom: 0.5rem; +.d-none { + display: none; } diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/index.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/index.css index a635caebf..43a3e36d1 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/index.css +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/index.css @@ -10,6 +10,7 @@ background-color: #efefef; box-sizing: border-box; color-scheme: light dark; + /* --radius: 9999px; */ } *, From ca285e98cda9449cf67d339138b8fa1bfcd7582e Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Thu, 31 Aug 2023 20:36:03 -0600 Subject: [PATCH 37/52] Main title changed --- pruebas/01-reading-list/CarlosUlisesOchoa/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/index.html b/pruebas/01-reading-list/CarlosUlisesOchoa/index.html index c9929dee8..05175f6e7 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/index.html +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/index.html @@ -5,7 +5,7 @@ - Reading list - CarlosUlisesOchoa + Librería 8a - CarlosUlisesOchoa From f70127d96ad1ba5dda152c813ce1bcf3c836a31c Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Thu, 31 Aug 2023 20:37:41 -0600 Subject: [PATCH 38/52] RemoveIcon added --- .../src/components/Icons/RemoveSquareIcon.jsx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Icons/RemoveSquareIcon.jsx diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Icons/RemoveSquareIcon.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Icons/RemoveSquareIcon.jsx new file mode 100644 index 000000000..6eba33d31 --- /dev/null +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Icons/RemoveSquareIcon.jsx @@ -0,0 +1,19 @@ +export default function RemoveSquareIcon(props) { + return ( + + + + + + ) +} From 03df488f6fafdc2c8d91a7dacfae8e926505f12e Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Thu, 31 Aug 2023 20:37:58 -0600 Subject: [PATCH 39/52] App refactored --- .../CarlosUlisesOchoa/src/App.jsx | 43 +++++-------------- .../src/components/Book/Book.css | 19 ++++---- .../src/components/Book/Book.jsx | 20 ++++++--- .../src/components/BookList/BookList.css | 4 +- .../src/components/BookList/BookList.jsx | 5 ++- .../components/BooksFilters/BooksFilters.jsx | 6 +-- .../CarlosUlisesOchoa/src/components/Tabs.jsx | 2 +- .../CarlosUlisesOchoa/src/styles/App.css | 3 +- .../CarlosUlisesOchoa/src/styles/index.css | 3 +- 9 files changed, 49 insertions(+), 56 deletions(-) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx index 9549f20c5..d9f90eea1 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/App.jsx @@ -32,9 +32,9 @@ function App() { filters.pages.max ) - useEffect(() => { - // - }, []) + // useEffect(() => { + // // + // }, []) const removeBook = (isbn, list) => { let bookIndex = null @@ -49,35 +49,22 @@ function App() { } const handleAddToReadingList = (book) => { - console.log(book) // tetemp const [bookIndex, filteredList] = removeBook(book.ISBN, availableBooks) - console.log(bookIndex) // tetemp setAvailableBooks(filteredList) setReadingList([availableBooks[bookIndex], ...readingList]) } const handleRemoveFromReadingList = (book) => { - const [bookIndex, filteredList] = removeBook(book, readingList) + const [bookIndex, filteredList] = removeBook(book.ISBN, readingList) setReadingList(filteredList) setAvailableBooks([readingList[bookIndex], ...availableBooks]) } - const handleClearReadingListButton = () => { - setReadingList([]) - setAvailableBooks(books) - } - function filterBooks(booksArray) { const filteredList = booksArray.filter((book) => { - // tetemp not available yet - // console.log(readingList) // tetemp - // const notInReadingList = !readingList.find( - // (readingBook) => readingBook.ISBN === book.ISBN - // ) const matchesSearchTerm = new RegExp(debouncedSearchTerm, 'i').test(book.title) const matchesGenre = genre ? book.genre === genre : true - const matchesPageRange = book.pages <= debouncedMaxPagesNumber // condition to filter by page range - // return notInReadingList && matchesGenre && matchesPageRange && matchesSearchTerm + const matchesPageRange = book.pages <= debouncedMaxPagesNumber return matchesGenre && matchesPageRange && matchesSearchTerm }) @@ -113,27 +100,19 @@ function App() { content: ( ), }, { name: `Lista de lectura (${readingList.length})`, content: ( - <> -

      Esto aún no funciona del todo 🥲

      -

      - Pulsa{' '} - - aquí - {' '} - para quitar los libros de la lista de lectura -

      - + ), - // content: ( - // - // ), }, ] diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.css index 45c01b0bb..f1d64c645 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.css +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.css @@ -11,12 +11,15 @@ .book--fading-out { animation: fadeout 0.3s linear forwards; } -.book__cover:hover .book__options { - opacity: 1; -} -.book__cover:hover .book__cover-img { - opacity: 0.25; - filter: blur(2px); +/* media query that applies to all devices that got a pointer */ +@media (hover: hover) { + .book__cover:hover .book__options { + opacity: 1; + } + .book__cover:hover .book__cover-img { + opacity: 0.25; + filter: blur(2px); + } } .book__cover { @@ -50,8 +53,8 @@ padding: 1rem; } .book__options-icon--add-to-reading-list { - width: 1.5rem; - height: 1.5rem; + width: 24px; + height: 24px; fill: #fff; margin-bottom: 1.25rem; transition: fill 0.2s ease-in-out; diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx index b05ccc478..08051a6ca 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx @@ -1,8 +1,14 @@ import { useEffect, useState } from 'react' import '@/components/Book/Book.css' import AddSquareIcon from '@/components/Icons/AddSquareIcon' +import RemoveSquareIcon from '../Icons/RemoveSquareIcon' -const Book = ({ data, onAddBookToReadingListClick, fadingOut = false }) => { +const Book = ({ + data, + isOnReadingList = false, + onBookButtonClick, + fadingOut = false, +}) => { // useEffect(() => console.log(`[R]-------> Book '${data.title}' rendered!`), []) // tetemp const [isFadingOut, setIsFadingOut] = useState(fadingOut) @@ -12,10 +18,10 @@ const Book = ({ data, onAddBookToReadingListClick, fadingOut = false }) => { cb() } - const handleAddBookToReadingListClick = () => { + const handleBookButtonClick = () => { fadeOut(() => { setTimeout(() => { - onAddBookToReadingListClick() + onBookButtonClick() setIsFadingOut(false) }, 300) }) @@ -32,12 +38,14 @@ const Book = ({ data, onAddBookToReadingListClick, fadingOut = false }) => {
      diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.css index 3bcd14130..f3b5dc4ce 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.css +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.css @@ -10,13 +10,13 @@ } .books__filters__pages > .label { - text-wrap: none; + white-space: nowrap; } .books__container { display: grid; gap: 1rem; - grid-template-columns: repeat(auto-fill, minmax(9.25rem, 1fr)); + grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)); margin-left: auto; margin-right: auto; } diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx index b04e75158..020928dac 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BookList/BookList.jsx @@ -1,7 +1,7 @@ import Book from '@/components/Book/Book' import '@/components/BookList/BookList.css' -const BookList = ({ booksArray, onAddBookToReadingListClick }) => { +const BookList = ({ booksArray, readingList = false, onBookButtonClick }) => { // useEffect(() => console.log('[R]-------> BookList component rendered!'), []) // tetemp return ( @@ -15,7 +15,8 @@ const BookList = ({ booksArray, onAddBookToReadingListClick }) => {
    • onAddBookToReadingListClick(book)} + isOnReadingList={readingList} + onBookButtonClick={() => onBookButtonClick(book)} />
    • ))} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/BooksFilters.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/BooksFilters.jsx index b01a483ec..00cc06eee 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/BooksFilters.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/BooksFilters.jsx @@ -12,7 +12,7 @@ export function BooksFilters({ }) { return (
      -
      +
      { @@ -30,14 +30,14 @@ export function BooksFilters({ label='Filtrar por género:' options={genres} defaultValue='todos' - className='text-white font-medium text-sm mb-1' + className='text-white font-medium text-sm mb-4 sm:mb-4x' onChange={onGenreChange} />
      { let tabStyles = - 'pb-2 font-heading font-bold cursor-pointer transition duration-300 border-b-2 leading-tight sm:text-xl' + 'pb-2 font-heading font-bold cursor-pointer transition duration-300 border-b-2 leading-tight text-[0.85rem] sm:text-xl' tabStyles += selectedTab === index ? ' text-gray-300 border-slate-500' diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/App.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/App.css index 60170cfff..76574dbf3 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/App.css +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/App.css @@ -1,5 +1,6 @@ #root { - max-width: 1024px; + min-height: 100%; + max-width: 850px; margin: 0 auto; } diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/index.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/index.css index 43a3e36d1..97c939aa9 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/index.css +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/styles/index.css @@ -19,10 +19,11 @@ box-sizing: inherit; } +html, body { margin: 0; padding: 0; - min-height: 100vh; + height: 100%; } @media (prefers-color-scheme: dark) { From db9f2c019783411981fe7088efc73c69169e2ccd Mon Sep 17 00:00:00 2001 From: Carlos Ochoa Date: Mon, 4 Sep 2023 17:12:36 -0600 Subject: [PATCH 40/52] Refactor code --- .../src/components/Book/Book.css | 48 +++++++++++++++---- .../src/components/Book/Book.jsx | 8 ++-- .../components/BooksFilters/BooksFilters.jsx | 6 +-- .../src/components/BooksFilters/Range.jsx | 4 +- .../src/components/BooksFilters/SearchBar.jsx | 4 +- .../src/components/BooksFilters/Select.jsx | 2 +- .../src/components/Header.jsx | 4 +- .../CarlosUlisesOchoa/src/components/Tabs.jsx | 8 ++-- .../CarlosUlisesOchoa/src/styles/index.css | 2 +- 9 files changed, 59 insertions(+), 27 deletions(-) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.css b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.css index f1d64c645..9721e35e2 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.css +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.css @@ -1,9 +1,10 @@ :root { --dark-color: #111; + --light-color: #f0f5ff; --aspect-ratio: 9/14; } .book { - background-color: var(--dark-color); + background-color: var(--light-color); } .book { animation: fadein 0.3s linear forwards; @@ -16,9 +17,21 @@ .book__cover:hover .book__options { opacity: 1; } - .book__cover:hover .book__cover-img { - opacity: 0.25; - filter: blur(2px); + .book__cover::before { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 255, 0); + transition: background-color 0.3s ease-in-out; + } + + .book__cover:hover::before { + background-color: rgba(20, 33, 45, 0.5); + backdrop-filter: blur(2px); + transition: background-color 0.3s ease-in-out; } } @@ -40,6 +53,7 @@ transition: opacity 0.2s ease-in-out; } .book__options-button--add-to-reading-list { + color: white; position: absolute; top: 0; right: 0; @@ -55,13 +69,15 @@ .book__options-icon--add-to-reading-list { width: 24px; height: 24px; - fill: #fff; + fill: #000; margin-bottom: 1.25rem; transition: fill 0.2s ease-in-out; } .book__options-text--add-to-reading-list { text-transform: uppercase; font-size: 0.75rem; + font-weight: 400; + color: white; } .book__details { font-size: 0.75rem; @@ -90,10 +106,6 @@ margin-bottom: 0.5rem; } -/* .book__details-genre { - -} */ - .book__details-pages { font-style: italic; } @@ -119,6 +131,24 @@ } } */ +@media (prefers-color-scheme: dark) { + .book { + background-color: var(--dark-color); + } + .book__options-icon--add-to-reading-list { + fill: #fff; + } + .book__options-text--add-to-reading-list, + .book__options-button--add-to-reading-list { + color: #fff; + } + @media (hover: hover) { + .book__cover:hover::before { + background-color: rgba(0, 0, 0, 0.75); + } + } +} + @keyframes fadein { 0% { opacity: 0; diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx index 08051a6ca..8134c64d4 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/Book/Book.jsx @@ -51,9 +51,11 @@ const Book = ({
      -

      {data.title}

      -

      {data.author.name}

      -
      +

      + {data.title} +

      +

      {data.author.name}

      +
      {data.genre} {data.pages} pág.
      diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/BooksFilters.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/BooksFilters.jsx index 00cc06eee..38a01bd18 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/BooksFilters.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/BooksFilters.jsx @@ -30,15 +30,15 @@ export function BooksFilters({ label='Filtrar por género:' options={genres} defaultValue='todos' - className='text-white font-medium text-sm mb-4 sm:mb-4x' + className='font-medium text-sm mb-4' onChange={onGenreChange} />
      - + {qty && `Máximo: ${qty} páginas`} diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/SearchBar.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/SearchBar.jsx index 865773375..bc1726341 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/SearchBar.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/SearchBar.jsx @@ -12,7 +12,7 @@ export function SearchBar({ onSubmit, onChange, placeholder, className = '' }) { name={id} id={id} placeholder={placeholder} - className={`text-white w-full pr-12 ${className} bg-zinc-800 py-2 px-3 rounded-md text-white transition-colors duration-150 hover:bg-zinc-700`} + className={`text-inherit dark:text-inherit w-full pr-12 bg-[#f0f5ff] dark:bg-zinc-800 py-2 px-3 rounded-md transition-colors duration-150 ${className}`} onChange={onChange} /> @@ -20,7 +20,7 @@ export function SearchBar({ onSubmit, onChange, placeholder, className = '' }) { type='button' className='block absolute right-0 mr-3' aria-label='Buscar libro por título'> - + ) diff --git a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/Select.jsx b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/Select.jsx index f9dc18dc6..c08f59dc6 100644 --- a/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/Select.jsx +++ b/pruebas/01-reading-list/CarlosUlisesOchoa/src/components/BooksFilters/Select.jsx @@ -15,7 +15,7 @@ export function Select({ label, options, defaultValue, className = '', onChange name={id} id={id} defaultValue={defaultValue} - className='w-full bg-zinc-800 py-2 px-3 rounded-md text-white transition-colors duration-150 hover:bg-zinc-700' + className='w-full bg-[#f0f5ff] dark:bg-zinc-800 text-inherit dark:text-inherit py-2 px-3 rounded-md' onChange={onChange}> {options.map((opt, i) => (