├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── README.md ├── index.html ├── package.json ├── pnpm-lock.yaml ├── src ├── App.tsx ├── favicon.svg ├── index.css ├── main.tsx └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | insert_final_newline = true 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | trim_trailing_whitespace = true 9 | max_line_length = 80 10 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | .idea/ 4 | .next/ 5 | .vscode/ 6 | build/ 7 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "browser": false, 4 | "es2021": true, 5 | "node": true 6 | }, 7 | "extends": [ 8 | "plugin:react/recommended", 9 | "plugin:prettier/recommended", 10 | "plugin:react-hooks/recommended" 11 | ], 12 | "plugins": ["react", "prettier", "import", "@typescript-eslint"], 13 | "parser": "@typescript-eslint/parser", 14 | "parserOptions": { 15 | "ecmaFeatures": { 16 | "jsx": true 17 | }, 18 | "ecmaVersion": 12, 19 | "sourceType": "module" 20 | }, 21 | "settings": { 22 | "react": { 23 | "version": "detect" 24 | } 25 | }, 26 | "rules": { 27 | "no-console": "warn", 28 | "react/prop-types": "off", 29 | "react/jsx-uses-react": "off", 30 | "react/react-in-jsx-scope": "off", 31 | "prettier/prettier": [ 32 | "warn", 33 | { 34 | "printWidth": 100, 35 | "trailingComma": "all", 36 | "tabWidth": 2, 37 | "semi": true, 38 | "singleQuote": false, 39 | "bracketSpacing": false, 40 | "arrowParens": "always", 41 | "endOfLine":"auto" 42 | } 43 | ], 44 | "@typescript-eslint/no-unused-vars": [ 45 | "warn", 46 | { 47 | "args": "after-used", 48 | "ignoreRestSiblings": false, 49 | "argsIgnorePattern": "^_.*?$" 50 | } 51 | ], 52 | "import/order": ["warn", { 53 | "groups": ["type", "builtin", "object", "external", "internal", "parent", "sibling", "index"], 54 | "pathGroups": [{ 55 | "pattern": "~/**", 56 | "group": "external", 57 | "position": "after" 58 | }], 59 | "newlines-between": "always" 60 | }], 61 | "react/self-closing-comp": "warn", 62 | "react/jsx-sort-props": [ 63 | "warn", 64 | { 65 | "callbacksLast": true, 66 | "shorthandFirst": true, 67 | "noSortAlphabetically": false, 68 | "reservedFirst": true 69 | } 70 | ], 71 | "padding-line-between-statements": [ 72 | "warn", 73 | {"blankLine": "always", "prev": "*", "next": "return"}, 74 | {"blankLine": "always", "prev": ["const", "let", "var"], "next": "*"}, 75 | {"blankLine": "any", "prev": ["const", "let", "var"], "next": ["const", "let", "var"]} 76 | ] 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Práctica de arreglos 2 | Este es el repositorio de acompañamiento de [este stream](https://www.youtube.com/watch?v=kX1HKn9yk0g). Si querés saber más sobre arreglos podes visitar la MDN en su [artículo de primeros pasos](https://developer.mozilla.org/es/docs/Learn/JavaScript/First_steps/Arrays) 3 | 4 | ### Instrucciones para correr la aplicación 5 | Podés correr la app desde codesandbox sin necesidad de instalar nada entrando a [este link](https://codesandbox.io/s/github/goncy/array-methods) 6 | 7 | Si querés correr este repositorio localmente podes clonarlo y luego correr: 8 | ```bash 9 | npm install 10 | npm run dev 11 | ``` 12 | 13 | ### Tareas 14 | Implementá todos los métodos que tengan un `@TODO` 15 | 16 | ## Intro a arreglos 17 | 18 | Los arreglo sirven para almacenar listas. 19 | ```js 20 | const articulos = ['cámara', 'celular', 'reloj'] 21 | ``` 22 | 23 | Esas listas pueden almacenar cualquier tipo de dato y no todos los elementos tienen por que ser del mismo tipo. 24 | ```js 25 | const articulosMezclados = ['cámara', 2, 'reloj'] 26 | ``` 27 | 28 | Cualquier tipo, incluyendo otros arreglos. 29 | ```js 30 | const articulosSuperMezclados = ['cámara', 2, 'reloj', [], ['por', 'que', '?']] 31 | ``` 32 | 33 | Podemos acceder a sus elementos por índice, los arreglos inician desde el índice 0. 34 | ```js 35 | const arregloDeNumeros = ['cero', 'uno', 'dos'] 36 | 37 | arregloDeNumeros[1] // => 'uno' 38 | ``` 39 | 40 | Podemos modificar los elementos por índice también 41 | ```js 42 | arregloDeNumeros[1] = 'one' 43 | 44 | arregloDeNumeros // => [ 'cero', 'one', 'dos' ] 45 | ``` 46 | 47 | Los arreglos poseen numerosas propiedades y métodos que podemos usar para interactuar con ellos. 48 | 49 | ```js 50 | const arregloDeNumeros = ['cero', 'uno', 'dos'] 51 | 52 | arregloDeNumeros.length // 3 53 | arregloDeNumeros.forEach(num => console.log(`número: ${num}`)) 54 | 55 | // 'número: cero' 56 | // 'número: uno' 57 | // 'número: dos' 58 | ``` 59 | 60 | Algunos de estos métodos suelen usarse para modificar u obtener copias del arreglo, los métodos que modifican el arreglo original se los llaman métodos mutables. 61 | 62 | ```js 63 | const arregloMutable = [1, 2, 3] 64 | 65 | // Agregar un elemento al final 66 | arregloMutable.push(4) 67 | 68 | // Eliminar el primer elemento 69 | arregloMutable.shift() 70 | 71 | arregloMutable // [2, 3, 4] 72 | ``` 73 | 74 | Los métodos que devuelven una copia modificada sin modificar el arreglo original, se los llama métodos inmutables. 75 | 76 | ```js 77 | const arregloInmutable = [1, 2, 3] 78 | 79 | // Agregar un elemento al final 80 | const arregloConcatenado = arregloInmutable.concat(4) 81 | 82 | // Eliminar el primer elemento 83 | const arregloCortado = arregloInmutable.slice(1) 84 | 85 | arregloInmutable // [1, 2, 3] 86 | arregloConcatenado // [1, 2, 3, 4] 87 | arregloCortado // [2, 3] 88 | ``` 89 | 90 | El método `map` crea un nuevo arreglo con los resultados de llamar a una función, aplicada a cada uno de sus elementos. 91 | ```js 92 | const arregloInmutable = [1, 2, 3] 93 | 94 | // Multiplicar los números por 2 95 | const arregloMultiplicado = arregloInmutable.map(numero => numero * 2) 96 | 97 | arregloInmutable // [1, 2, 3] 98 | arregloMultiplicado // [2, 4, 6] 99 | ``` 100 | 101 | El método `filter` crea un nuevo arreglo con los que cumplan una condición dada. 102 | ```js 103 | const arregloInmutable = [1, 2, 3] 104 | 105 | // Filtrar solo los elementos pares 106 | const arregloPar = arregloInmutable.filter(numero => numero % 2 === 0) 107 | 108 | arregloInmutable // [1, 2, 3] 109 | arregloPar // [2] 110 | ``` 111 | 112 | El método `reduce` ejecuta una función reductora sobre cada elemento, devolviendo como resultado un único valor. Por lo que podríamos no solo filtrar o modificar los valores, sino que podríamos hacer ambos al mismo tiempo. 113 | ```js 114 | const arregloInmutable = [1, 2, 3] 115 | 116 | // Filtrar solo los elementos pares 117 | const arregloImparMultiplicado = arregloInmutable.reduce( 118 | (numeros, numero) => numero % 2 !== 0 ? numeros.concat(numero * 2) : numeros, 119 | [] 120 | ) 121 | 122 | arregloInmutable // [1, 2, 3] 123 | arregloImparMultiplicado // [2, 6] 124 | ``` 125 | 126 | También hay métodos de arreglos que no devuelven un arreglo. Métodos como `some` o `every` verifican una condición a cumplir en los elementos del arreglo. 127 | ```js 128 | const arregloInmutable = [1, 2, 3] 129 | 130 | // Multiplicar los números por 2 131 | const hayPares = arregloInmutable.some(numero => numero % 2 === 0) 132 | const sonTodosPares = arregloInmutable.every(numero => numero % 2 === 0) 133 | 134 | arregloInmutable // [1, 2, 3] 135 | hayPares // true 136 | sonTodosPares // false 137 | ``` 138 | 139 | La decisión de que métodos usar está en cada uno y en las necesidades que tengamos a la hora de manipular nuestros datos. En este ejercicio vamos a estar haciendo cambios a una aplicación React, donde se aconseja no debemos mutar los estados ya que esto puede interferir con el resultado esperado, por ende vamos a centrarnos en algunos de los métodos inmutables como .concat, .filter, .map, .reduce o .some. 140 | 141 | --- 142 | Si te gusta mi contenido, seguime en [Twitter](https://twitter.gonzalopozzo.com), [Twitch](https://twitch.gonzalopozzo.com), [YouTube](https://youtube.gonzalopozzo.com), convertite en [GitHub sponsor](https://github.com/sponsors/goncy), votame para [Github Star](https://stars.github.com/) o doname un [Cafecito](https://cafecito.gonzalopozzo.com) ✨ 143 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Vite App 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "array-methods", 3 | "private": true, 4 | "version": "0.0.0", 5 | "scripts": { 6 | "dev": "vite", 7 | "build": "tsc && vite build", 8 | "preview": "vite preview" 9 | }, 10 | "dependencies": { 11 | "react": "^18.2.0", 12 | "react-dom": "^18.2.0", 13 | "sass": "^1.57.1" 14 | }, 15 | "devDependencies": { 16 | "@types/react": "^18.0.26", 17 | "@types/react-dom": "^18.0.10", 18 | "@typescript-eslint/eslint-plugin": "^5.10.1", 19 | "@typescript-eslint/parser": "^5.12.0", 20 | "@vitejs/plugin-react": "^3.0.1", 21 | "eslint": "^7.32.0", 22 | "eslint-config-prettier": "^8.3.0", 23 | "eslint-config-standard": "^16.0.3", 24 | "eslint-plugin-import": "^2.25.4", 25 | "eslint-plugin-node": "^11.1.0", 26 | "eslint-plugin-prettier": "^4.0.0", 27 | "eslint-plugin-promise": "^6.0.0", 28 | "eslint-plugin-react": "^7.28.0", 29 | "eslint-plugin-react-hooks": "^4.3.0", 30 | "prettier": "^2.5.1", 31 | "typescript": "^4.9.4", 32 | "vite": "^4.0.4" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: 5.4 2 | 3 | specifiers: 4 | '@types/react': ^18.0.26 5 | '@types/react-dom': ^18.0.10 6 | '@typescript-eslint/eslint-plugin': ^5.10.1 7 | '@typescript-eslint/parser': ^5.12.0 8 | '@vitejs/plugin-react': ^3.0.1 9 | eslint: ^7.32.0 10 | eslint-config-prettier: ^8.3.0 11 | eslint-config-standard: ^16.0.3 12 | eslint-plugin-import: ^2.25.4 13 | eslint-plugin-node: ^11.1.0 14 | eslint-plugin-prettier: ^4.0.0 15 | eslint-plugin-promise: ^6.0.0 16 | eslint-plugin-react: ^7.28.0 17 | eslint-plugin-react-hooks: ^4.3.0 18 | prettier: ^2.5.1 19 | react: ^18.2.0 20 | react-dom: ^18.2.0 21 | sass: ^1.57.1 22 | typescript: ^4.9.4 23 | vite: ^4.0.4 24 | 25 | dependencies: 26 | react: 18.2.0 27 | react-dom: 18.2.0_react@18.2.0 28 | sass: 1.57.1 29 | 30 | devDependencies: 31 | '@types/react': 18.0.26 32 | '@types/react-dom': 18.0.10 33 | '@typescript-eslint/eslint-plugin': 5.48.0_ok4yz3nlxocs25pqomcnr7cmcu 34 | '@typescript-eslint/parser': 5.48.0_yfqovispp7u7jaktymfaqwl2py 35 | '@vitejs/plugin-react': 3.0.1_vite@4.0.4 36 | eslint: 7.32.0 37 | eslint-config-prettier: 8.6.0_eslint@7.32.0 38 | eslint-config-standard: 16.0.3_extivlscaxggrf2qi4gkfidvzu 39 | eslint-plugin-import: 2.26.0_lda5jobv6qo6flq5igwnr35p5e 40 | eslint-plugin-node: 11.1.0_eslint@7.32.0 41 | eslint-plugin-prettier: 4.2.1_tj36hxcnuvbqp5dqyydrzacu4m 42 | eslint-plugin-promise: 6.1.1_eslint@7.32.0 43 | eslint-plugin-react: 7.31.11_eslint@7.32.0 44 | eslint-plugin-react-hooks: 4.6.0_eslint@7.32.0 45 | prettier: 2.8.1 46 | typescript: 4.9.4 47 | vite: 4.0.4_sass@1.57.1 48 | 49 | packages: 50 | 51 | /@ampproject/remapping/2.2.0: 52 | resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==} 53 | engines: {node: '>=6.0.0'} 54 | dependencies: 55 | '@jridgewell/gen-mapping': 0.1.1 56 | '@jridgewell/trace-mapping': 0.3.17 57 | dev: true 58 | 59 | /@babel/code-frame/7.12.11: 60 | resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} 61 | dependencies: 62 | '@babel/highlight': 7.18.6 63 | dev: true 64 | 65 | /@babel/code-frame/7.18.6: 66 | resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} 67 | engines: {node: '>=6.9.0'} 68 | dependencies: 69 | '@babel/highlight': 7.18.6 70 | dev: true 71 | 72 | /@babel/compat-data/7.20.10: 73 | resolution: {integrity: sha512-sEnuDPpOJR/fcafHMjpcpGN5M2jbUGUHwmuWKM/YdPzeEDJg8bgmbcWQFUfE32MQjti1koACvoPVsDe8Uq+idg==} 74 | engines: {node: '>=6.9.0'} 75 | dev: true 76 | 77 | /@babel/core/7.20.12: 78 | resolution: {integrity: sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==} 79 | engines: {node: '>=6.9.0'} 80 | dependencies: 81 | '@ampproject/remapping': 2.2.0 82 | '@babel/code-frame': 7.18.6 83 | '@babel/generator': 7.20.7 84 | '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 85 | '@babel/helper-module-transforms': 7.20.11 86 | '@babel/helpers': 7.20.7 87 | '@babel/parser': 7.20.7 88 | '@babel/template': 7.20.7 89 | '@babel/traverse': 7.20.12 90 | '@babel/types': 7.20.7 91 | convert-source-map: 1.9.0 92 | debug: 4.3.4 93 | gensync: 1.0.0-beta.2 94 | json5: 2.2.3 95 | semver: 6.3.0 96 | transitivePeerDependencies: 97 | - supports-color 98 | dev: true 99 | 100 | /@babel/generator/7.20.7: 101 | resolution: {integrity: sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==} 102 | engines: {node: '>=6.9.0'} 103 | dependencies: 104 | '@babel/types': 7.20.7 105 | '@jridgewell/gen-mapping': 0.3.2 106 | jsesc: 2.5.2 107 | dev: true 108 | 109 | /@babel/helper-compilation-targets/7.20.7_@babel+core@7.20.12: 110 | resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} 111 | engines: {node: '>=6.9.0'} 112 | peerDependencies: 113 | '@babel/core': ^7.0.0 114 | dependencies: 115 | '@babel/compat-data': 7.20.10 116 | '@babel/core': 7.20.12 117 | '@babel/helper-validator-option': 7.18.6 118 | browserslist: 4.21.4 119 | lru-cache: 5.1.1 120 | semver: 6.3.0 121 | dev: true 122 | 123 | /@babel/helper-environment-visitor/7.18.9: 124 | resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} 125 | engines: {node: '>=6.9.0'} 126 | dev: true 127 | 128 | /@babel/helper-function-name/7.19.0: 129 | resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==} 130 | engines: {node: '>=6.9.0'} 131 | dependencies: 132 | '@babel/template': 7.20.7 133 | '@babel/types': 7.20.7 134 | dev: true 135 | 136 | /@babel/helper-hoist-variables/7.18.6: 137 | resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} 138 | engines: {node: '>=6.9.0'} 139 | dependencies: 140 | '@babel/types': 7.20.7 141 | dev: true 142 | 143 | /@babel/helper-module-imports/7.18.6: 144 | resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} 145 | engines: {node: '>=6.9.0'} 146 | dependencies: 147 | '@babel/types': 7.20.7 148 | dev: true 149 | 150 | /@babel/helper-module-transforms/7.20.11: 151 | resolution: {integrity: sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==} 152 | engines: {node: '>=6.9.0'} 153 | dependencies: 154 | '@babel/helper-environment-visitor': 7.18.9 155 | '@babel/helper-module-imports': 7.18.6 156 | '@babel/helper-simple-access': 7.20.2 157 | '@babel/helper-split-export-declaration': 7.18.6 158 | '@babel/helper-validator-identifier': 7.19.1 159 | '@babel/template': 7.20.7 160 | '@babel/traverse': 7.20.12 161 | '@babel/types': 7.20.7 162 | transitivePeerDependencies: 163 | - supports-color 164 | dev: true 165 | 166 | /@babel/helper-plugin-utils/7.20.2: 167 | resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==} 168 | engines: {node: '>=6.9.0'} 169 | dev: true 170 | 171 | /@babel/helper-simple-access/7.20.2: 172 | resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} 173 | engines: {node: '>=6.9.0'} 174 | dependencies: 175 | '@babel/types': 7.20.7 176 | dev: true 177 | 178 | /@babel/helper-split-export-declaration/7.18.6: 179 | resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} 180 | engines: {node: '>=6.9.0'} 181 | dependencies: 182 | '@babel/types': 7.20.7 183 | dev: true 184 | 185 | /@babel/helper-string-parser/7.19.4: 186 | resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} 187 | engines: {node: '>=6.9.0'} 188 | dev: true 189 | 190 | /@babel/helper-validator-identifier/7.19.1: 191 | resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} 192 | engines: {node: '>=6.9.0'} 193 | dev: true 194 | 195 | /@babel/helper-validator-option/7.18.6: 196 | resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==} 197 | engines: {node: '>=6.9.0'} 198 | dev: true 199 | 200 | /@babel/helpers/7.20.7: 201 | resolution: {integrity: sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==} 202 | engines: {node: '>=6.9.0'} 203 | dependencies: 204 | '@babel/template': 7.20.7 205 | '@babel/traverse': 7.20.12 206 | '@babel/types': 7.20.7 207 | transitivePeerDependencies: 208 | - supports-color 209 | dev: true 210 | 211 | /@babel/highlight/7.18.6: 212 | resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} 213 | engines: {node: '>=6.9.0'} 214 | dependencies: 215 | '@babel/helper-validator-identifier': 7.19.1 216 | chalk: 2.4.2 217 | js-tokens: 4.0.0 218 | dev: true 219 | 220 | /@babel/parser/7.20.7: 221 | resolution: {integrity: sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg==} 222 | engines: {node: '>=6.0.0'} 223 | hasBin: true 224 | dependencies: 225 | '@babel/types': 7.20.7 226 | dev: true 227 | 228 | /@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.20.12: 229 | resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==} 230 | engines: {node: '>=6.9.0'} 231 | peerDependencies: 232 | '@babel/core': ^7.0.0-0 233 | dependencies: 234 | '@babel/core': 7.20.12 235 | '@babel/helper-plugin-utils': 7.20.2 236 | dev: true 237 | 238 | /@babel/plugin-transform-react-jsx-source/7.19.6_@babel+core@7.20.12: 239 | resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==} 240 | engines: {node: '>=6.9.0'} 241 | peerDependencies: 242 | '@babel/core': ^7.0.0-0 243 | dependencies: 244 | '@babel/core': 7.20.12 245 | '@babel/helper-plugin-utils': 7.20.2 246 | dev: true 247 | 248 | /@babel/template/7.20.7: 249 | resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} 250 | engines: {node: '>=6.9.0'} 251 | dependencies: 252 | '@babel/code-frame': 7.18.6 253 | '@babel/parser': 7.20.7 254 | '@babel/types': 7.20.7 255 | dev: true 256 | 257 | /@babel/traverse/7.20.12: 258 | resolution: {integrity: sha512-MsIbFN0u+raeja38qboyF8TIT7K0BFzz/Yd/77ta4MsUsmP2RAnidIlwq7d5HFQrH/OZJecGV6B71C4zAgpoSQ==} 259 | engines: {node: '>=6.9.0'} 260 | dependencies: 261 | '@babel/code-frame': 7.18.6 262 | '@babel/generator': 7.20.7 263 | '@babel/helper-environment-visitor': 7.18.9 264 | '@babel/helper-function-name': 7.19.0 265 | '@babel/helper-hoist-variables': 7.18.6 266 | '@babel/helper-split-export-declaration': 7.18.6 267 | '@babel/parser': 7.20.7 268 | '@babel/types': 7.20.7 269 | debug: 4.3.4 270 | globals: 11.12.0 271 | transitivePeerDependencies: 272 | - supports-color 273 | dev: true 274 | 275 | /@babel/types/7.20.7: 276 | resolution: {integrity: sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==} 277 | engines: {node: '>=6.9.0'} 278 | dependencies: 279 | '@babel/helper-string-parser': 7.19.4 280 | '@babel/helper-validator-identifier': 7.19.1 281 | to-fast-properties: 2.0.0 282 | dev: true 283 | 284 | /@esbuild/android-arm/0.16.14: 285 | resolution: {integrity: sha512-u0rITLxFIeYAvtJXBQNhNuV4YZe+MD1YvIWT7Nicj8hZAtRVZk2PgNH6KclcKDVHz1ChLKXRfX7d7tkbQBUfrg==} 286 | engines: {node: '>=12'} 287 | cpu: [arm] 288 | os: [android] 289 | requiresBuild: true 290 | dev: true 291 | optional: true 292 | 293 | /@esbuild/android-arm64/0.16.14: 294 | resolution: {integrity: sha512-hTqB6Iq13pW4xaydeqQrs8vPntUnMjbkq+PgGiBMi69eYk74naG2ftHWqKnxn874kNrt5Or3rQ0PJutx2doJuQ==} 295 | engines: {node: '>=12'} 296 | cpu: [arm64] 297 | os: [android] 298 | requiresBuild: true 299 | dev: true 300 | optional: true 301 | 302 | /@esbuild/android-x64/0.16.14: 303 | resolution: {integrity: sha512-jir51K4J0K5Rt0KOcippjSNdOl7akKDVz5I6yrqdk4/m9y+rldGptQUF7qU4YpX8U61LtR+w2Tu2Ph+K/UaJOw==} 304 | engines: {node: '>=12'} 305 | cpu: [x64] 306 | os: [android] 307 | requiresBuild: true 308 | dev: true 309 | optional: true 310 | 311 | /@esbuild/darwin-arm64/0.16.14: 312 | resolution: {integrity: sha512-vrlaP81IuwPaw1fyX8fHCmivP3Gr73ojVEZy+oWJLAiZVcG8o8Phwun/XDnYIFUHxIoUnMFEpg9o38MIvlw8zw==} 313 | engines: {node: '>=12'} 314 | cpu: [arm64] 315 | os: [darwin] 316 | requiresBuild: true 317 | dev: true 318 | optional: true 319 | 320 | /@esbuild/darwin-x64/0.16.14: 321 | resolution: {integrity: sha512-KV1E01eC2hGYA2qzFDRCK4wdZCRUvMwCNcobgpiiOzp5QXpJBqFPdxI69j8vvzuU7oxFXDgANwEkXvpeQqyOyg==} 322 | engines: {node: '>=12'} 323 | cpu: [x64] 324 | os: [darwin] 325 | requiresBuild: true 326 | dev: true 327 | optional: true 328 | 329 | /@esbuild/freebsd-arm64/0.16.14: 330 | resolution: {integrity: sha512-xRM1RQsazSvL42BNa5XC7ytD4ZDp0ZyJcH7aB0SlYUcHexJUKiDNKR7dlRVlpt6W0DvoRPU2nWK/9/QWS4u2fw==} 331 | engines: {node: '>=12'} 332 | cpu: [arm64] 333 | os: [freebsd] 334 | requiresBuild: true 335 | dev: true 336 | optional: true 337 | 338 | /@esbuild/freebsd-x64/0.16.14: 339 | resolution: {integrity: sha512-7ALTAn6YRRf1O6fw9jmn0rWmOx3XfwDo7njGtjy1LXhDGUjTY/vohEPM3ii5MQ411vJv1r498EEx2aBQTJcrEw==} 340 | engines: {node: '>=12'} 341 | cpu: [x64] 342 | os: [freebsd] 343 | requiresBuild: true 344 | dev: true 345 | optional: true 346 | 347 | /@esbuild/linux-arm/0.16.14: 348 | resolution: {integrity: sha512-X6xULug66ulrr4IzrW7qq+eq9n4MtEyagdWvj4o4cmWr+JXOT47atjpDF9j5M2zHY0UQBmqnHhwl+tXpkpIb2w==} 349 | engines: {node: '>=12'} 350 | cpu: [arm] 351 | os: [linux] 352 | requiresBuild: true 353 | dev: true 354 | optional: true 355 | 356 | /@esbuild/linux-arm64/0.16.14: 357 | resolution: {integrity: sha512-TLh2OcbBUQcMYRH4GbiDkDZfZ4t1A3GgmeXY27dHSI6xrU7IkO00MGBiJySmEV6sH3Wa6pAN6UtaVL0DwkGW4Q==} 358 | engines: {node: '>=12'} 359 | cpu: [arm64] 360 | os: [linux] 361 | requiresBuild: true 362 | dev: true 363 | optional: true 364 | 365 | /@esbuild/linux-ia32/0.16.14: 366 | resolution: {integrity: sha512-oBZkcZ56UZDFCAfE3Fd/Jgy10EoS7Td77NzNGenM+HSY8BkdQAcI9VF9qgwdOLZ+tuftWD7UqZ26SAhtvA3XhA==} 367 | engines: {node: '>=12'} 368 | cpu: [ia32] 369 | os: [linux] 370 | requiresBuild: true 371 | dev: true 372 | optional: true 373 | 374 | /@esbuild/linux-loong64/0.16.14: 375 | resolution: {integrity: sha512-udz/aEHTcuHP+xdWOJmZ5C9RQXHfZd/EhCnTi1Hfay37zH3lBxn/fNs85LA9HlsniFw2zccgcbrrTMKk7Cn1Qg==} 376 | engines: {node: '>=12'} 377 | cpu: [loong64] 378 | os: [linux] 379 | requiresBuild: true 380 | dev: true 381 | optional: true 382 | 383 | /@esbuild/linux-mips64el/0.16.14: 384 | resolution: {integrity: sha512-kJ2iEnikUOdC1SiTGbH0fJUgpZwa0ITDTvj9EHf9lm3I0hZ4Yugsb3M6XSl696jVxrEocLe519/8CbSpQWFSrg==} 385 | engines: {node: '>=12'} 386 | cpu: [mips64el] 387 | os: [linux] 388 | requiresBuild: true 389 | dev: true 390 | optional: true 391 | 392 | /@esbuild/linux-ppc64/0.16.14: 393 | resolution: {integrity: sha512-kclKxvZvX5YhykwlJ/K9ljiY4THe5vXubXpWmr7q3Zu3WxKnUe1VOZmhkEZlqtnJx31GHPEV4SIG95IqTdfgfg==} 394 | engines: {node: '>=12'} 395 | cpu: [ppc64] 396 | os: [linux] 397 | requiresBuild: true 398 | dev: true 399 | optional: true 400 | 401 | /@esbuild/linux-riscv64/0.16.14: 402 | resolution: {integrity: sha512-fdwP9Dc+Kx/cZwp9T9kNqjAE/PQjfrxbio4rZ3XnC3cVvZBjuxpkiyu/tuCwt6SbAK5th6AYNjFdEV9kGC020A==} 403 | engines: {node: '>=12'} 404 | cpu: [riscv64] 405 | os: [linux] 406 | requiresBuild: true 407 | dev: true 408 | optional: true 409 | 410 | /@esbuild/linux-s390x/0.16.14: 411 | resolution: {integrity: sha512-++fw3P4fQk9nqvdzbANRqimKspL8pDCnSpXomyhV7V/ISha/BZIYvZwLBWVKp9CVWKwWPJ4ktsezuLIvlJRHqA==} 412 | engines: {node: '>=12'} 413 | cpu: [s390x] 414 | os: [linux] 415 | requiresBuild: true 416 | dev: true 417 | optional: true 418 | 419 | /@esbuild/linux-x64/0.16.14: 420 | resolution: {integrity: sha512-TomtswAuzBf2NnddlrS4W01Tv85RM9YtATB3OugY6On0PLM4Ksz5qvQKVAjtzPKoLgL1FiZtfc8mkZc4IgoMEA==} 421 | engines: {node: '>=12'} 422 | cpu: [x64] 423 | os: [linux] 424 | requiresBuild: true 425 | dev: true 426 | optional: true 427 | 428 | /@esbuild/netbsd-x64/0.16.14: 429 | resolution: {integrity: sha512-U06pfx8P5CqyoPNfqIJmnf+5/r4mJ1S62G4zE6eOjS59naQcxi6GnscUCPH3b+hRG0qdKoGX49RAyiqW+M9aSw==} 430 | engines: {node: '>=12'} 431 | cpu: [x64] 432 | os: [netbsd] 433 | requiresBuild: true 434 | dev: true 435 | optional: true 436 | 437 | /@esbuild/openbsd-x64/0.16.14: 438 | resolution: {integrity: sha512-/Jl8XVaWEZNu9rZw+n792GIBupQwHo6GDoapHSb/2xp/Ku28eK6QpR2O9cPBkzHH4OOoMH0LB6zg/qczJ5TTGg==} 439 | engines: {node: '>=12'} 440 | cpu: [x64] 441 | os: [openbsd] 442 | requiresBuild: true 443 | dev: true 444 | optional: true 445 | 446 | /@esbuild/sunos-x64/0.16.14: 447 | resolution: {integrity: sha512-2iI7D34uTbDn/TaSiUbEHz+fUa8KbN90vX5yYqo12QGpu6T8Jl+kxODsWuMCwoTVlqUpwfPV22nBbFPME9OPtw==} 448 | engines: {node: '>=12'} 449 | cpu: [x64] 450 | os: [sunos] 451 | requiresBuild: true 452 | dev: true 453 | optional: true 454 | 455 | /@esbuild/win32-arm64/0.16.14: 456 | resolution: {integrity: sha512-SjlM7AHmQVTiGBJE/nqauY1aDh80UBsXZ94g4g60CDkrDMseatiqALVcIuElg4ZSYzJs8hsg5W6zS2zLpZTVgg==} 457 | engines: {node: '>=12'} 458 | cpu: [arm64] 459 | os: [win32] 460 | requiresBuild: true 461 | dev: true 462 | optional: true 463 | 464 | /@esbuild/win32-ia32/0.16.14: 465 | resolution: {integrity: sha512-z06t5zqk8ak0Xom5HG81z2iOQ1hNWYsFQp3sczVLVx+dctWdgl80tNRyTbwjaFfui2vFO12dfE3trCTvA+HO4g==} 466 | engines: {node: '>=12'} 467 | cpu: [ia32] 468 | os: [win32] 469 | requiresBuild: true 470 | dev: true 471 | optional: true 472 | 473 | /@esbuild/win32-x64/0.16.14: 474 | resolution: {integrity: sha512-ED1UpWcM6lAbalbbQ9TrGqJh4Y9TaASUvu8bI/0mgJcxhSByJ6rbpgqRhxYMaQ682WfA71nxUreaTO7L275zrw==} 475 | engines: {node: '>=12'} 476 | cpu: [x64] 477 | os: [win32] 478 | requiresBuild: true 479 | dev: true 480 | optional: true 481 | 482 | /@eslint/eslintrc/0.4.3: 483 | resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} 484 | engines: {node: ^10.12.0 || >=12.0.0} 485 | dependencies: 486 | ajv: 6.12.6 487 | debug: 4.3.4 488 | espree: 7.3.1 489 | globals: 13.19.0 490 | ignore: 4.0.6 491 | import-fresh: 3.3.0 492 | js-yaml: 3.14.1 493 | minimatch: 3.1.2 494 | strip-json-comments: 3.1.1 495 | transitivePeerDependencies: 496 | - supports-color 497 | dev: true 498 | 499 | /@humanwhocodes/config-array/0.5.0: 500 | resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} 501 | engines: {node: '>=10.10.0'} 502 | dependencies: 503 | '@humanwhocodes/object-schema': 1.2.1 504 | debug: 4.3.4 505 | minimatch: 3.1.2 506 | transitivePeerDependencies: 507 | - supports-color 508 | dev: true 509 | 510 | /@humanwhocodes/object-schema/1.2.1: 511 | resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} 512 | dev: true 513 | 514 | /@jridgewell/gen-mapping/0.1.1: 515 | resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} 516 | engines: {node: '>=6.0.0'} 517 | dependencies: 518 | '@jridgewell/set-array': 1.1.2 519 | '@jridgewell/sourcemap-codec': 1.4.14 520 | dev: true 521 | 522 | /@jridgewell/gen-mapping/0.3.2: 523 | resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==} 524 | engines: {node: '>=6.0.0'} 525 | dependencies: 526 | '@jridgewell/set-array': 1.1.2 527 | '@jridgewell/sourcemap-codec': 1.4.14 528 | '@jridgewell/trace-mapping': 0.3.17 529 | dev: true 530 | 531 | /@jridgewell/resolve-uri/3.1.0: 532 | resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} 533 | engines: {node: '>=6.0.0'} 534 | dev: true 535 | 536 | /@jridgewell/set-array/1.1.2: 537 | resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} 538 | engines: {node: '>=6.0.0'} 539 | dev: true 540 | 541 | /@jridgewell/sourcemap-codec/1.4.14: 542 | resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} 543 | dev: true 544 | 545 | /@jridgewell/trace-mapping/0.3.17: 546 | resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==} 547 | dependencies: 548 | '@jridgewell/resolve-uri': 3.1.0 549 | '@jridgewell/sourcemap-codec': 1.4.14 550 | dev: true 551 | 552 | /@nodelib/fs.scandir/2.1.5: 553 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 554 | engines: {node: '>= 8'} 555 | dependencies: 556 | '@nodelib/fs.stat': 2.0.5 557 | run-parallel: 1.2.0 558 | dev: true 559 | 560 | /@nodelib/fs.stat/2.0.5: 561 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 562 | engines: {node: '>= 8'} 563 | dev: true 564 | 565 | /@nodelib/fs.walk/1.2.8: 566 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 567 | engines: {node: '>= 8'} 568 | dependencies: 569 | '@nodelib/fs.scandir': 2.1.5 570 | fastq: 1.15.0 571 | dev: true 572 | 573 | /@types/json-schema/7.0.11: 574 | resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} 575 | dev: true 576 | 577 | /@types/json5/0.0.29: 578 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 579 | dev: true 580 | 581 | /@types/prop-types/15.7.5: 582 | resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} 583 | dev: true 584 | 585 | /@types/react-dom/18.0.10: 586 | resolution: {integrity: sha512-E42GW/JA4Qv15wQdqJq8DL4JhNpB3prJgjgapN3qJT9K2zO5IIAQh4VXvCEDupoqAwnz0cY4RlXeC/ajX5SFHg==} 587 | dependencies: 588 | '@types/react': 18.0.26 589 | dev: true 590 | 591 | /@types/react/18.0.26: 592 | resolution: {integrity: sha512-hCR3PJQsAIXyxhTNSiDFY//LhnMZWpNNr5etoCqx/iUfGc5gXWtQR2Phl908jVR6uPXacojQWTg4qRpkxTuGug==} 593 | dependencies: 594 | '@types/prop-types': 15.7.5 595 | '@types/scheduler': 0.16.2 596 | csstype: 3.1.1 597 | dev: true 598 | 599 | /@types/scheduler/0.16.2: 600 | resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==} 601 | dev: true 602 | 603 | /@types/semver/7.3.13: 604 | resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==} 605 | dev: true 606 | 607 | /@typescript-eslint/eslint-plugin/5.48.0_ok4yz3nlxocs25pqomcnr7cmcu: 608 | resolution: {integrity: sha512-SVLafp0NXpoJY7ut6VFVUU9I+YeFsDzeQwtK0WZ+xbRN3mtxJ08je+6Oi2N89qDn087COdO0u3blKZNv9VetRQ==} 609 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 610 | peerDependencies: 611 | '@typescript-eslint/parser': ^5.0.0 612 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 613 | typescript: '*' 614 | peerDependenciesMeta: 615 | typescript: 616 | optional: true 617 | dependencies: 618 | '@typescript-eslint/parser': 5.48.0_yfqovispp7u7jaktymfaqwl2py 619 | '@typescript-eslint/scope-manager': 5.48.0 620 | '@typescript-eslint/type-utils': 5.48.0_yfqovispp7u7jaktymfaqwl2py 621 | '@typescript-eslint/utils': 5.48.0_yfqovispp7u7jaktymfaqwl2py 622 | debug: 4.3.4 623 | eslint: 7.32.0 624 | ignore: 5.2.4 625 | natural-compare-lite: 1.4.0 626 | regexpp: 3.2.0 627 | semver: 7.3.8 628 | tsutils: 3.21.0_typescript@4.9.4 629 | typescript: 4.9.4 630 | transitivePeerDependencies: 631 | - supports-color 632 | dev: true 633 | 634 | /@typescript-eslint/parser/5.48.0_yfqovispp7u7jaktymfaqwl2py: 635 | resolution: {integrity: sha512-1mxNA8qfgxX8kBvRDIHEzrRGrKHQfQlbW6iHyfHYS0Q4X1af+S6mkLNtgCOsGVl8+/LUPrqdHMssAemkrQ01qg==} 636 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 637 | peerDependencies: 638 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 639 | typescript: '*' 640 | peerDependenciesMeta: 641 | typescript: 642 | optional: true 643 | dependencies: 644 | '@typescript-eslint/scope-manager': 5.48.0 645 | '@typescript-eslint/types': 5.48.0 646 | '@typescript-eslint/typescript-estree': 5.48.0_typescript@4.9.4 647 | debug: 4.3.4 648 | eslint: 7.32.0 649 | typescript: 4.9.4 650 | transitivePeerDependencies: 651 | - supports-color 652 | dev: true 653 | 654 | /@typescript-eslint/scope-manager/5.48.0: 655 | resolution: {integrity: sha512-0AA4LviDtVtZqlyUQnZMVHydDATpD9SAX/RC5qh6cBd3xmyWvmXYF+WT1oOmxkeMnWDlUVTwdODeucUnjz3gow==} 656 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 657 | dependencies: 658 | '@typescript-eslint/types': 5.48.0 659 | '@typescript-eslint/visitor-keys': 5.48.0 660 | dev: true 661 | 662 | /@typescript-eslint/type-utils/5.48.0_yfqovispp7u7jaktymfaqwl2py: 663 | resolution: {integrity: sha512-vbtPO5sJyFjtHkGlGK4Sthmta0Bbls4Onv0bEqOGm7hP9h8UpRsHJwsrCiWtCUndTRNQO/qe6Ijz9rnT/DB+7g==} 664 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 665 | peerDependencies: 666 | eslint: '*' 667 | typescript: '*' 668 | peerDependenciesMeta: 669 | typescript: 670 | optional: true 671 | dependencies: 672 | '@typescript-eslint/typescript-estree': 5.48.0_typescript@4.9.4 673 | '@typescript-eslint/utils': 5.48.0_yfqovispp7u7jaktymfaqwl2py 674 | debug: 4.3.4 675 | eslint: 7.32.0 676 | tsutils: 3.21.0_typescript@4.9.4 677 | typescript: 4.9.4 678 | transitivePeerDependencies: 679 | - supports-color 680 | dev: true 681 | 682 | /@typescript-eslint/types/5.48.0: 683 | resolution: {integrity: sha512-UTe67B0Ypius0fnEE518NB2N8gGutIlTojeTg4nt0GQvikReVkurqxd2LvYa9q9M5MQ6rtpNyWTBxdscw40Xhw==} 684 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 685 | dev: true 686 | 687 | /@typescript-eslint/typescript-estree/5.48.0_typescript@4.9.4: 688 | resolution: {integrity: sha512-7pjd94vvIjI1zTz6aq/5wwE/YrfIyEPLtGJmRfyNR9NYIW+rOvzzUv3Cmq2hRKpvt6e9vpvPUQ7puzX7VSmsEw==} 689 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 690 | peerDependencies: 691 | typescript: '*' 692 | peerDependenciesMeta: 693 | typescript: 694 | optional: true 695 | dependencies: 696 | '@typescript-eslint/types': 5.48.0 697 | '@typescript-eslint/visitor-keys': 5.48.0 698 | debug: 4.3.4 699 | globby: 11.1.0 700 | is-glob: 4.0.3 701 | semver: 7.3.8 702 | tsutils: 3.21.0_typescript@4.9.4 703 | typescript: 4.9.4 704 | transitivePeerDependencies: 705 | - supports-color 706 | dev: true 707 | 708 | /@typescript-eslint/utils/5.48.0_yfqovispp7u7jaktymfaqwl2py: 709 | resolution: {integrity: sha512-x2jrMcPaMfsHRRIkL+x96++xdzvrdBCnYRd5QiW5Wgo1OB4kDYPbC1XjWP/TNqlfK93K/lUL92erq5zPLgFScQ==} 710 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 711 | peerDependencies: 712 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 713 | dependencies: 714 | '@types/json-schema': 7.0.11 715 | '@types/semver': 7.3.13 716 | '@typescript-eslint/scope-manager': 5.48.0 717 | '@typescript-eslint/types': 5.48.0 718 | '@typescript-eslint/typescript-estree': 5.48.0_typescript@4.9.4 719 | eslint: 7.32.0 720 | eslint-scope: 5.1.1 721 | eslint-utils: 3.0.0_eslint@7.32.0 722 | semver: 7.3.8 723 | transitivePeerDependencies: 724 | - supports-color 725 | - typescript 726 | dev: true 727 | 728 | /@typescript-eslint/visitor-keys/5.48.0: 729 | resolution: {integrity: sha512-5motVPz5EgxQ0bHjut3chzBkJ3Z3sheYVcSwS5BpHZpLqSptSmELNtGixmgj65+rIfhvtQTz5i9OP2vtzdDH7Q==} 730 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 731 | dependencies: 732 | '@typescript-eslint/types': 5.48.0 733 | eslint-visitor-keys: 3.3.0 734 | dev: true 735 | 736 | /@vitejs/plugin-react/3.0.1_vite@4.0.4: 737 | resolution: {integrity: sha512-mx+QvYwIbbpOIJw+hypjnW1lAbKDHtWK5ibkF/V1/oMBu8HU/chb+SnqJDAsLq1+7rGqjktCEomMTM5KShzUKQ==} 738 | engines: {node: ^14.18.0 || >=16.0.0} 739 | peerDependencies: 740 | vite: ^4.0.0 741 | dependencies: 742 | '@babel/core': 7.20.12 743 | '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.20.12 744 | '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.20.12 745 | magic-string: 0.27.0 746 | react-refresh: 0.14.0 747 | vite: 4.0.4_sass@1.57.1 748 | transitivePeerDependencies: 749 | - supports-color 750 | dev: true 751 | 752 | /acorn-jsx/5.3.2_acorn@7.4.1: 753 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 754 | peerDependencies: 755 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 756 | dependencies: 757 | acorn: 7.4.1 758 | dev: true 759 | 760 | /acorn/7.4.1: 761 | resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} 762 | engines: {node: '>=0.4.0'} 763 | hasBin: true 764 | dev: true 765 | 766 | /ajv/6.12.6: 767 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 768 | dependencies: 769 | fast-deep-equal: 3.1.3 770 | fast-json-stable-stringify: 2.1.0 771 | json-schema-traverse: 0.4.1 772 | uri-js: 4.4.1 773 | dev: true 774 | 775 | /ajv/8.12.0: 776 | resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} 777 | dependencies: 778 | fast-deep-equal: 3.1.3 779 | json-schema-traverse: 1.0.0 780 | require-from-string: 2.0.2 781 | uri-js: 4.4.1 782 | dev: true 783 | 784 | /ansi-colors/4.1.3: 785 | resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} 786 | engines: {node: '>=6'} 787 | dev: true 788 | 789 | /ansi-regex/5.0.1: 790 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 791 | engines: {node: '>=8'} 792 | dev: true 793 | 794 | /ansi-styles/3.2.1: 795 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} 796 | engines: {node: '>=4'} 797 | dependencies: 798 | color-convert: 1.9.3 799 | dev: true 800 | 801 | /ansi-styles/4.3.0: 802 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 803 | engines: {node: '>=8'} 804 | dependencies: 805 | color-convert: 2.0.1 806 | dev: true 807 | 808 | /anymatch/3.1.3: 809 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 810 | engines: {node: '>= 8'} 811 | dependencies: 812 | normalize-path: 3.0.0 813 | picomatch: 2.3.1 814 | 815 | /argparse/1.0.10: 816 | resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} 817 | dependencies: 818 | sprintf-js: 1.0.3 819 | dev: true 820 | 821 | /array-includes/3.1.6: 822 | resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==} 823 | engines: {node: '>= 0.4'} 824 | dependencies: 825 | call-bind: 1.0.2 826 | define-properties: 1.1.4 827 | es-abstract: 1.21.0 828 | get-intrinsic: 1.1.3 829 | is-string: 1.0.7 830 | dev: true 831 | 832 | /array-union/2.1.0: 833 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 834 | engines: {node: '>=8'} 835 | dev: true 836 | 837 | /array.prototype.flat/1.3.1: 838 | resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} 839 | engines: {node: '>= 0.4'} 840 | dependencies: 841 | call-bind: 1.0.2 842 | define-properties: 1.1.4 843 | es-abstract: 1.21.0 844 | es-shim-unscopables: 1.0.0 845 | dev: true 846 | 847 | /array.prototype.flatmap/1.3.1: 848 | resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==} 849 | engines: {node: '>= 0.4'} 850 | dependencies: 851 | call-bind: 1.0.2 852 | define-properties: 1.1.4 853 | es-abstract: 1.21.0 854 | es-shim-unscopables: 1.0.0 855 | dev: true 856 | 857 | /array.prototype.tosorted/1.1.1: 858 | resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==} 859 | dependencies: 860 | call-bind: 1.0.2 861 | define-properties: 1.1.4 862 | es-abstract: 1.21.0 863 | es-shim-unscopables: 1.0.0 864 | get-intrinsic: 1.1.3 865 | dev: true 866 | 867 | /astral-regex/2.0.0: 868 | resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} 869 | engines: {node: '>=8'} 870 | dev: true 871 | 872 | /available-typed-arrays/1.0.5: 873 | resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} 874 | engines: {node: '>= 0.4'} 875 | dev: true 876 | 877 | /balanced-match/1.0.2: 878 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 879 | dev: true 880 | 881 | /binary-extensions/2.2.0: 882 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} 883 | engines: {node: '>=8'} 884 | 885 | /brace-expansion/1.1.11: 886 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 887 | dependencies: 888 | balanced-match: 1.0.2 889 | concat-map: 0.0.1 890 | dev: true 891 | 892 | /braces/3.0.2: 893 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 894 | engines: {node: '>=8'} 895 | dependencies: 896 | fill-range: 7.0.1 897 | 898 | /browserslist/4.21.4: 899 | resolution: {integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==} 900 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 901 | hasBin: true 902 | dependencies: 903 | caniuse-lite: 1.0.30001442 904 | electron-to-chromium: 1.4.284 905 | node-releases: 2.0.8 906 | update-browserslist-db: 1.0.10_browserslist@4.21.4 907 | dev: true 908 | 909 | /call-bind/1.0.2: 910 | resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} 911 | dependencies: 912 | function-bind: 1.1.1 913 | get-intrinsic: 1.1.3 914 | dev: true 915 | 916 | /callsites/3.1.0: 917 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 918 | engines: {node: '>=6'} 919 | dev: true 920 | 921 | /caniuse-lite/1.0.30001442: 922 | resolution: {integrity: sha512-239m03Pqy0hwxYPYR5JwOIxRJfLTWtle9FV8zosfV5pHg+/51uD4nxcUlM8+mWWGfwKtt8lJNHnD3cWw9VZ6ow==} 923 | dev: true 924 | 925 | /chalk/2.4.2: 926 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} 927 | engines: {node: '>=4'} 928 | dependencies: 929 | ansi-styles: 3.2.1 930 | escape-string-regexp: 1.0.5 931 | supports-color: 5.5.0 932 | dev: true 933 | 934 | /chalk/4.1.2: 935 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 936 | engines: {node: '>=10'} 937 | dependencies: 938 | ansi-styles: 4.3.0 939 | supports-color: 7.2.0 940 | dev: true 941 | 942 | /chokidar/3.5.3: 943 | resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} 944 | engines: {node: '>= 8.10.0'} 945 | dependencies: 946 | anymatch: 3.1.3 947 | braces: 3.0.2 948 | glob-parent: 5.1.2 949 | is-binary-path: 2.1.0 950 | is-glob: 4.0.3 951 | normalize-path: 3.0.0 952 | readdirp: 3.6.0 953 | optionalDependencies: 954 | fsevents: 2.3.2 955 | 956 | /color-convert/1.9.3: 957 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 958 | dependencies: 959 | color-name: 1.1.3 960 | dev: true 961 | 962 | /color-convert/2.0.1: 963 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 964 | engines: {node: '>=7.0.0'} 965 | dependencies: 966 | color-name: 1.1.4 967 | dev: true 968 | 969 | /color-name/1.1.3: 970 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} 971 | dev: true 972 | 973 | /color-name/1.1.4: 974 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 975 | dev: true 976 | 977 | /concat-map/0.0.1: 978 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 979 | dev: true 980 | 981 | /convert-source-map/1.9.0: 982 | resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} 983 | dev: true 984 | 985 | /cross-spawn/7.0.3: 986 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 987 | engines: {node: '>= 8'} 988 | dependencies: 989 | path-key: 3.1.1 990 | shebang-command: 2.0.0 991 | which: 2.0.2 992 | dev: true 993 | 994 | /csstype/3.1.1: 995 | resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==} 996 | dev: true 997 | 998 | /debug/2.6.9: 999 | resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} 1000 | peerDependencies: 1001 | supports-color: '*' 1002 | peerDependenciesMeta: 1003 | supports-color: 1004 | optional: true 1005 | dependencies: 1006 | ms: 2.0.0 1007 | dev: true 1008 | 1009 | /debug/3.2.7: 1010 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 1011 | peerDependencies: 1012 | supports-color: '*' 1013 | peerDependenciesMeta: 1014 | supports-color: 1015 | optional: true 1016 | dependencies: 1017 | ms: 2.1.3 1018 | dev: true 1019 | 1020 | /debug/4.3.4: 1021 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 1022 | engines: {node: '>=6.0'} 1023 | peerDependencies: 1024 | supports-color: '*' 1025 | peerDependenciesMeta: 1026 | supports-color: 1027 | optional: true 1028 | dependencies: 1029 | ms: 2.1.2 1030 | dev: true 1031 | 1032 | /deep-is/0.1.4: 1033 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 1034 | dev: true 1035 | 1036 | /define-properties/1.1.4: 1037 | resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==} 1038 | engines: {node: '>= 0.4'} 1039 | dependencies: 1040 | has-property-descriptors: 1.0.0 1041 | object-keys: 1.1.1 1042 | dev: true 1043 | 1044 | /dir-glob/3.0.1: 1045 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 1046 | engines: {node: '>=8'} 1047 | dependencies: 1048 | path-type: 4.0.0 1049 | dev: true 1050 | 1051 | /doctrine/2.1.0: 1052 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 1053 | engines: {node: '>=0.10.0'} 1054 | dependencies: 1055 | esutils: 2.0.3 1056 | dev: true 1057 | 1058 | /doctrine/3.0.0: 1059 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 1060 | engines: {node: '>=6.0.0'} 1061 | dependencies: 1062 | esutils: 2.0.3 1063 | dev: true 1064 | 1065 | /electron-to-chromium/1.4.284: 1066 | resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==} 1067 | dev: true 1068 | 1069 | /emoji-regex/8.0.0: 1070 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 1071 | dev: true 1072 | 1073 | /enquirer/2.3.6: 1074 | resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} 1075 | engines: {node: '>=8.6'} 1076 | dependencies: 1077 | ansi-colors: 4.1.3 1078 | dev: true 1079 | 1080 | /es-abstract/1.21.0: 1081 | resolution: {integrity: sha512-GUGtW7eXQay0c+PRq0sGIKSdaBorfVqsCMhGHo4elP7YVqZu9nCZS4UkK4gv71gOWNMra/PaSKD3ao1oWExO0g==} 1082 | engines: {node: '>= 0.4'} 1083 | dependencies: 1084 | call-bind: 1.0.2 1085 | es-set-tostringtag: 2.0.0 1086 | es-to-primitive: 1.2.1 1087 | function-bind: 1.1.1 1088 | function.prototype.name: 1.1.5 1089 | get-intrinsic: 1.1.3 1090 | get-symbol-description: 1.0.0 1091 | globalthis: 1.0.3 1092 | gopd: 1.0.1 1093 | has: 1.0.3 1094 | has-property-descriptors: 1.0.0 1095 | has-proto: 1.0.1 1096 | has-symbols: 1.0.3 1097 | internal-slot: 1.0.4 1098 | is-array-buffer: 3.0.0 1099 | is-callable: 1.2.7 1100 | is-negative-zero: 2.0.2 1101 | is-regex: 1.1.4 1102 | is-shared-array-buffer: 1.0.2 1103 | is-string: 1.0.7 1104 | is-typed-array: 1.1.10 1105 | is-weakref: 1.0.2 1106 | object-inspect: 1.12.2 1107 | object-keys: 1.1.1 1108 | object.assign: 4.1.4 1109 | regexp.prototype.flags: 1.4.3 1110 | safe-regex-test: 1.0.0 1111 | string.prototype.trimend: 1.0.6 1112 | string.prototype.trimstart: 1.0.6 1113 | typed-array-length: 1.0.4 1114 | unbox-primitive: 1.0.2 1115 | which-typed-array: 1.1.9 1116 | dev: true 1117 | 1118 | /es-set-tostringtag/2.0.0: 1119 | resolution: {integrity: sha512-vZVAIWss0FcR/+a08s6e2/GjGjjYBCZJXDrOnj6l5kJCKhQvJs4cnVqUxkVepIhqHbKHm3uwOvPb8lRcqA3DSg==} 1120 | engines: {node: '>= 0.4'} 1121 | dependencies: 1122 | get-intrinsic: 1.1.3 1123 | has-tostringtag: 1.0.0 1124 | dev: true 1125 | 1126 | /es-shim-unscopables/1.0.0: 1127 | resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} 1128 | dependencies: 1129 | has: 1.0.3 1130 | dev: true 1131 | 1132 | /es-to-primitive/1.2.1: 1133 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 1134 | engines: {node: '>= 0.4'} 1135 | dependencies: 1136 | is-callable: 1.2.7 1137 | is-date-object: 1.0.5 1138 | is-symbol: 1.0.4 1139 | dev: true 1140 | 1141 | /esbuild/0.16.14: 1142 | resolution: {integrity: sha512-6xAn3O6ZZyoxZAEkwfI9hw4cEqSr/o1ViJtnkvImVkblmUN65Md04o0S/7H1WNu1XGf1Cjij/on7VO4psIYjkw==} 1143 | engines: {node: '>=12'} 1144 | hasBin: true 1145 | requiresBuild: true 1146 | optionalDependencies: 1147 | '@esbuild/android-arm': 0.16.14 1148 | '@esbuild/android-arm64': 0.16.14 1149 | '@esbuild/android-x64': 0.16.14 1150 | '@esbuild/darwin-arm64': 0.16.14 1151 | '@esbuild/darwin-x64': 0.16.14 1152 | '@esbuild/freebsd-arm64': 0.16.14 1153 | '@esbuild/freebsd-x64': 0.16.14 1154 | '@esbuild/linux-arm': 0.16.14 1155 | '@esbuild/linux-arm64': 0.16.14 1156 | '@esbuild/linux-ia32': 0.16.14 1157 | '@esbuild/linux-loong64': 0.16.14 1158 | '@esbuild/linux-mips64el': 0.16.14 1159 | '@esbuild/linux-ppc64': 0.16.14 1160 | '@esbuild/linux-riscv64': 0.16.14 1161 | '@esbuild/linux-s390x': 0.16.14 1162 | '@esbuild/linux-x64': 0.16.14 1163 | '@esbuild/netbsd-x64': 0.16.14 1164 | '@esbuild/openbsd-x64': 0.16.14 1165 | '@esbuild/sunos-x64': 0.16.14 1166 | '@esbuild/win32-arm64': 0.16.14 1167 | '@esbuild/win32-ia32': 0.16.14 1168 | '@esbuild/win32-x64': 0.16.14 1169 | dev: true 1170 | 1171 | /escalade/3.1.1: 1172 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} 1173 | engines: {node: '>=6'} 1174 | dev: true 1175 | 1176 | /escape-string-regexp/1.0.5: 1177 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} 1178 | engines: {node: '>=0.8.0'} 1179 | dev: true 1180 | 1181 | /escape-string-regexp/4.0.0: 1182 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 1183 | engines: {node: '>=10'} 1184 | dev: true 1185 | 1186 | /eslint-config-prettier/8.6.0_eslint@7.32.0: 1187 | resolution: {integrity: sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA==} 1188 | hasBin: true 1189 | peerDependencies: 1190 | eslint: '>=7.0.0' 1191 | dependencies: 1192 | eslint: 7.32.0 1193 | dev: true 1194 | 1195 | /eslint-config-standard/16.0.3_extivlscaxggrf2qi4gkfidvzu: 1196 | resolution: {integrity: sha512-x4fmJL5hGqNJKGHSjnLdgA6U6h1YW/G2dW9fA+cyVur4SK6lyue8+UgNKWlZtUDTXvgKDD/Oa3GQjmB5kjtVvg==} 1197 | peerDependencies: 1198 | eslint: ^7.12.1 1199 | eslint-plugin-import: ^2.22.1 1200 | eslint-plugin-node: ^11.1.0 1201 | eslint-plugin-promise: ^4.2.1 || ^5.0.0 1202 | dependencies: 1203 | eslint: 7.32.0 1204 | eslint-plugin-import: 2.26.0_lda5jobv6qo6flq5igwnr35p5e 1205 | eslint-plugin-node: 11.1.0_eslint@7.32.0 1206 | eslint-plugin-promise: 6.1.1_eslint@7.32.0 1207 | dev: true 1208 | 1209 | /eslint-import-resolver-node/0.3.6: 1210 | resolution: {integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==} 1211 | dependencies: 1212 | debug: 3.2.7 1213 | resolve: 1.22.1 1214 | transitivePeerDependencies: 1215 | - supports-color 1216 | dev: true 1217 | 1218 | /eslint-module-utils/2.7.4_nwwjtbyp46nqsoq2yonci5vjvy: 1219 | resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} 1220 | engines: {node: '>=4'} 1221 | peerDependencies: 1222 | '@typescript-eslint/parser': '*' 1223 | eslint: '*' 1224 | eslint-import-resolver-node: '*' 1225 | eslint-import-resolver-typescript: '*' 1226 | eslint-import-resolver-webpack: '*' 1227 | peerDependenciesMeta: 1228 | '@typescript-eslint/parser': 1229 | optional: true 1230 | eslint: 1231 | optional: true 1232 | eslint-import-resolver-node: 1233 | optional: true 1234 | eslint-import-resolver-typescript: 1235 | optional: true 1236 | eslint-import-resolver-webpack: 1237 | optional: true 1238 | dependencies: 1239 | '@typescript-eslint/parser': 5.48.0_yfqovispp7u7jaktymfaqwl2py 1240 | debug: 3.2.7 1241 | eslint: 7.32.0 1242 | eslint-import-resolver-node: 0.3.6 1243 | transitivePeerDependencies: 1244 | - supports-color 1245 | dev: true 1246 | 1247 | /eslint-plugin-es/3.0.1_eslint@7.32.0: 1248 | resolution: {integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==} 1249 | engines: {node: '>=8.10.0'} 1250 | peerDependencies: 1251 | eslint: '>=4.19.1' 1252 | dependencies: 1253 | eslint: 7.32.0 1254 | eslint-utils: 2.1.0 1255 | regexpp: 3.2.0 1256 | dev: true 1257 | 1258 | /eslint-plugin-import/2.26.0_lda5jobv6qo6flq5igwnr35p5e: 1259 | resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} 1260 | engines: {node: '>=4'} 1261 | peerDependencies: 1262 | '@typescript-eslint/parser': '*' 1263 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 1264 | peerDependenciesMeta: 1265 | '@typescript-eslint/parser': 1266 | optional: true 1267 | dependencies: 1268 | '@typescript-eslint/parser': 5.48.0_yfqovispp7u7jaktymfaqwl2py 1269 | array-includes: 3.1.6 1270 | array.prototype.flat: 1.3.1 1271 | debug: 2.6.9 1272 | doctrine: 2.1.0 1273 | eslint: 7.32.0 1274 | eslint-import-resolver-node: 0.3.6 1275 | eslint-module-utils: 2.7.4_nwwjtbyp46nqsoq2yonci5vjvy 1276 | has: 1.0.3 1277 | is-core-module: 2.11.0 1278 | is-glob: 4.0.3 1279 | minimatch: 3.1.2 1280 | object.values: 1.1.6 1281 | resolve: 1.22.1 1282 | tsconfig-paths: 3.14.1 1283 | transitivePeerDependencies: 1284 | - eslint-import-resolver-typescript 1285 | - eslint-import-resolver-webpack 1286 | - supports-color 1287 | dev: true 1288 | 1289 | /eslint-plugin-node/11.1.0_eslint@7.32.0: 1290 | resolution: {integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==} 1291 | engines: {node: '>=8.10.0'} 1292 | peerDependencies: 1293 | eslint: '>=5.16.0' 1294 | dependencies: 1295 | eslint: 7.32.0 1296 | eslint-plugin-es: 3.0.1_eslint@7.32.0 1297 | eslint-utils: 2.1.0 1298 | ignore: 5.2.4 1299 | minimatch: 3.1.2 1300 | resolve: 1.22.1 1301 | semver: 6.3.0 1302 | dev: true 1303 | 1304 | /eslint-plugin-prettier/4.2.1_tj36hxcnuvbqp5dqyydrzacu4m: 1305 | resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} 1306 | engines: {node: '>=12.0.0'} 1307 | peerDependencies: 1308 | eslint: '>=7.28.0' 1309 | eslint-config-prettier: '*' 1310 | prettier: '>=2.0.0' 1311 | peerDependenciesMeta: 1312 | eslint-config-prettier: 1313 | optional: true 1314 | dependencies: 1315 | eslint: 7.32.0 1316 | eslint-config-prettier: 8.6.0_eslint@7.32.0 1317 | prettier: 2.8.1 1318 | prettier-linter-helpers: 1.0.0 1319 | dev: true 1320 | 1321 | /eslint-plugin-promise/6.1.1_eslint@7.32.0: 1322 | resolution: {integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==} 1323 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1324 | peerDependencies: 1325 | eslint: ^7.0.0 || ^8.0.0 1326 | dependencies: 1327 | eslint: 7.32.0 1328 | dev: true 1329 | 1330 | /eslint-plugin-react-hooks/4.6.0_eslint@7.32.0: 1331 | resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} 1332 | engines: {node: '>=10'} 1333 | peerDependencies: 1334 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 1335 | dependencies: 1336 | eslint: 7.32.0 1337 | dev: true 1338 | 1339 | /eslint-plugin-react/7.31.11_eslint@7.32.0: 1340 | resolution: {integrity: sha512-TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw==} 1341 | engines: {node: '>=4'} 1342 | peerDependencies: 1343 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 1344 | dependencies: 1345 | array-includes: 3.1.6 1346 | array.prototype.flatmap: 1.3.1 1347 | array.prototype.tosorted: 1.1.1 1348 | doctrine: 2.1.0 1349 | eslint: 7.32.0 1350 | estraverse: 5.3.0 1351 | jsx-ast-utils: 3.3.3 1352 | minimatch: 3.1.2 1353 | object.entries: 1.1.6 1354 | object.fromentries: 2.0.6 1355 | object.hasown: 1.1.2 1356 | object.values: 1.1.6 1357 | prop-types: 15.8.1 1358 | resolve: 2.0.0-next.4 1359 | semver: 6.3.0 1360 | string.prototype.matchall: 4.0.8 1361 | dev: true 1362 | 1363 | /eslint-scope/5.1.1: 1364 | resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} 1365 | engines: {node: '>=8.0.0'} 1366 | dependencies: 1367 | esrecurse: 4.3.0 1368 | estraverse: 4.3.0 1369 | dev: true 1370 | 1371 | /eslint-utils/2.1.0: 1372 | resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} 1373 | engines: {node: '>=6'} 1374 | dependencies: 1375 | eslint-visitor-keys: 1.3.0 1376 | dev: true 1377 | 1378 | /eslint-utils/3.0.0_eslint@7.32.0: 1379 | resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} 1380 | engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} 1381 | peerDependencies: 1382 | eslint: '>=5' 1383 | dependencies: 1384 | eslint: 7.32.0 1385 | eslint-visitor-keys: 2.1.0 1386 | dev: true 1387 | 1388 | /eslint-visitor-keys/1.3.0: 1389 | resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} 1390 | engines: {node: '>=4'} 1391 | dev: true 1392 | 1393 | /eslint-visitor-keys/2.1.0: 1394 | resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} 1395 | engines: {node: '>=10'} 1396 | dev: true 1397 | 1398 | /eslint-visitor-keys/3.3.0: 1399 | resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==} 1400 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1401 | dev: true 1402 | 1403 | /eslint/7.32.0: 1404 | resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} 1405 | engines: {node: ^10.12.0 || >=12.0.0} 1406 | hasBin: true 1407 | dependencies: 1408 | '@babel/code-frame': 7.12.11 1409 | '@eslint/eslintrc': 0.4.3 1410 | '@humanwhocodes/config-array': 0.5.0 1411 | ajv: 6.12.6 1412 | chalk: 4.1.2 1413 | cross-spawn: 7.0.3 1414 | debug: 4.3.4 1415 | doctrine: 3.0.0 1416 | enquirer: 2.3.6 1417 | escape-string-regexp: 4.0.0 1418 | eslint-scope: 5.1.1 1419 | eslint-utils: 2.1.0 1420 | eslint-visitor-keys: 2.1.0 1421 | espree: 7.3.1 1422 | esquery: 1.4.0 1423 | esutils: 2.0.3 1424 | fast-deep-equal: 3.1.3 1425 | file-entry-cache: 6.0.1 1426 | functional-red-black-tree: 1.0.1 1427 | glob-parent: 5.1.2 1428 | globals: 13.19.0 1429 | ignore: 4.0.6 1430 | import-fresh: 3.3.0 1431 | imurmurhash: 0.1.4 1432 | is-glob: 4.0.3 1433 | js-yaml: 3.14.1 1434 | json-stable-stringify-without-jsonify: 1.0.1 1435 | levn: 0.4.1 1436 | lodash.merge: 4.6.2 1437 | minimatch: 3.1.2 1438 | natural-compare: 1.4.0 1439 | optionator: 0.9.1 1440 | progress: 2.0.3 1441 | regexpp: 3.2.0 1442 | semver: 7.3.8 1443 | strip-ansi: 6.0.1 1444 | strip-json-comments: 3.1.1 1445 | table: 6.8.1 1446 | text-table: 0.2.0 1447 | v8-compile-cache: 2.3.0 1448 | transitivePeerDependencies: 1449 | - supports-color 1450 | dev: true 1451 | 1452 | /espree/7.3.1: 1453 | resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} 1454 | engines: {node: ^10.12.0 || >=12.0.0} 1455 | dependencies: 1456 | acorn: 7.4.1 1457 | acorn-jsx: 5.3.2_acorn@7.4.1 1458 | eslint-visitor-keys: 1.3.0 1459 | dev: true 1460 | 1461 | /esprima/4.0.1: 1462 | resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} 1463 | engines: {node: '>=4'} 1464 | hasBin: true 1465 | dev: true 1466 | 1467 | /esquery/1.4.0: 1468 | resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==} 1469 | engines: {node: '>=0.10'} 1470 | dependencies: 1471 | estraverse: 5.3.0 1472 | dev: true 1473 | 1474 | /esrecurse/4.3.0: 1475 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 1476 | engines: {node: '>=4.0'} 1477 | dependencies: 1478 | estraverse: 5.3.0 1479 | dev: true 1480 | 1481 | /estraverse/4.3.0: 1482 | resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} 1483 | engines: {node: '>=4.0'} 1484 | dev: true 1485 | 1486 | /estraverse/5.3.0: 1487 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1488 | engines: {node: '>=4.0'} 1489 | dev: true 1490 | 1491 | /esutils/2.0.3: 1492 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1493 | engines: {node: '>=0.10.0'} 1494 | dev: true 1495 | 1496 | /fast-deep-equal/3.1.3: 1497 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1498 | dev: true 1499 | 1500 | /fast-diff/1.2.0: 1501 | resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==} 1502 | dev: true 1503 | 1504 | /fast-glob/3.2.12: 1505 | resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} 1506 | engines: {node: '>=8.6.0'} 1507 | dependencies: 1508 | '@nodelib/fs.stat': 2.0.5 1509 | '@nodelib/fs.walk': 1.2.8 1510 | glob-parent: 5.1.2 1511 | merge2: 1.4.1 1512 | micromatch: 4.0.5 1513 | dev: true 1514 | 1515 | /fast-json-stable-stringify/2.1.0: 1516 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 1517 | dev: true 1518 | 1519 | /fast-levenshtein/2.0.6: 1520 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 1521 | dev: true 1522 | 1523 | /fastq/1.15.0: 1524 | resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} 1525 | dependencies: 1526 | reusify: 1.0.4 1527 | dev: true 1528 | 1529 | /file-entry-cache/6.0.1: 1530 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 1531 | engines: {node: ^10.12.0 || >=12.0.0} 1532 | dependencies: 1533 | flat-cache: 3.0.4 1534 | dev: true 1535 | 1536 | /fill-range/7.0.1: 1537 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} 1538 | engines: {node: '>=8'} 1539 | dependencies: 1540 | to-regex-range: 5.0.1 1541 | 1542 | /flat-cache/3.0.4: 1543 | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} 1544 | engines: {node: ^10.12.0 || >=12.0.0} 1545 | dependencies: 1546 | flatted: 3.2.7 1547 | rimraf: 3.0.2 1548 | dev: true 1549 | 1550 | /flatted/3.2.7: 1551 | resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} 1552 | dev: true 1553 | 1554 | /for-each/0.3.3: 1555 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 1556 | dependencies: 1557 | is-callable: 1.2.7 1558 | dev: true 1559 | 1560 | /fs.realpath/1.0.0: 1561 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 1562 | dev: true 1563 | 1564 | /fsevents/2.3.2: 1565 | resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} 1566 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1567 | os: [darwin] 1568 | requiresBuild: true 1569 | optional: true 1570 | 1571 | /function-bind/1.1.1: 1572 | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} 1573 | dev: true 1574 | 1575 | /function.prototype.name/1.1.5: 1576 | resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} 1577 | engines: {node: '>= 0.4'} 1578 | dependencies: 1579 | call-bind: 1.0.2 1580 | define-properties: 1.1.4 1581 | es-abstract: 1.21.0 1582 | functions-have-names: 1.2.3 1583 | dev: true 1584 | 1585 | /functional-red-black-tree/1.0.1: 1586 | resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} 1587 | dev: true 1588 | 1589 | /functions-have-names/1.2.3: 1590 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 1591 | dev: true 1592 | 1593 | /gensync/1.0.0-beta.2: 1594 | resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} 1595 | engines: {node: '>=6.9.0'} 1596 | dev: true 1597 | 1598 | /get-intrinsic/1.1.3: 1599 | resolution: {integrity: sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==} 1600 | dependencies: 1601 | function-bind: 1.1.1 1602 | has: 1.0.3 1603 | has-symbols: 1.0.3 1604 | dev: true 1605 | 1606 | /get-symbol-description/1.0.0: 1607 | resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} 1608 | engines: {node: '>= 0.4'} 1609 | dependencies: 1610 | call-bind: 1.0.2 1611 | get-intrinsic: 1.1.3 1612 | dev: true 1613 | 1614 | /glob-parent/5.1.2: 1615 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1616 | engines: {node: '>= 6'} 1617 | dependencies: 1618 | is-glob: 4.0.3 1619 | 1620 | /glob/7.2.3: 1621 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 1622 | dependencies: 1623 | fs.realpath: 1.0.0 1624 | inflight: 1.0.6 1625 | inherits: 2.0.4 1626 | minimatch: 3.1.2 1627 | once: 1.4.0 1628 | path-is-absolute: 1.0.1 1629 | dev: true 1630 | 1631 | /globals/11.12.0: 1632 | resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} 1633 | engines: {node: '>=4'} 1634 | dev: true 1635 | 1636 | /globals/13.19.0: 1637 | resolution: {integrity: sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==} 1638 | engines: {node: '>=8'} 1639 | dependencies: 1640 | type-fest: 0.20.2 1641 | dev: true 1642 | 1643 | /globalthis/1.0.3: 1644 | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} 1645 | engines: {node: '>= 0.4'} 1646 | dependencies: 1647 | define-properties: 1.1.4 1648 | dev: true 1649 | 1650 | /globby/11.1.0: 1651 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 1652 | engines: {node: '>=10'} 1653 | dependencies: 1654 | array-union: 2.1.0 1655 | dir-glob: 3.0.1 1656 | fast-glob: 3.2.12 1657 | ignore: 5.2.4 1658 | merge2: 1.4.1 1659 | slash: 3.0.0 1660 | dev: true 1661 | 1662 | /gopd/1.0.1: 1663 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} 1664 | dependencies: 1665 | get-intrinsic: 1.1.3 1666 | dev: true 1667 | 1668 | /has-bigints/1.0.2: 1669 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 1670 | dev: true 1671 | 1672 | /has-flag/3.0.0: 1673 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} 1674 | engines: {node: '>=4'} 1675 | dev: true 1676 | 1677 | /has-flag/4.0.0: 1678 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1679 | engines: {node: '>=8'} 1680 | dev: true 1681 | 1682 | /has-property-descriptors/1.0.0: 1683 | resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} 1684 | dependencies: 1685 | get-intrinsic: 1.1.3 1686 | dev: true 1687 | 1688 | /has-proto/1.0.1: 1689 | resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} 1690 | engines: {node: '>= 0.4'} 1691 | dev: true 1692 | 1693 | /has-symbols/1.0.3: 1694 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 1695 | engines: {node: '>= 0.4'} 1696 | dev: true 1697 | 1698 | /has-tostringtag/1.0.0: 1699 | resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} 1700 | engines: {node: '>= 0.4'} 1701 | dependencies: 1702 | has-symbols: 1.0.3 1703 | dev: true 1704 | 1705 | /has/1.0.3: 1706 | resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} 1707 | engines: {node: '>= 0.4.0'} 1708 | dependencies: 1709 | function-bind: 1.1.1 1710 | dev: true 1711 | 1712 | /ignore/4.0.6: 1713 | resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} 1714 | engines: {node: '>= 4'} 1715 | dev: true 1716 | 1717 | /ignore/5.2.4: 1718 | resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} 1719 | engines: {node: '>= 4'} 1720 | dev: true 1721 | 1722 | /immutable/4.2.1: 1723 | resolution: {integrity: sha512-7WYV7Q5BTs0nlQm7tl92rDYYoyELLKHoDMBKhrxEoiV4mrfVdRz8hzPiYOzH7yWjzoVEamxRuAqhxL2PLRwZYQ==} 1724 | 1725 | /import-fresh/3.3.0: 1726 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 1727 | engines: {node: '>=6'} 1728 | dependencies: 1729 | parent-module: 1.0.1 1730 | resolve-from: 4.0.0 1731 | dev: true 1732 | 1733 | /imurmurhash/0.1.4: 1734 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1735 | engines: {node: '>=0.8.19'} 1736 | dev: true 1737 | 1738 | /inflight/1.0.6: 1739 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 1740 | dependencies: 1741 | once: 1.4.0 1742 | wrappy: 1.0.2 1743 | dev: true 1744 | 1745 | /inherits/2.0.4: 1746 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 1747 | dev: true 1748 | 1749 | /internal-slot/1.0.4: 1750 | resolution: {integrity: sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ==} 1751 | engines: {node: '>= 0.4'} 1752 | dependencies: 1753 | get-intrinsic: 1.1.3 1754 | has: 1.0.3 1755 | side-channel: 1.0.4 1756 | dev: true 1757 | 1758 | /is-array-buffer/3.0.0: 1759 | resolution: {integrity: sha512-TI2hnvT6dPUnn/jARFCJBKL1eeabAfLnKZ2lmW5Uh317s1Ii2IMroL1yMciEk/G+OETykVzlsH6x/L4q/avhgw==} 1760 | dependencies: 1761 | call-bind: 1.0.2 1762 | get-intrinsic: 1.1.3 1763 | dev: true 1764 | 1765 | /is-bigint/1.0.4: 1766 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 1767 | dependencies: 1768 | has-bigints: 1.0.2 1769 | dev: true 1770 | 1771 | /is-binary-path/2.1.0: 1772 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 1773 | engines: {node: '>=8'} 1774 | dependencies: 1775 | binary-extensions: 2.2.0 1776 | 1777 | /is-boolean-object/1.1.2: 1778 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 1779 | engines: {node: '>= 0.4'} 1780 | dependencies: 1781 | call-bind: 1.0.2 1782 | has-tostringtag: 1.0.0 1783 | dev: true 1784 | 1785 | /is-callable/1.2.7: 1786 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 1787 | engines: {node: '>= 0.4'} 1788 | dev: true 1789 | 1790 | /is-core-module/2.11.0: 1791 | resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==} 1792 | dependencies: 1793 | has: 1.0.3 1794 | dev: true 1795 | 1796 | /is-date-object/1.0.5: 1797 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 1798 | engines: {node: '>= 0.4'} 1799 | dependencies: 1800 | has-tostringtag: 1.0.0 1801 | dev: true 1802 | 1803 | /is-extglob/2.1.1: 1804 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1805 | engines: {node: '>=0.10.0'} 1806 | 1807 | /is-fullwidth-code-point/3.0.0: 1808 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 1809 | engines: {node: '>=8'} 1810 | dev: true 1811 | 1812 | /is-glob/4.0.3: 1813 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1814 | engines: {node: '>=0.10.0'} 1815 | dependencies: 1816 | is-extglob: 2.1.1 1817 | 1818 | /is-negative-zero/2.0.2: 1819 | resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} 1820 | engines: {node: '>= 0.4'} 1821 | dev: true 1822 | 1823 | /is-number-object/1.0.7: 1824 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 1825 | engines: {node: '>= 0.4'} 1826 | dependencies: 1827 | has-tostringtag: 1.0.0 1828 | dev: true 1829 | 1830 | /is-number/7.0.0: 1831 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1832 | engines: {node: '>=0.12.0'} 1833 | 1834 | /is-regex/1.1.4: 1835 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 1836 | engines: {node: '>= 0.4'} 1837 | dependencies: 1838 | call-bind: 1.0.2 1839 | has-tostringtag: 1.0.0 1840 | dev: true 1841 | 1842 | /is-shared-array-buffer/1.0.2: 1843 | resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} 1844 | dependencies: 1845 | call-bind: 1.0.2 1846 | dev: true 1847 | 1848 | /is-string/1.0.7: 1849 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 1850 | engines: {node: '>= 0.4'} 1851 | dependencies: 1852 | has-tostringtag: 1.0.0 1853 | dev: true 1854 | 1855 | /is-symbol/1.0.4: 1856 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 1857 | engines: {node: '>= 0.4'} 1858 | dependencies: 1859 | has-symbols: 1.0.3 1860 | dev: true 1861 | 1862 | /is-typed-array/1.1.10: 1863 | resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==} 1864 | engines: {node: '>= 0.4'} 1865 | dependencies: 1866 | available-typed-arrays: 1.0.5 1867 | call-bind: 1.0.2 1868 | for-each: 0.3.3 1869 | gopd: 1.0.1 1870 | has-tostringtag: 1.0.0 1871 | dev: true 1872 | 1873 | /is-weakref/1.0.2: 1874 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 1875 | dependencies: 1876 | call-bind: 1.0.2 1877 | dev: true 1878 | 1879 | /isexe/2.0.0: 1880 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1881 | dev: true 1882 | 1883 | /js-tokens/4.0.0: 1884 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1885 | 1886 | /js-yaml/3.14.1: 1887 | resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} 1888 | hasBin: true 1889 | dependencies: 1890 | argparse: 1.0.10 1891 | esprima: 4.0.1 1892 | dev: true 1893 | 1894 | /jsesc/2.5.2: 1895 | resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} 1896 | engines: {node: '>=4'} 1897 | hasBin: true 1898 | dev: true 1899 | 1900 | /json-schema-traverse/0.4.1: 1901 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1902 | dev: true 1903 | 1904 | /json-schema-traverse/1.0.0: 1905 | resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} 1906 | dev: true 1907 | 1908 | /json-stable-stringify-without-jsonify/1.0.1: 1909 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1910 | dev: true 1911 | 1912 | /json5/1.0.2: 1913 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 1914 | hasBin: true 1915 | dependencies: 1916 | minimist: 1.2.7 1917 | dev: true 1918 | 1919 | /json5/2.2.3: 1920 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 1921 | engines: {node: '>=6'} 1922 | hasBin: true 1923 | dev: true 1924 | 1925 | /jsx-ast-utils/3.3.3: 1926 | resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==} 1927 | engines: {node: '>=4.0'} 1928 | dependencies: 1929 | array-includes: 3.1.6 1930 | object.assign: 4.1.4 1931 | dev: true 1932 | 1933 | /levn/0.4.1: 1934 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1935 | engines: {node: '>= 0.8.0'} 1936 | dependencies: 1937 | prelude-ls: 1.2.1 1938 | type-check: 0.4.0 1939 | dev: true 1940 | 1941 | /lodash.merge/4.6.2: 1942 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1943 | dev: true 1944 | 1945 | /lodash.truncate/4.4.2: 1946 | resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} 1947 | dev: true 1948 | 1949 | /loose-envify/1.4.0: 1950 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 1951 | hasBin: true 1952 | dependencies: 1953 | js-tokens: 4.0.0 1954 | 1955 | /lru-cache/5.1.1: 1956 | resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} 1957 | dependencies: 1958 | yallist: 3.1.1 1959 | dev: true 1960 | 1961 | /lru-cache/6.0.0: 1962 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 1963 | engines: {node: '>=10'} 1964 | dependencies: 1965 | yallist: 4.0.0 1966 | dev: true 1967 | 1968 | /magic-string/0.27.0: 1969 | resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} 1970 | engines: {node: '>=12'} 1971 | dependencies: 1972 | '@jridgewell/sourcemap-codec': 1.4.14 1973 | dev: true 1974 | 1975 | /merge2/1.4.1: 1976 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1977 | engines: {node: '>= 8'} 1978 | dev: true 1979 | 1980 | /micromatch/4.0.5: 1981 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 1982 | engines: {node: '>=8.6'} 1983 | dependencies: 1984 | braces: 3.0.2 1985 | picomatch: 2.3.1 1986 | dev: true 1987 | 1988 | /minimatch/3.1.2: 1989 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1990 | dependencies: 1991 | brace-expansion: 1.1.11 1992 | dev: true 1993 | 1994 | /minimist/1.2.7: 1995 | resolution: {integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==} 1996 | dev: true 1997 | 1998 | /ms/2.0.0: 1999 | resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} 2000 | dev: true 2001 | 2002 | /ms/2.1.2: 2003 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 2004 | dev: true 2005 | 2006 | /ms/2.1.3: 2007 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 2008 | dev: true 2009 | 2010 | /nanoid/3.3.4: 2011 | resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==} 2012 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 2013 | hasBin: true 2014 | dev: true 2015 | 2016 | /natural-compare-lite/1.4.0: 2017 | resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} 2018 | dev: true 2019 | 2020 | /natural-compare/1.4.0: 2021 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 2022 | dev: true 2023 | 2024 | /node-releases/2.0.8: 2025 | resolution: {integrity: sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==} 2026 | dev: true 2027 | 2028 | /normalize-path/3.0.0: 2029 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 2030 | engines: {node: '>=0.10.0'} 2031 | 2032 | /object-assign/4.1.1: 2033 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 2034 | engines: {node: '>=0.10.0'} 2035 | dev: true 2036 | 2037 | /object-inspect/1.12.2: 2038 | resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==} 2039 | dev: true 2040 | 2041 | /object-keys/1.1.1: 2042 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 2043 | engines: {node: '>= 0.4'} 2044 | dev: true 2045 | 2046 | /object.assign/4.1.4: 2047 | resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} 2048 | engines: {node: '>= 0.4'} 2049 | dependencies: 2050 | call-bind: 1.0.2 2051 | define-properties: 1.1.4 2052 | has-symbols: 1.0.3 2053 | object-keys: 1.1.1 2054 | dev: true 2055 | 2056 | /object.entries/1.1.6: 2057 | resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==} 2058 | engines: {node: '>= 0.4'} 2059 | dependencies: 2060 | call-bind: 1.0.2 2061 | define-properties: 1.1.4 2062 | es-abstract: 1.21.0 2063 | dev: true 2064 | 2065 | /object.fromentries/2.0.6: 2066 | resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==} 2067 | engines: {node: '>= 0.4'} 2068 | dependencies: 2069 | call-bind: 1.0.2 2070 | define-properties: 1.1.4 2071 | es-abstract: 1.21.0 2072 | dev: true 2073 | 2074 | /object.hasown/1.1.2: 2075 | resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==} 2076 | dependencies: 2077 | define-properties: 1.1.4 2078 | es-abstract: 1.21.0 2079 | dev: true 2080 | 2081 | /object.values/1.1.6: 2082 | resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} 2083 | engines: {node: '>= 0.4'} 2084 | dependencies: 2085 | call-bind: 1.0.2 2086 | define-properties: 1.1.4 2087 | es-abstract: 1.21.0 2088 | dev: true 2089 | 2090 | /once/1.4.0: 2091 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 2092 | dependencies: 2093 | wrappy: 1.0.2 2094 | dev: true 2095 | 2096 | /optionator/0.9.1: 2097 | resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} 2098 | engines: {node: '>= 0.8.0'} 2099 | dependencies: 2100 | deep-is: 0.1.4 2101 | fast-levenshtein: 2.0.6 2102 | levn: 0.4.1 2103 | prelude-ls: 1.2.1 2104 | type-check: 0.4.0 2105 | word-wrap: 1.2.3 2106 | dev: true 2107 | 2108 | /parent-module/1.0.1: 2109 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 2110 | engines: {node: '>=6'} 2111 | dependencies: 2112 | callsites: 3.1.0 2113 | dev: true 2114 | 2115 | /path-is-absolute/1.0.1: 2116 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 2117 | engines: {node: '>=0.10.0'} 2118 | dev: true 2119 | 2120 | /path-key/3.1.1: 2121 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 2122 | engines: {node: '>=8'} 2123 | dev: true 2124 | 2125 | /path-parse/1.0.7: 2126 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 2127 | dev: true 2128 | 2129 | /path-type/4.0.0: 2130 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 2131 | engines: {node: '>=8'} 2132 | dev: true 2133 | 2134 | /picocolors/1.0.0: 2135 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 2136 | dev: true 2137 | 2138 | /picomatch/2.3.1: 2139 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 2140 | engines: {node: '>=8.6'} 2141 | 2142 | /postcss/8.4.20: 2143 | resolution: {integrity: sha512-6Q04AXR1212bXr5fh03u8aAwbLxAQNGQ/Q1LNa0VfOI06ZAlhPHtQvE4OIdpj4kLThXilalPnmDSOD65DcHt+g==} 2144 | engines: {node: ^10 || ^12 || >=14} 2145 | dependencies: 2146 | nanoid: 3.3.4 2147 | picocolors: 1.0.0 2148 | source-map-js: 1.0.2 2149 | dev: true 2150 | 2151 | /prelude-ls/1.2.1: 2152 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 2153 | engines: {node: '>= 0.8.0'} 2154 | dev: true 2155 | 2156 | /prettier-linter-helpers/1.0.0: 2157 | resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} 2158 | engines: {node: '>=6.0.0'} 2159 | dependencies: 2160 | fast-diff: 1.2.0 2161 | dev: true 2162 | 2163 | /prettier/2.8.1: 2164 | resolution: {integrity: sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==} 2165 | engines: {node: '>=10.13.0'} 2166 | hasBin: true 2167 | dev: true 2168 | 2169 | /progress/2.0.3: 2170 | resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} 2171 | engines: {node: '>=0.4.0'} 2172 | dev: true 2173 | 2174 | /prop-types/15.8.1: 2175 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 2176 | dependencies: 2177 | loose-envify: 1.4.0 2178 | object-assign: 4.1.1 2179 | react-is: 16.13.1 2180 | dev: true 2181 | 2182 | /punycode/2.1.1: 2183 | resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} 2184 | engines: {node: '>=6'} 2185 | dev: true 2186 | 2187 | /queue-microtask/1.2.3: 2188 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 2189 | dev: true 2190 | 2191 | /react-dom/18.2.0_react@18.2.0: 2192 | resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} 2193 | peerDependencies: 2194 | react: ^18.2.0 2195 | dependencies: 2196 | loose-envify: 1.4.0 2197 | react: 18.2.0 2198 | scheduler: 0.23.0 2199 | dev: false 2200 | 2201 | /react-is/16.13.1: 2202 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 2203 | dev: true 2204 | 2205 | /react-refresh/0.14.0: 2206 | resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==} 2207 | engines: {node: '>=0.10.0'} 2208 | dev: true 2209 | 2210 | /react/18.2.0: 2211 | resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} 2212 | engines: {node: '>=0.10.0'} 2213 | dependencies: 2214 | loose-envify: 1.4.0 2215 | dev: false 2216 | 2217 | /readdirp/3.6.0: 2218 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 2219 | engines: {node: '>=8.10.0'} 2220 | dependencies: 2221 | picomatch: 2.3.1 2222 | 2223 | /regexp.prototype.flags/1.4.3: 2224 | resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==} 2225 | engines: {node: '>= 0.4'} 2226 | dependencies: 2227 | call-bind: 1.0.2 2228 | define-properties: 1.1.4 2229 | functions-have-names: 1.2.3 2230 | dev: true 2231 | 2232 | /regexpp/3.2.0: 2233 | resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} 2234 | engines: {node: '>=8'} 2235 | dev: true 2236 | 2237 | /require-from-string/2.0.2: 2238 | resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} 2239 | engines: {node: '>=0.10.0'} 2240 | dev: true 2241 | 2242 | /resolve-from/4.0.0: 2243 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 2244 | engines: {node: '>=4'} 2245 | dev: true 2246 | 2247 | /resolve/1.22.1: 2248 | resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} 2249 | hasBin: true 2250 | dependencies: 2251 | is-core-module: 2.11.0 2252 | path-parse: 1.0.7 2253 | supports-preserve-symlinks-flag: 1.0.0 2254 | dev: true 2255 | 2256 | /resolve/2.0.0-next.4: 2257 | resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} 2258 | hasBin: true 2259 | dependencies: 2260 | is-core-module: 2.11.0 2261 | path-parse: 1.0.7 2262 | supports-preserve-symlinks-flag: 1.0.0 2263 | dev: true 2264 | 2265 | /reusify/1.0.4: 2266 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 2267 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 2268 | dev: true 2269 | 2270 | /rimraf/3.0.2: 2271 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 2272 | hasBin: true 2273 | dependencies: 2274 | glob: 7.2.3 2275 | dev: true 2276 | 2277 | /rollup/3.9.1: 2278 | resolution: {integrity: sha512-GswCYHXftN8ZKGVgQhTFUJB/NBXxrRGgO2NCy6E8s1rwEJ4Q9/VttNqcYfEvx4dTo4j58YqdC3OVztPzlKSX8w==} 2279 | engines: {node: '>=14.18.0', npm: '>=8.0.0'} 2280 | hasBin: true 2281 | optionalDependencies: 2282 | fsevents: 2.3.2 2283 | dev: true 2284 | 2285 | /run-parallel/1.2.0: 2286 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 2287 | dependencies: 2288 | queue-microtask: 1.2.3 2289 | dev: true 2290 | 2291 | /safe-regex-test/1.0.0: 2292 | resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} 2293 | dependencies: 2294 | call-bind: 1.0.2 2295 | get-intrinsic: 1.1.3 2296 | is-regex: 1.1.4 2297 | dev: true 2298 | 2299 | /sass/1.57.1: 2300 | resolution: {integrity: sha512-O2+LwLS79op7GI0xZ8fqzF7X2m/m8WFfI02dHOdsK5R2ECeS5F62zrwg/relM1rjSLy7Vd/DiMNIvPrQGsA0jw==} 2301 | engines: {node: '>=12.0.0'} 2302 | hasBin: true 2303 | dependencies: 2304 | chokidar: 3.5.3 2305 | immutable: 4.2.1 2306 | source-map-js: 1.0.2 2307 | 2308 | /scheduler/0.23.0: 2309 | resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} 2310 | dependencies: 2311 | loose-envify: 1.4.0 2312 | dev: false 2313 | 2314 | /semver/6.3.0: 2315 | resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} 2316 | hasBin: true 2317 | dev: true 2318 | 2319 | /semver/7.3.8: 2320 | resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} 2321 | engines: {node: '>=10'} 2322 | hasBin: true 2323 | dependencies: 2324 | lru-cache: 6.0.0 2325 | dev: true 2326 | 2327 | /shebang-command/2.0.0: 2328 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 2329 | engines: {node: '>=8'} 2330 | dependencies: 2331 | shebang-regex: 3.0.0 2332 | dev: true 2333 | 2334 | /shebang-regex/3.0.0: 2335 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 2336 | engines: {node: '>=8'} 2337 | dev: true 2338 | 2339 | /side-channel/1.0.4: 2340 | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} 2341 | dependencies: 2342 | call-bind: 1.0.2 2343 | get-intrinsic: 1.1.3 2344 | object-inspect: 1.12.2 2345 | dev: true 2346 | 2347 | /slash/3.0.0: 2348 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 2349 | engines: {node: '>=8'} 2350 | dev: true 2351 | 2352 | /slice-ansi/4.0.0: 2353 | resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} 2354 | engines: {node: '>=10'} 2355 | dependencies: 2356 | ansi-styles: 4.3.0 2357 | astral-regex: 2.0.0 2358 | is-fullwidth-code-point: 3.0.0 2359 | dev: true 2360 | 2361 | /source-map-js/1.0.2: 2362 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} 2363 | engines: {node: '>=0.10.0'} 2364 | 2365 | /sprintf-js/1.0.3: 2366 | resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} 2367 | dev: true 2368 | 2369 | /string-width/4.2.3: 2370 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 2371 | engines: {node: '>=8'} 2372 | dependencies: 2373 | emoji-regex: 8.0.0 2374 | is-fullwidth-code-point: 3.0.0 2375 | strip-ansi: 6.0.1 2376 | dev: true 2377 | 2378 | /string.prototype.matchall/4.0.8: 2379 | resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==} 2380 | dependencies: 2381 | call-bind: 1.0.2 2382 | define-properties: 1.1.4 2383 | es-abstract: 1.21.0 2384 | get-intrinsic: 1.1.3 2385 | has-symbols: 1.0.3 2386 | internal-slot: 1.0.4 2387 | regexp.prototype.flags: 1.4.3 2388 | side-channel: 1.0.4 2389 | dev: true 2390 | 2391 | /string.prototype.trimend/1.0.6: 2392 | resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} 2393 | dependencies: 2394 | call-bind: 1.0.2 2395 | define-properties: 1.1.4 2396 | es-abstract: 1.21.0 2397 | dev: true 2398 | 2399 | /string.prototype.trimstart/1.0.6: 2400 | resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} 2401 | dependencies: 2402 | call-bind: 1.0.2 2403 | define-properties: 1.1.4 2404 | es-abstract: 1.21.0 2405 | dev: true 2406 | 2407 | /strip-ansi/6.0.1: 2408 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 2409 | engines: {node: '>=8'} 2410 | dependencies: 2411 | ansi-regex: 5.0.1 2412 | dev: true 2413 | 2414 | /strip-bom/3.0.0: 2415 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 2416 | engines: {node: '>=4'} 2417 | dev: true 2418 | 2419 | /strip-json-comments/3.1.1: 2420 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 2421 | engines: {node: '>=8'} 2422 | dev: true 2423 | 2424 | /supports-color/5.5.0: 2425 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 2426 | engines: {node: '>=4'} 2427 | dependencies: 2428 | has-flag: 3.0.0 2429 | dev: true 2430 | 2431 | /supports-color/7.2.0: 2432 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 2433 | engines: {node: '>=8'} 2434 | dependencies: 2435 | has-flag: 4.0.0 2436 | dev: true 2437 | 2438 | /supports-preserve-symlinks-flag/1.0.0: 2439 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 2440 | engines: {node: '>= 0.4'} 2441 | dev: true 2442 | 2443 | /table/6.8.1: 2444 | resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==} 2445 | engines: {node: '>=10.0.0'} 2446 | dependencies: 2447 | ajv: 8.12.0 2448 | lodash.truncate: 4.4.2 2449 | slice-ansi: 4.0.0 2450 | string-width: 4.2.3 2451 | strip-ansi: 6.0.1 2452 | dev: true 2453 | 2454 | /text-table/0.2.0: 2455 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 2456 | dev: true 2457 | 2458 | /to-fast-properties/2.0.0: 2459 | resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} 2460 | engines: {node: '>=4'} 2461 | dev: true 2462 | 2463 | /to-regex-range/5.0.1: 2464 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 2465 | engines: {node: '>=8.0'} 2466 | dependencies: 2467 | is-number: 7.0.0 2468 | 2469 | /tsconfig-paths/3.14.1: 2470 | resolution: {integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==} 2471 | dependencies: 2472 | '@types/json5': 0.0.29 2473 | json5: 1.0.2 2474 | minimist: 1.2.7 2475 | strip-bom: 3.0.0 2476 | dev: true 2477 | 2478 | /tslib/1.14.1: 2479 | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} 2480 | dev: true 2481 | 2482 | /tsutils/3.21.0_typescript@4.9.4: 2483 | resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} 2484 | engines: {node: '>= 6'} 2485 | peerDependencies: 2486 | 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' 2487 | dependencies: 2488 | tslib: 1.14.1 2489 | typescript: 4.9.4 2490 | dev: true 2491 | 2492 | /type-check/0.4.0: 2493 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 2494 | engines: {node: '>= 0.8.0'} 2495 | dependencies: 2496 | prelude-ls: 1.2.1 2497 | dev: true 2498 | 2499 | /type-fest/0.20.2: 2500 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 2501 | engines: {node: '>=10'} 2502 | dev: true 2503 | 2504 | /typed-array-length/1.0.4: 2505 | resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} 2506 | dependencies: 2507 | call-bind: 1.0.2 2508 | for-each: 0.3.3 2509 | is-typed-array: 1.1.10 2510 | dev: true 2511 | 2512 | /typescript/4.9.4: 2513 | resolution: {integrity: sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==} 2514 | engines: {node: '>=4.2.0'} 2515 | hasBin: true 2516 | dev: true 2517 | 2518 | /unbox-primitive/1.0.2: 2519 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 2520 | dependencies: 2521 | call-bind: 1.0.2 2522 | has-bigints: 1.0.2 2523 | has-symbols: 1.0.3 2524 | which-boxed-primitive: 1.0.2 2525 | dev: true 2526 | 2527 | /update-browserslist-db/1.0.10_browserslist@4.21.4: 2528 | resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==} 2529 | hasBin: true 2530 | peerDependencies: 2531 | browserslist: '>= 4.21.0' 2532 | dependencies: 2533 | browserslist: 4.21.4 2534 | escalade: 3.1.1 2535 | picocolors: 1.0.0 2536 | dev: true 2537 | 2538 | /uri-js/4.4.1: 2539 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 2540 | dependencies: 2541 | punycode: 2.1.1 2542 | dev: true 2543 | 2544 | /v8-compile-cache/2.3.0: 2545 | resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} 2546 | dev: true 2547 | 2548 | /vite/4.0.4_sass@1.57.1: 2549 | resolution: {integrity: sha512-xevPU7M8FU0i/80DMR+YhgrzR5KS2ORy1B4xcX/cXLsvnUWvfHuqMmVU6N0YiJ4JWGRJJsLCgjEzKjG9/GKoSw==} 2550 | engines: {node: ^14.18.0 || >=16.0.0} 2551 | hasBin: true 2552 | peerDependencies: 2553 | '@types/node': '>= 14' 2554 | less: '*' 2555 | sass: '*' 2556 | stylus: '*' 2557 | sugarss: '*' 2558 | terser: ^5.4.0 2559 | peerDependenciesMeta: 2560 | '@types/node': 2561 | optional: true 2562 | less: 2563 | optional: true 2564 | sass: 2565 | optional: true 2566 | stylus: 2567 | optional: true 2568 | sugarss: 2569 | optional: true 2570 | terser: 2571 | optional: true 2572 | dependencies: 2573 | esbuild: 0.16.14 2574 | postcss: 8.4.20 2575 | resolve: 1.22.1 2576 | rollup: 3.9.1 2577 | sass: 1.57.1 2578 | optionalDependencies: 2579 | fsevents: 2.3.2 2580 | dev: true 2581 | 2582 | /which-boxed-primitive/1.0.2: 2583 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 2584 | dependencies: 2585 | is-bigint: 1.0.4 2586 | is-boolean-object: 1.1.2 2587 | is-number-object: 1.0.7 2588 | is-string: 1.0.7 2589 | is-symbol: 1.0.4 2590 | dev: true 2591 | 2592 | /which-typed-array/1.1.9: 2593 | resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} 2594 | engines: {node: '>= 0.4'} 2595 | dependencies: 2596 | available-typed-arrays: 1.0.5 2597 | call-bind: 1.0.2 2598 | for-each: 0.3.3 2599 | gopd: 1.0.1 2600 | has-tostringtag: 1.0.0 2601 | is-typed-array: 1.1.10 2602 | dev: true 2603 | 2604 | /which/2.0.2: 2605 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 2606 | engines: {node: '>= 8'} 2607 | hasBin: true 2608 | dependencies: 2609 | isexe: 2.0.0 2610 | dev: true 2611 | 2612 | /word-wrap/1.2.3: 2613 | resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} 2614 | engines: {node: '>=0.10.0'} 2615 | dev: true 2616 | 2617 | /wrappy/1.0.2: 2618 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 2619 | dev: true 2620 | 2621 | /yallist/3.1.1: 2622 | resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} 2623 | dev: true 2624 | 2625 | /yallist/4.0.0: 2626 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 2627 | dev: true 2628 | -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- 1 | import {useMemo, useState} from "react"; 2 | 3 | interface Articulo { 4 | id: number; 5 | name: string; 6 | price: number; 7 | count: number; 8 | status: "deseo" | "comprado" | "cancelado"; 9 | } 10 | 11 | function obtenerNuevoArticulo(articulo?: Partial): Articulo { 12 | return { 13 | id: Date.now(), 14 | name: "", 15 | price: 0, 16 | count: 1, 17 | status: "deseo", 18 | ...articulo, 19 | }; 20 | } 21 | 22 | function App() { 23 | const [articulos, setArticulos] = useState(() => [ 24 | obtenerNuevoArticulo({ 25 | name: "Cámara digital", 26 | price: 100, 27 | count: 1, 28 | status: "deseo", 29 | }), 30 | ]); 31 | const total = useMemo(() => { 32 | // @TODO: Retornar la suma de los precios de los artículos 33 | return 0; 34 | }, [articulos]); 35 | const articulosValidos = useMemo(() => { 36 | // @TODO: Retornar true si todos los artículos son válidos 37 | return true; 38 | }, [articulos]); 39 | 40 | function agregarArticulo() { 41 | setArticulos((articulos) => { 42 | // @TODO: Retornar un nuevo arreglo con un nuevo artículo 43 | return articulos; 44 | }); 45 | } 46 | 47 | function editarArticulo(articuloModificado: Articulo) { 48 | setArticulos((articulos) => { 49 | // @TODO: Retornar un nuevo arreglo con el artículo editado 50 | return articulos; 51 | }); 52 | } 53 | 54 | function eliminarArticulo(articuloAEliminar: Articulo) { 55 | setArticulos((articulos) => { 56 | // @TODO: Retornar un nuevo arreglo sin el artículo 57 | return articulos; 58 | }); 59 | } 60 | 61 | return ( 62 |
63 |

Wincy

64 |
    65 | {articulos.map((articulo) => ( 66 |
  • 67 | editarArticulo({...articulo, name: event.target.value})} 70 | /> 71 | editarArticulo({...articulo, price: Number(event.target.value)})} 75 | /> 76 | editarArticulo({...articulo, count: Number(event.target.value)})} 80 | /> 81 | 91 | 92 |
  • 93 | ))} 94 |
95 | 96 |

Artículos válidos?: {articulosValidos ? "✅" : "⛔"}

97 |

Total: ${total}

98 |
99 | ); 100 | } 101 | 102 | export default App; 103 | -------------------------------------------------------------------------------- /src/favicon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | background-color: #DEF0FF; 4 | font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 5 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 6 | sans-serif; 7 | -webkit-font-smoothing: antialiased; 8 | -moz-osx-font-smoothing: grayscale; 9 | } 10 | 11 | html, body { 12 | min-height: 100vh; 13 | height: 100%; 14 | } 15 | 16 | #root { 17 | height: 100%; 18 | max-width: 480px; 19 | margin: auto; 20 | display: flex; 21 | align-items: center; 22 | justify-content: center; 23 | } 24 | 25 | * { 26 | box-sizing: border-box; 27 | margin: 0; 28 | } 29 | 30 | main { 31 | background-color: white; 32 | padding: 24px; 33 | border-radius: 36px; 34 | display: flex; 35 | align-items: center; 36 | justify-content: center; 37 | flex-direction: column; 38 | gap: 24px; 39 | } 40 | 41 | h1 { 42 | font-size: 48px; 43 | } 44 | 45 | p { 46 | font-size: 24px; 47 | } 48 | 49 | input { 50 | border-radius: 48px; 51 | height: 48px; 52 | border: none; 53 | box-shadow: 0 0 10px rgba(0,0,150,0.15); 54 | padding: 0 24px; 55 | font-size: 16px;; 56 | } 57 | 58 | select { 59 | appearance: none; 60 | border-radius: 48px; 61 | height: 48px; 62 | border: none; 63 | box-shadow: 0 0 10px rgba(0,0,150,0.15); 64 | padding: 0 24px; 65 | font-size: 16px; 66 | } 67 | 68 | ul { 69 | padding: 0; 70 | list-style: none; 71 | } 72 | 73 | li { 74 | display: flex; 75 | gap: 12px; 76 | } 77 | 78 | li:not(:last-of-type) { 79 | margin-bottom: 12px; 80 | } 81 | 82 | button { 83 | cursor: pointer; 84 | border-radius: 48px; 85 | height: 48px; 86 | background-color: tomato; 87 | font-size: 20px; 88 | padding: 0 24px; 89 | border: none; 90 | color: white; 91 | } 92 | -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import ReactDOM from "react-dom"; 3 | 4 | import App from "./App"; 5 | 6 | import "./index.css"; 7 | 8 | ReactDOM.render( 9 | 10 | 11 | , 12 | document.getElementById("root"), 13 | ); 14 | -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ESNext", 4 | "useDefineForClassFields": true, 5 | "lib": ["DOM", "DOM.Iterable", "ESNext"], 6 | "allowJs": false, 7 | "skipLibCheck": false, 8 | "esModuleInterop": false, 9 | "allowSyntheticDefaultImports": true, 10 | "strict": true, 11 | "forceConsistentCasingInFileNames": true, 12 | "module": "ESNext", 13 | "moduleResolution": "Node", 14 | "resolveJsonModule": true, 15 | "isolatedModules": true, 16 | "noEmit": true, 17 | "jsx": "react-jsx" 18 | }, 19 | "include": ["src"], 20 | "references": [{ "path": "./tsconfig.node.json" }] 21 | } 22 | -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "esnext", 5 | "moduleResolution": "node" 6 | }, 7 | "include": ["vite.config.ts"] 8 | } 9 | -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import react from '@vitejs/plugin-react' 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()] 7 | }) 8 | --------------------------------------------------------------------------------