├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .vscode └── settings.json ├── README.md ├── components.json ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── prettier.config.js ├── prisma └── schema.prisma ├── public ├── next.svg └── vercel.svg ├── src ├── app │ ├── _components │ │ ├── save-todo.tsx │ │ ├── submit-todo.tsx │ │ ├── todo-form.tsx │ │ └── todo-item.tsx │ ├── actions │ │ ├── createTodo.ts │ │ ├── deleteTodo.ts │ │ └── updateTodo.ts │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── page.tsx │ └── todo │ │ └── [id] │ │ ├── _components │ │ └── edit-todo-form.tsx │ │ ├── not-found.tsx │ │ └── page.tsx ├── components │ └── ui │ │ ├── button.tsx │ │ └── input.tsx └── lib │ ├── prisma.ts │ └── utils.ts ├── tailwind.config.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | end_of_line = lf 7 | indent_size = 2 8 | indent_style = space 9 | insert_final_newline = true 10 | trim_trailing_whitespace = true -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | .cache 3 | public 4 | node_modules 5 | *.esm.js -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://json.schemastore.org/eslintrc", 3 | "root": true, 4 | "extends": [ 5 | "next/core-web-vitals", 6 | "prettier", 7 | "plugin:tailwindcss/recommended" 8 | ], 9 | "plugins": ["tailwindcss"], 10 | "rules": { 11 | "@next/next/no-html-link-for-pages": "off", 12 | "tailwindcss/no-custom-classname": "off" 13 | }, 14 | "settings": { 15 | "tailwindcss": { 16 | "callees": ["cn"], 17 | "config": "tailwind.config.js" 18 | }, 19 | "next": { 20 | "rootDir": ["./src/"] 21 | } 22 | }, 23 | "overrides": [ 24 | { 25 | "files": ["*.ts", "*.tsx"], 26 | "parser": "@typescript-eslint/parser" 27 | } 28 | ] 29 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | .yarn/install-state.gz 8 | 9 | # testing 10 | /coverage 11 | 12 | # next.js 13 | /.next/ 14 | /out/ 15 | 16 | # production 17 | /build 18 | 19 | # misc 20 | .DS_Store 21 | *.pem 22 | 23 | # debug 24 | npm-debug.log* 25 | yarn-debug.log* 26 | yarn-error.log* 27 | 28 | # local env files 29 | .env*.local 30 | .env 31 | 32 | # vercel 33 | .vercel 34 | 35 | # typescript 36 | *.tsbuildinfo 37 | next-env.d.ts 38 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | cache 2 | .cache 3 | package.json 4 | package-lock.json 5 | public 6 | .yarn 7 | dist 8 | node_modules 9 | .next 10 | build -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true, 3 | "editor.codeActionsOnSave": { 4 | "source.fixAll.eslint": true 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). 2 | 3 | ## Getting Started 4 | 5 | First, run the development server: 6 | 7 | ```bash 8 | pnpm dev 9 | ``` 10 | 11 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. 12 | 13 | - UI generated using V0: https://v0.dev/t/6vAV7GEo1FZ 14 | - Uses Next.js 14 with Server Actions, app entirely works with JavaScript being disabled 15 | - Uses PlanetScale mysql serverless db with Prisma as the ORM 16 | -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://ui.shadcn.com/schema.json", 3 | "style": "default", 4 | "rsc": true, 5 | "tsx": true, 6 | "tailwind": { 7 | "config": "tailwind.config.js", 8 | "css": "src/app/globals.css", 9 | "baseColor": "slate", 10 | "cssVariables": true 11 | }, 12 | "aliases": { 13 | "components": "@/components", 14 | "utils": "@/lib/utils" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = {} 3 | 4 | module.exports = nextConfig 5 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "todo-app", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "@prisma/client": "5.5.2", 13 | "@radix-ui/react-slot": "^1.0.2", 14 | "class-variance-authority": "^0.7.0", 15 | "clsx": "^2.0.0", 16 | "lucide-react": "^0.292.0", 17 | "next": "14.0.2", 18 | "react": "^18", 19 | "react-dom": "^18", 20 | "tailwind-merge": "^2.0.0", 21 | "tailwindcss-animate": "^1.0.7" 22 | }, 23 | "devDependencies": { 24 | "@ianvs/prettier-plugin-sort-imports": "^4.1.1", 25 | "@types/node": "^20.9.0", 26 | "@types/react": "^18", 27 | "@types/react-dom": "^18", 28 | "autoprefixer": "^10.0.1", 29 | "eslint": "^8", 30 | "eslint-config-next": "14.0.2", 31 | "eslint-config-prettier": "^9.0.0", 32 | "eslint-plugin-react": "^7.33.2", 33 | "eslint-plugin-tailwindcss": "^3.13.0", 34 | "postcss": "^8", 35 | "prettier": "^3.0.3", 36 | "pretty-quick": "^3.1.3", 37 | "prisma": "^5.5.2", 38 | "tailwindcss": "^3.3.0", 39 | "typescript": "^5.2.2" 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '6.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | dependencies: 8 | '@prisma/client': 9 | specifier: 5.5.2 10 | version: 5.5.2(prisma@5.5.2) 11 | '@radix-ui/react-slot': 12 | specifier: ^1.0.2 13 | version: 1.0.2(@types/react@18.2.37)(react@18.2.0) 14 | class-variance-authority: 15 | specifier: ^0.7.0 16 | version: 0.7.0 17 | clsx: 18 | specifier: ^2.0.0 19 | version: 2.0.0 20 | lucide-react: 21 | specifier: ^0.292.0 22 | version: 0.292.0(react@18.2.0) 23 | next: 24 | specifier: 14.0.2 25 | version: 14.0.2(@babel/core@7.23.3)(react-dom@18.2.0)(react@18.2.0) 26 | react: 27 | specifier: ^18 28 | version: 18.2.0 29 | react-dom: 30 | specifier: ^18 31 | version: 18.2.0(react@18.2.0) 32 | tailwind-merge: 33 | specifier: ^2.0.0 34 | version: 2.0.0 35 | tailwindcss-animate: 36 | specifier: ^1.0.7 37 | version: 1.0.7(tailwindcss@3.3.5) 38 | 39 | devDependencies: 40 | '@ianvs/prettier-plugin-sort-imports': 41 | specifier: ^4.1.1 42 | version: 4.1.1(prettier@3.0.3) 43 | '@types/node': 44 | specifier: ^20.9.0 45 | version: 20.9.0 46 | '@types/react': 47 | specifier: ^18 48 | version: 18.2.37 49 | '@types/react-dom': 50 | specifier: ^18 51 | version: 18.2.15 52 | autoprefixer: 53 | specifier: ^10.0.1 54 | version: 10.4.16(postcss@8.4.31) 55 | eslint: 56 | specifier: ^8 57 | version: 8.53.0 58 | eslint-config-next: 59 | specifier: 14.0.2 60 | version: 14.0.2(eslint@8.53.0)(typescript@5.2.2) 61 | eslint-config-prettier: 62 | specifier: ^9.0.0 63 | version: 9.0.0(eslint@8.53.0) 64 | eslint-plugin-react: 65 | specifier: ^7.33.2 66 | version: 7.33.2(eslint@8.53.0) 67 | eslint-plugin-tailwindcss: 68 | specifier: ^3.13.0 69 | version: 3.13.0(tailwindcss@3.3.5) 70 | postcss: 71 | specifier: ^8 72 | version: 8.4.31 73 | prettier: 74 | specifier: ^3.0.3 75 | version: 3.0.3 76 | pretty-quick: 77 | specifier: ^3.1.3 78 | version: 3.1.3(prettier@3.0.3) 79 | prisma: 80 | specifier: ^5.5.2 81 | version: 5.5.2 82 | tailwindcss: 83 | specifier: ^3.3.0 84 | version: 3.3.5 85 | typescript: 86 | specifier: ^5.2.2 87 | version: 5.2.2 88 | 89 | packages: 90 | 91 | /@aashutoshrathi/word-wrap@1.2.6: 92 | resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} 93 | engines: {node: '>=0.10.0'} 94 | dev: true 95 | 96 | /@alloc/quick-lru@5.2.0: 97 | resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} 98 | engines: {node: '>=10'} 99 | 100 | /@ampproject/remapping@2.2.1: 101 | resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} 102 | engines: {node: '>=6.0.0'} 103 | dependencies: 104 | '@jridgewell/gen-mapping': 0.3.3 105 | '@jridgewell/trace-mapping': 0.3.20 106 | 107 | /@babel/code-frame@7.22.13: 108 | resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==} 109 | engines: {node: '>=6.9.0'} 110 | dependencies: 111 | '@babel/highlight': 7.22.20 112 | chalk: 2.4.2 113 | 114 | /@babel/compat-data@7.23.3: 115 | resolution: {integrity: sha512-BmR4bWbDIoFJmJ9z2cZ8Gmm2MXgEDgjdWgpKmKWUt54UGFJdlj31ECtbaDvCG/qVdG3AQ1SfpZEs01lUFbzLOQ==} 116 | engines: {node: '>=6.9.0'} 117 | 118 | /@babel/core@7.23.3: 119 | resolution: {integrity: sha512-Jg+msLuNuCJDyBvFv5+OKOUjWMZgd85bKjbICd3zWrKAo+bJ49HJufi7CQE0q0uR8NGyO6xkCACScNqyjHSZew==} 120 | engines: {node: '>=6.9.0'} 121 | dependencies: 122 | '@ampproject/remapping': 2.2.1 123 | '@babel/code-frame': 7.22.13 124 | '@babel/generator': 7.23.3 125 | '@babel/helper-compilation-targets': 7.22.15 126 | '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3) 127 | '@babel/helpers': 7.23.2 128 | '@babel/parser': 7.23.3 129 | '@babel/template': 7.22.15 130 | '@babel/traverse': 7.23.3 131 | '@babel/types': 7.23.3 132 | convert-source-map: 2.0.0 133 | debug: 4.3.4 134 | gensync: 1.0.0-beta.2 135 | json5: 2.2.3 136 | semver: 6.3.1 137 | transitivePeerDependencies: 138 | - supports-color 139 | 140 | /@babel/generator@7.23.3: 141 | resolution: {integrity: sha512-keeZWAV4LU3tW0qRi19HRpabC/ilM0HRBBzf9/k8FFiG4KVpiv0FIy4hHfLfFQZNhziCTPTmd59zoyv6DNISzg==} 142 | engines: {node: '>=6.9.0'} 143 | dependencies: 144 | '@babel/types': 7.23.3 145 | '@jridgewell/gen-mapping': 0.3.3 146 | '@jridgewell/trace-mapping': 0.3.20 147 | jsesc: 2.5.2 148 | 149 | /@babel/helper-compilation-targets@7.22.15: 150 | resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==} 151 | engines: {node: '>=6.9.0'} 152 | dependencies: 153 | '@babel/compat-data': 7.23.3 154 | '@babel/helper-validator-option': 7.22.15 155 | browserslist: 4.22.1 156 | lru-cache: 5.1.1 157 | semver: 6.3.1 158 | 159 | /@babel/helper-environment-visitor@7.22.20: 160 | resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} 161 | engines: {node: '>=6.9.0'} 162 | 163 | /@babel/helper-function-name@7.23.0: 164 | resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} 165 | engines: {node: '>=6.9.0'} 166 | dependencies: 167 | '@babel/template': 7.22.15 168 | '@babel/types': 7.23.3 169 | 170 | /@babel/helper-hoist-variables@7.22.5: 171 | resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} 172 | engines: {node: '>=6.9.0'} 173 | dependencies: 174 | '@babel/types': 7.23.3 175 | 176 | /@babel/helper-module-imports@7.22.15: 177 | resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} 178 | engines: {node: '>=6.9.0'} 179 | dependencies: 180 | '@babel/types': 7.23.3 181 | 182 | /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.3): 183 | resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} 184 | engines: {node: '>=6.9.0'} 185 | peerDependencies: 186 | '@babel/core': ^7.0.0 187 | dependencies: 188 | '@babel/core': 7.23.3 189 | '@babel/helper-environment-visitor': 7.22.20 190 | '@babel/helper-module-imports': 7.22.15 191 | '@babel/helper-simple-access': 7.22.5 192 | '@babel/helper-split-export-declaration': 7.22.6 193 | '@babel/helper-validator-identifier': 7.22.20 194 | 195 | /@babel/helper-simple-access@7.22.5: 196 | resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} 197 | engines: {node: '>=6.9.0'} 198 | dependencies: 199 | '@babel/types': 7.23.3 200 | 201 | /@babel/helper-split-export-declaration@7.22.6: 202 | resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} 203 | engines: {node: '>=6.9.0'} 204 | dependencies: 205 | '@babel/types': 7.23.3 206 | 207 | /@babel/helper-string-parser@7.22.5: 208 | resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} 209 | engines: {node: '>=6.9.0'} 210 | 211 | /@babel/helper-validator-identifier@7.22.20: 212 | resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} 213 | engines: {node: '>=6.9.0'} 214 | 215 | /@babel/helper-validator-option@7.22.15: 216 | resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==} 217 | engines: {node: '>=6.9.0'} 218 | 219 | /@babel/helpers@7.23.2: 220 | resolution: {integrity: sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==} 221 | engines: {node: '>=6.9.0'} 222 | dependencies: 223 | '@babel/template': 7.22.15 224 | '@babel/traverse': 7.23.3 225 | '@babel/types': 7.23.3 226 | transitivePeerDependencies: 227 | - supports-color 228 | 229 | /@babel/highlight@7.22.20: 230 | resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==} 231 | engines: {node: '>=6.9.0'} 232 | dependencies: 233 | '@babel/helper-validator-identifier': 7.22.20 234 | chalk: 2.4.2 235 | js-tokens: 4.0.0 236 | 237 | /@babel/parser@7.23.3: 238 | resolution: {integrity: sha512-uVsWNvlVsIninV2prNz/3lHCb+5CJ+e+IUBfbjToAHODtfGYLfCFuY4AU7TskI+dAKk+njsPiBjq1gKTvZOBaw==} 239 | engines: {node: '>=6.0.0'} 240 | hasBin: true 241 | dependencies: 242 | '@babel/types': 7.23.3 243 | 244 | /@babel/runtime@7.23.2: 245 | resolution: {integrity: sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==} 246 | engines: {node: '>=6.9.0'} 247 | dependencies: 248 | regenerator-runtime: 0.14.0 249 | 250 | /@babel/template@7.22.15: 251 | resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} 252 | engines: {node: '>=6.9.0'} 253 | dependencies: 254 | '@babel/code-frame': 7.22.13 255 | '@babel/parser': 7.23.3 256 | '@babel/types': 7.23.3 257 | 258 | /@babel/traverse@7.23.3: 259 | resolution: {integrity: sha512-+K0yF1/9yR0oHdE0StHuEj3uTPzwwbrLGfNOndVJVV2TqA5+j3oljJUb4nmB954FLGjNem976+B+eDuLIjesiQ==} 260 | engines: {node: '>=6.9.0'} 261 | dependencies: 262 | '@babel/code-frame': 7.22.13 263 | '@babel/generator': 7.23.3 264 | '@babel/helper-environment-visitor': 7.22.20 265 | '@babel/helper-function-name': 7.23.0 266 | '@babel/helper-hoist-variables': 7.22.5 267 | '@babel/helper-split-export-declaration': 7.22.6 268 | '@babel/parser': 7.23.3 269 | '@babel/types': 7.23.3 270 | debug: 4.3.4 271 | globals: 11.12.0 272 | transitivePeerDependencies: 273 | - supports-color 274 | 275 | /@babel/types@7.23.3: 276 | resolution: {integrity: sha512-OZnvoH2l8PK5eUvEcUyCt/sXgr/h+UWpVuBbOljwcrAgUl6lpchoQ++PHGyQy1AtYnVA6CEq3y5xeEI10brpXw==} 277 | engines: {node: '>=6.9.0'} 278 | dependencies: 279 | '@babel/helper-string-parser': 7.22.5 280 | '@babel/helper-validator-identifier': 7.22.20 281 | to-fast-properties: 2.0.0 282 | 283 | /@eslint-community/eslint-utils@4.4.0(eslint@8.53.0): 284 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 285 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 286 | peerDependencies: 287 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 288 | dependencies: 289 | eslint: 8.53.0 290 | eslint-visitor-keys: 3.4.3 291 | dev: true 292 | 293 | /@eslint-community/regexpp@4.10.0: 294 | resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} 295 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 296 | dev: true 297 | 298 | /@eslint/eslintrc@2.1.3: 299 | resolution: {integrity: sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==} 300 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 301 | dependencies: 302 | ajv: 6.12.6 303 | debug: 4.3.4 304 | espree: 9.6.1 305 | globals: 13.23.0 306 | ignore: 5.2.4 307 | import-fresh: 3.3.0 308 | js-yaml: 4.1.0 309 | minimatch: 3.1.2 310 | strip-json-comments: 3.1.1 311 | transitivePeerDependencies: 312 | - supports-color 313 | dev: true 314 | 315 | /@eslint/js@8.53.0: 316 | resolution: {integrity: sha512-Kn7K8dx/5U6+cT1yEhpX1w4PCSg0M+XyRILPgvwcEBjerFWCwQj5sbr3/VmxqV0JGHCBCzyd6LxypEuehypY1w==} 317 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 318 | dev: true 319 | 320 | /@humanwhocodes/config-array@0.11.13: 321 | resolution: {integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==} 322 | engines: {node: '>=10.10.0'} 323 | dependencies: 324 | '@humanwhocodes/object-schema': 2.0.1 325 | debug: 4.3.4 326 | minimatch: 3.1.2 327 | transitivePeerDependencies: 328 | - supports-color 329 | dev: true 330 | 331 | /@humanwhocodes/module-importer@1.0.1: 332 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 333 | engines: {node: '>=12.22'} 334 | dev: true 335 | 336 | /@humanwhocodes/object-schema@2.0.1: 337 | resolution: {integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==} 338 | dev: true 339 | 340 | /@ianvs/prettier-plugin-sort-imports@4.1.1(prettier@3.0.3): 341 | resolution: {integrity: sha512-kJhXq63ngpTQ2dxgf5GasbPJWsJA3LgoOdd7WGhpUSzLgLgI4IsIzYkbJf9kmpOHe7Vdm/o3PcRA3jmizXUuAQ==} 342 | peerDependencies: 343 | '@vue/compiler-sfc': '>=3.0.0' 344 | prettier: 2 || 3 345 | peerDependenciesMeta: 346 | '@vue/compiler-sfc': 347 | optional: true 348 | dependencies: 349 | '@babel/core': 7.23.3 350 | '@babel/generator': 7.23.3 351 | '@babel/parser': 7.23.3 352 | '@babel/traverse': 7.23.3 353 | '@babel/types': 7.23.3 354 | prettier: 3.0.3 355 | semver: 7.5.4 356 | transitivePeerDependencies: 357 | - supports-color 358 | dev: true 359 | 360 | /@jridgewell/gen-mapping@0.3.3: 361 | resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} 362 | engines: {node: '>=6.0.0'} 363 | dependencies: 364 | '@jridgewell/set-array': 1.1.2 365 | '@jridgewell/sourcemap-codec': 1.4.15 366 | '@jridgewell/trace-mapping': 0.3.20 367 | 368 | /@jridgewell/resolve-uri@3.1.1: 369 | resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} 370 | engines: {node: '>=6.0.0'} 371 | 372 | /@jridgewell/set-array@1.1.2: 373 | resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} 374 | engines: {node: '>=6.0.0'} 375 | 376 | /@jridgewell/sourcemap-codec@1.4.15: 377 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} 378 | 379 | /@jridgewell/trace-mapping@0.3.20: 380 | resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==} 381 | dependencies: 382 | '@jridgewell/resolve-uri': 3.1.1 383 | '@jridgewell/sourcemap-codec': 1.4.15 384 | 385 | /@next/env@14.0.2: 386 | resolution: {integrity: sha512-HAW1sljizEaduEOes/m84oUqeIDAUYBR1CDwu2tobNlNDFP3cSm9d6QsOsGeNlIppU1p/p1+bWbYCbvwjFiceA==} 387 | dev: false 388 | 389 | /@next/eslint-plugin-next@14.0.2: 390 | resolution: {integrity: sha512-APrYFsXfAhnysycqxHcpg6Y4i7Ukp30GzVSZQRKT3OczbzkqGjt33vNhScmgoOXYBU1CfkwgtXmNxdiwv1jKmg==} 391 | dependencies: 392 | glob: 7.1.7 393 | dev: true 394 | 395 | /@next/swc-darwin-arm64@14.0.2: 396 | resolution: {integrity: sha512-i+jQY0fOb8L5gvGvojWyZMfQoQtDVB2kYe7fufOEiST6sicvzI2W5/EXo4lX5bLUjapHKe+nFxuVv7BA+Pd7LQ==} 397 | engines: {node: '>= 10'} 398 | cpu: [arm64] 399 | os: [darwin] 400 | requiresBuild: true 401 | dev: false 402 | optional: true 403 | 404 | /@next/swc-darwin-x64@14.0.2: 405 | resolution: {integrity: sha512-zRCAO0d2hW6gBEa4wJaLn+gY8qtIqD3gYd9NjruuN98OCI6YyelmhWVVLlREjS7RYrm9OUQIp/iVJFeB6kP1hg==} 406 | engines: {node: '>= 10'} 407 | cpu: [x64] 408 | os: [darwin] 409 | requiresBuild: true 410 | dev: false 411 | optional: true 412 | 413 | /@next/swc-linux-arm64-gnu@14.0.2: 414 | resolution: {integrity: sha512-tSJmiaon8YaKsVhi7GgRizZoV0N1Sx5+i+hFTrCKKQN7s3tuqW0Rov+RYdPhAv/pJl4qiG+XfSX4eJXqpNg3dA==} 415 | engines: {node: '>= 10'} 416 | cpu: [arm64] 417 | os: [linux] 418 | requiresBuild: true 419 | dev: false 420 | optional: true 421 | 422 | /@next/swc-linux-arm64-musl@14.0.2: 423 | resolution: {integrity: sha512-dXJLMSEOwqJKcag1BeX1C+ekdPPJ9yXbWIt3nAadhbLx5CjACoB2NQj9Xcqu2tmdr5L6m34fR+fjGPs+ZVPLzA==} 424 | engines: {node: '>= 10'} 425 | cpu: [arm64] 426 | os: [linux] 427 | requiresBuild: true 428 | dev: false 429 | optional: true 430 | 431 | /@next/swc-linux-x64-gnu@14.0.2: 432 | resolution: {integrity: sha512-WC9KAPSowj6as76P3vf1J3mf2QTm3Wv3FBzQi7UJ+dxWjK3MhHVWsWUo24AnmHx9qDcEtHM58okgZkXVqeLB+Q==} 433 | engines: {node: '>= 10'} 434 | cpu: [x64] 435 | os: [linux] 436 | requiresBuild: true 437 | dev: false 438 | optional: true 439 | 440 | /@next/swc-linux-x64-musl@14.0.2: 441 | resolution: {integrity: sha512-KSSAwvUcjtdZY4zJFa2f5VNJIwuEVnOSlqYqbQIawREJA+gUI6egeiRu290pXioQXnQHYYdXmnVNZ4M+VMB7KQ==} 442 | engines: {node: '>= 10'} 443 | cpu: [x64] 444 | os: [linux] 445 | requiresBuild: true 446 | dev: false 447 | optional: true 448 | 449 | /@next/swc-win32-arm64-msvc@14.0.2: 450 | resolution: {integrity: sha512-2/O0F1SqJ0bD3zqNuYge0ok7OEWCQwk55RPheDYD0va5ij7kYwrFkq5ycCRN0TLjLfxSF6xI5NM6nC5ux7svEQ==} 451 | engines: {node: '>= 10'} 452 | cpu: [arm64] 453 | os: [win32] 454 | requiresBuild: true 455 | dev: false 456 | optional: true 457 | 458 | /@next/swc-win32-ia32-msvc@14.0.2: 459 | resolution: {integrity: sha512-vJI/x70Id0oN4Bq/R6byBqV1/NS5Dl31zC+lowO8SDu1fHmUxoAdILZR5X/sKbiJpuvKcCrwbYgJU8FF/Gh50Q==} 460 | engines: {node: '>= 10'} 461 | cpu: [ia32] 462 | os: [win32] 463 | requiresBuild: true 464 | dev: false 465 | optional: true 466 | 467 | /@next/swc-win32-x64-msvc@14.0.2: 468 | resolution: {integrity: sha512-Ut4LXIUvC5m8pHTe2j0vq/YDnTEyq6RSR9vHYPqnELrDapPhLNz9Od/L5Ow3J8RNDWpEnfCiQXuVdfjlNEJ7ug==} 469 | engines: {node: '>= 10'} 470 | cpu: [x64] 471 | os: [win32] 472 | requiresBuild: true 473 | dev: false 474 | optional: true 475 | 476 | /@nodelib/fs.scandir@2.1.5: 477 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 478 | engines: {node: '>= 8'} 479 | dependencies: 480 | '@nodelib/fs.stat': 2.0.5 481 | run-parallel: 1.2.0 482 | 483 | /@nodelib/fs.stat@2.0.5: 484 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 485 | engines: {node: '>= 8'} 486 | 487 | /@nodelib/fs.walk@1.2.8: 488 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 489 | engines: {node: '>= 8'} 490 | dependencies: 491 | '@nodelib/fs.scandir': 2.1.5 492 | fastq: 1.15.0 493 | 494 | /@prisma/client@5.5.2(prisma@5.5.2): 495 | resolution: {integrity: sha512-54XkqR8M+fxbzYqe+bIXimYnkkcGqgOh0dn0yWtIk6CQT4IUCAvNFNcQZwk2KqaLU+/1PHTSWrcHtx4XjluR5w==} 496 | engines: {node: '>=16.13'} 497 | requiresBuild: true 498 | peerDependencies: 499 | prisma: '*' 500 | peerDependenciesMeta: 501 | prisma: 502 | optional: true 503 | dependencies: 504 | '@prisma/engines-version': 5.5.1-1.aebc046ce8b88ebbcb45efe31cbe7d06fd6abc0a 505 | prisma: 5.5.2 506 | dev: false 507 | 508 | /@prisma/engines-version@5.5.1-1.aebc046ce8b88ebbcb45efe31cbe7d06fd6abc0a: 509 | resolution: {integrity: sha512-O+qHFnZvAyOFk1tUco2/VdiqS0ym42a3+6CYLScllmnpbyiTplgyLt2rK/B9BTjYkSHjrgMhkG47S0oqzdIckA==} 510 | dev: false 511 | 512 | /@prisma/engines@5.5.2: 513 | resolution: {integrity: sha512-Be5hoNF8k+lkB3uEMiCHbhbfF6aj1GnrTBnn5iYFT7GEr3TsOEp1soviEcBR0tYCgHbxjcIxJMhdbvxALJhAqg==} 514 | requiresBuild: true 515 | 516 | /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.37)(react@18.2.0): 517 | resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==} 518 | peerDependencies: 519 | '@types/react': '*' 520 | react: ^16.8 || ^17.0 || ^18.0 521 | peerDependenciesMeta: 522 | '@types/react': 523 | optional: true 524 | dependencies: 525 | '@babel/runtime': 7.23.2 526 | '@types/react': 18.2.37 527 | react: 18.2.0 528 | dev: false 529 | 530 | /@radix-ui/react-slot@1.0.2(@types/react@18.2.37)(react@18.2.0): 531 | resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==} 532 | peerDependencies: 533 | '@types/react': '*' 534 | react: ^16.8 || ^17.0 || ^18.0 535 | peerDependenciesMeta: 536 | '@types/react': 537 | optional: true 538 | dependencies: 539 | '@babel/runtime': 7.23.2 540 | '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0) 541 | '@types/react': 18.2.37 542 | react: 18.2.0 543 | dev: false 544 | 545 | /@rushstack/eslint-patch@1.5.1: 546 | resolution: {integrity: sha512-6i/8UoL0P5y4leBIGzvkZdS85RDMG9y1ihZzmTZQ5LdHUYmZ7pKFoj8X0236s3lusPs1Fa5HTQUpwI+UfTcmeA==} 547 | dev: true 548 | 549 | /@swc/helpers@0.5.2: 550 | resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==} 551 | dependencies: 552 | tslib: 2.6.2 553 | dev: false 554 | 555 | /@types/json5@0.0.29: 556 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 557 | dev: true 558 | 559 | /@types/minimatch@3.0.5: 560 | resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} 561 | dev: true 562 | 563 | /@types/node@20.9.0: 564 | resolution: {integrity: sha512-nekiGu2NDb1BcVofVcEKMIwzlx4NjHlcjhoxxKBNLtz15Y1z7MYf549DFvkHSId02Ax6kGwWntIBPC3l/JZcmw==} 565 | dependencies: 566 | undici-types: 5.26.5 567 | dev: true 568 | 569 | /@types/prop-types@15.7.10: 570 | resolution: {integrity: sha512-mxSnDQxPqsZxmeShFH+uwQ4kO4gcJcGahjjMFeLbKE95IAZiiZyiEepGZjtXJ7hN/yfu0bu9xN2ajcU0JcxX6A==} 571 | 572 | /@types/react-dom@18.2.15: 573 | resolution: {integrity: sha512-HWMdW+7r7MR5+PZqJF6YFNSCtjz1T0dsvo/f1BV6HkV+6erD/nA7wd9NM00KVG83zf2nJ7uATPO9ttdIPvi3gg==} 574 | dependencies: 575 | '@types/react': 18.2.37 576 | dev: true 577 | 578 | /@types/react@18.2.37: 579 | resolution: {integrity: sha512-RGAYMi2bhRgEXT3f4B92WTohopH6bIXw05FuGlmJEnv/omEn190+QYEIYxIAuIBdKgboYYdVved2p1AxZVQnaw==} 580 | dependencies: 581 | '@types/prop-types': 15.7.10 582 | '@types/scheduler': 0.16.6 583 | csstype: 3.1.2 584 | 585 | /@types/scheduler@0.16.6: 586 | resolution: {integrity: sha512-Vlktnchmkylvc9SnwwwozTv04L/e1NykF5vgoQ0XTmI8DD+wxfjQuHuvHS3p0r2jz2x2ghPs2h1FVeDirIteWA==} 587 | 588 | /@typescript-eslint/parser@6.10.0(eslint@8.53.0)(typescript@5.2.2): 589 | resolution: {integrity: sha512-+sZwIj+s+io9ozSxIWbNB5873OSdfeBEH/FR0re14WLI6BaKuSOnnwCJ2foUiu8uXf4dRp1UqHP0vrZ1zXGrog==} 590 | engines: {node: ^16.0.0 || >=18.0.0} 591 | peerDependencies: 592 | eslint: ^7.0.0 || ^8.0.0 593 | typescript: '*' 594 | peerDependenciesMeta: 595 | typescript: 596 | optional: true 597 | dependencies: 598 | '@typescript-eslint/scope-manager': 6.10.0 599 | '@typescript-eslint/types': 6.10.0 600 | '@typescript-eslint/typescript-estree': 6.10.0(typescript@5.2.2) 601 | '@typescript-eslint/visitor-keys': 6.10.0 602 | debug: 4.3.4 603 | eslint: 8.53.0 604 | typescript: 5.2.2 605 | transitivePeerDependencies: 606 | - supports-color 607 | dev: true 608 | 609 | /@typescript-eslint/scope-manager@6.10.0: 610 | resolution: {integrity: sha512-TN/plV7dzqqC2iPNf1KrxozDgZs53Gfgg5ZHyw8erd6jd5Ta/JIEcdCheXFt9b1NYb93a1wmIIVW/2gLkombDg==} 611 | engines: {node: ^16.0.0 || >=18.0.0} 612 | dependencies: 613 | '@typescript-eslint/types': 6.10.0 614 | '@typescript-eslint/visitor-keys': 6.10.0 615 | dev: true 616 | 617 | /@typescript-eslint/types@6.10.0: 618 | resolution: {integrity: sha512-36Fq1PWh9dusgo3vH7qmQAj5/AZqARky1Wi6WpINxB6SkQdY5vQoT2/7rW7uBIsPDcvvGCLi4r10p0OJ7ITAeg==} 619 | engines: {node: ^16.0.0 || >=18.0.0} 620 | dev: true 621 | 622 | /@typescript-eslint/typescript-estree@6.10.0(typescript@5.2.2): 623 | resolution: {integrity: sha512-ek0Eyuy6P15LJVeghbWhSrBCj/vJpPXXR+EpaRZqou7achUWL8IdYnMSC5WHAeTWswYQuP2hAZgij/bC9fanBg==} 624 | engines: {node: ^16.0.0 || >=18.0.0} 625 | peerDependencies: 626 | typescript: '*' 627 | peerDependenciesMeta: 628 | typescript: 629 | optional: true 630 | dependencies: 631 | '@typescript-eslint/types': 6.10.0 632 | '@typescript-eslint/visitor-keys': 6.10.0 633 | debug: 4.3.4 634 | globby: 11.1.0 635 | is-glob: 4.0.3 636 | semver: 7.5.4 637 | ts-api-utils: 1.0.3(typescript@5.2.2) 638 | typescript: 5.2.2 639 | transitivePeerDependencies: 640 | - supports-color 641 | dev: true 642 | 643 | /@typescript-eslint/visitor-keys@6.10.0: 644 | resolution: {integrity: sha512-xMGluxQIEtOM7bqFCo+rCMh5fqI+ZxV5RUUOa29iVPz1OgCZrtc7rFnz5cLUazlkPKYqX+75iuDq7m0HQ48nCg==} 645 | engines: {node: ^16.0.0 || >=18.0.0} 646 | dependencies: 647 | '@typescript-eslint/types': 6.10.0 648 | eslint-visitor-keys: 3.4.3 649 | dev: true 650 | 651 | /@ungap/structured-clone@1.2.0: 652 | resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} 653 | dev: true 654 | 655 | /acorn-jsx@5.3.2(acorn@8.11.2): 656 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 657 | peerDependencies: 658 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 659 | dependencies: 660 | acorn: 8.11.2 661 | dev: true 662 | 663 | /acorn@8.11.2: 664 | resolution: {integrity: sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==} 665 | engines: {node: '>=0.4.0'} 666 | hasBin: true 667 | dev: true 668 | 669 | /ajv@6.12.6: 670 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 671 | dependencies: 672 | fast-deep-equal: 3.1.3 673 | fast-json-stable-stringify: 2.1.0 674 | json-schema-traverse: 0.4.1 675 | uri-js: 4.4.1 676 | dev: true 677 | 678 | /ansi-regex@5.0.1: 679 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 680 | engines: {node: '>=8'} 681 | dev: true 682 | 683 | /ansi-styles@3.2.1: 684 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} 685 | engines: {node: '>=4'} 686 | dependencies: 687 | color-convert: 1.9.3 688 | 689 | /ansi-styles@4.3.0: 690 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 691 | engines: {node: '>=8'} 692 | dependencies: 693 | color-convert: 2.0.1 694 | dev: true 695 | 696 | /any-promise@1.3.0: 697 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} 698 | 699 | /anymatch@3.1.3: 700 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 701 | engines: {node: '>= 8'} 702 | dependencies: 703 | normalize-path: 3.0.0 704 | picomatch: 2.3.1 705 | 706 | /arg@5.0.2: 707 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} 708 | 709 | /argparse@2.0.1: 710 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 711 | dev: true 712 | 713 | /aria-query@5.3.0: 714 | resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} 715 | dependencies: 716 | dequal: 2.0.3 717 | dev: true 718 | 719 | /array-buffer-byte-length@1.0.0: 720 | resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} 721 | dependencies: 722 | call-bind: 1.0.5 723 | is-array-buffer: 3.0.2 724 | dev: true 725 | 726 | /array-differ@3.0.0: 727 | resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} 728 | engines: {node: '>=8'} 729 | dev: true 730 | 731 | /array-includes@3.1.7: 732 | resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==} 733 | engines: {node: '>= 0.4'} 734 | dependencies: 735 | call-bind: 1.0.5 736 | define-properties: 1.2.1 737 | es-abstract: 1.22.3 738 | get-intrinsic: 1.2.2 739 | is-string: 1.0.7 740 | dev: true 741 | 742 | /array-union@2.1.0: 743 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 744 | engines: {node: '>=8'} 745 | dev: true 746 | 747 | /array.prototype.findlastindex@1.2.3: 748 | resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==} 749 | engines: {node: '>= 0.4'} 750 | dependencies: 751 | call-bind: 1.0.5 752 | define-properties: 1.2.1 753 | es-abstract: 1.22.3 754 | es-shim-unscopables: 1.0.2 755 | get-intrinsic: 1.2.2 756 | dev: true 757 | 758 | /array.prototype.flat@1.3.2: 759 | resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} 760 | engines: {node: '>= 0.4'} 761 | dependencies: 762 | call-bind: 1.0.5 763 | define-properties: 1.2.1 764 | es-abstract: 1.22.3 765 | es-shim-unscopables: 1.0.2 766 | dev: true 767 | 768 | /array.prototype.flatmap@1.3.2: 769 | resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} 770 | engines: {node: '>= 0.4'} 771 | dependencies: 772 | call-bind: 1.0.5 773 | define-properties: 1.2.1 774 | es-abstract: 1.22.3 775 | es-shim-unscopables: 1.0.2 776 | dev: true 777 | 778 | /array.prototype.tosorted@1.1.2: 779 | resolution: {integrity: sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==} 780 | dependencies: 781 | call-bind: 1.0.5 782 | define-properties: 1.2.1 783 | es-abstract: 1.22.3 784 | es-shim-unscopables: 1.0.2 785 | get-intrinsic: 1.2.2 786 | dev: true 787 | 788 | /arraybuffer.prototype.slice@1.0.2: 789 | resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} 790 | engines: {node: '>= 0.4'} 791 | dependencies: 792 | array-buffer-byte-length: 1.0.0 793 | call-bind: 1.0.5 794 | define-properties: 1.2.1 795 | es-abstract: 1.22.3 796 | get-intrinsic: 1.2.2 797 | is-array-buffer: 3.0.2 798 | is-shared-array-buffer: 1.0.2 799 | dev: true 800 | 801 | /arrify@2.0.1: 802 | resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} 803 | engines: {node: '>=8'} 804 | dev: true 805 | 806 | /ast-types-flow@0.0.8: 807 | resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} 808 | dev: true 809 | 810 | /asynciterator.prototype@1.0.0: 811 | resolution: {integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==} 812 | dependencies: 813 | has-symbols: 1.0.3 814 | dev: true 815 | 816 | /autoprefixer@10.4.16(postcss@8.4.31): 817 | resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==} 818 | engines: {node: ^10 || ^12 || >=14} 819 | hasBin: true 820 | peerDependencies: 821 | postcss: ^8.1.0 822 | dependencies: 823 | browserslist: 4.22.1 824 | caniuse-lite: 1.0.30001561 825 | fraction.js: 4.3.7 826 | normalize-range: 0.1.2 827 | picocolors: 1.0.0 828 | postcss: 8.4.31 829 | postcss-value-parser: 4.2.0 830 | dev: true 831 | 832 | /available-typed-arrays@1.0.5: 833 | resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} 834 | engines: {node: '>= 0.4'} 835 | dev: true 836 | 837 | /axe-core@4.7.0: 838 | resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==} 839 | engines: {node: '>=4'} 840 | dev: true 841 | 842 | /axobject-query@3.2.1: 843 | resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==} 844 | dependencies: 845 | dequal: 2.0.3 846 | dev: true 847 | 848 | /balanced-match@1.0.2: 849 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 850 | 851 | /binary-extensions@2.2.0: 852 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} 853 | engines: {node: '>=8'} 854 | 855 | /brace-expansion@1.1.11: 856 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 857 | dependencies: 858 | balanced-match: 1.0.2 859 | concat-map: 0.0.1 860 | 861 | /braces@3.0.2: 862 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 863 | engines: {node: '>=8'} 864 | dependencies: 865 | fill-range: 7.0.1 866 | 867 | /browserslist@4.22.1: 868 | resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==} 869 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 870 | hasBin: true 871 | dependencies: 872 | caniuse-lite: 1.0.30001561 873 | electron-to-chromium: 1.4.580 874 | node-releases: 2.0.13 875 | update-browserslist-db: 1.0.13(browserslist@4.22.1) 876 | 877 | /busboy@1.6.0: 878 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} 879 | engines: {node: '>=10.16.0'} 880 | dependencies: 881 | streamsearch: 1.1.0 882 | dev: false 883 | 884 | /call-bind@1.0.5: 885 | resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} 886 | dependencies: 887 | function-bind: 1.1.2 888 | get-intrinsic: 1.2.2 889 | set-function-length: 1.1.1 890 | dev: true 891 | 892 | /callsites@3.1.0: 893 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 894 | engines: {node: '>=6'} 895 | dev: true 896 | 897 | /camelcase-css@2.0.1: 898 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} 899 | engines: {node: '>= 6'} 900 | 901 | /caniuse-lite@1.0.30001561: 902 | resolution: {integrity: sha512-NTt0DNoKe958Q0BE0j0c1V9jbUzhBxHIEJy7asmGrpE0yG63KTV7PLHPnK2E1O9RsQrQ081I3NLuXGS6zht3cw==} 903 | 904 | /chalk@2.4.2: 905 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} 906 | engines: {node: '>=4'} 907 | dependencies: 908 | ansi-styles: 3.2.1 909 | escape-string-regexp: 1.0.5 910 | supports-color: 5.5.0 911 | 912 | /chalk@3.0.0: 913 | resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} 914 | engines: {node: '>=8'} 915 | dependencies: 916 | ansi-styles: 4.3.0 917 | supports-color: 7.2.0 918 | dev: true 919 | 920 | /chalk@4.1.2: 921 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 922 | engines: {node: '>=10'} 923 | dependencies: 924 | ansi-styles: 4.3.0 925 | supports-color: 7.2.0 926 | dev: true 927 | 928 | /chokidar@3.5.3: 929 | resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} 930 | engines: {node: '>= 8.10.0'} 931 | dependencies: 932 | anymatch: 3.1.3 933 | braces: 3.0.2 934 | glob-parent: 5.1.2 935 | is-binary-path: 2.1.0 936 | is-glob: 4.0.3 937 | normalize-path: 3.0.0 938 | readdirp: 3.6.0 939 | optionalDependencies: 940 | fsevents: 2.3.3 941 | 942 | /class-variance-authority@0.7.0: 943 | resolution: {integrity: sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==} 944 | dependencies: 945 | clsx: 2.0.0 946 | dev: false 947 | 948 | /client-only@0.0.1: 949 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} 950 | dev: false 951 | 952 | /clsx@2.0.0: 953 | resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==} 954 | engines: {node: '>=6'} 955 | dev: false 956 | 957 | /color-convert@1.9.3: 958 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 959 | dependencies: 960 | color-name: 1.1.3 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 | 972 | /color-name@1.1.4: 973 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 974 | dev: true 975 | 976 | /commander@4.1.1: 977 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} 978 | engines: {node: '>= 6'} 979 | 980 | /concat-map@0.0.1: 981 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 982 | 983 | /convert-source-map@2.0.0: 984 | resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} 985 | 986 | /cross-spawn@7.0.3: 987 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 988 | engines: {node: '>= 8'} 989 | dependencies: 990 | path-key: 3.1.1 991 | shebang-command: 2.0.0 992 | which: 2.0.2 993 | dev: true 994 | 995 | /cssesc@3.0.0: 996 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 997 | engines: {node: '>=4'} 998 | hasBin: true 999 | 1000 | /csstype@3.1.2: 1001 | resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==} 1002 | 1003 | /damerau-levenshtein@1.0.8: 1004 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} 1005 | dev: true 1006 | 1007 | /debug@3.2.7: 1008 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 1009 | peerDependencies: 1010 | supports-color: '*' 1011 | peerDependenciesMeta: 1012 | supports-color: 1013 | optional: true 1014 | dependencies: 1015 | ms: 2.1.3 1016 | dev: true 1017 | 1018 | /debug@4.3.4: 1019 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 1020 | engines: {node: '>=6.0'} 1021 | peerDependencies: 1022 | supports-color: '*' 1023 | peerDependenciesMeta: 1024 | supports-color: 1025 | optional: true 1026 | dependencies: 1027 | ms: 2.1.2 1028 | 1029 | /deep-is@0.1.4: 1030 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 1031 | dev: true 1032 | 1033 | /define-data-property@1.1.1: 1034 | resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} 1035 | engines: {node: '>= 0.4'} 1036 | dependencies: 1037 | get-intrinsic: 1.2.2 1038 | gopd: 1.0.1 1039 | has-property-descriptors: 1.0.1 1040 | dev: true 1041 | 1042 | /define-properties@1.2.1: 1043 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} 1044 | engines: {node: '>= 0.4'} 1045 | dependencies: 1046 | define-data-property: 1.1.1 1047 | has-property-descriptors: 1.0.1 1048 | object-keys: 1.1.1 1049 | dev: true 1050 | 1051 | /dequal@2.0.3: 1052 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 1053 | engines: {node: '>=6'} 1054 | dev: true 1055 | 1056 | /didyoumean@1.2.2: 1057 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} 1058 | 1059 | /dir-glob@3.0.1: 1060 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 1061 | engines: {node: '>=8'} 1062 | dependencies: 1063 | path-type: 4.0.0 1064 | dev: true 1065 | 1066 | /dlv@1.1.3: 1067 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 1068 | 1069 | /doctrine@2.1.0: 1070 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 1071 | engines: {node: '>=0.10.0'} 1072 | dependencies: 1073 | esutils: 2.0.3 1074 | dev: true 1075 | 1076 | /doctrine@3.0.0: 1077 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 1078 | engines: {node: '>=6.0.0'} 1079 | dependencies: 1080 | esutils: 2.0.3 1081 | dev: true 1082 | 1083 | /electron-to-chromium@1.4.580: 1084 | resolution: {integrity: sha512-T5q3pjQon853xxxHUq3ZP68ZpvJHuSMY2+BZaW3QzjS4HvNuvsMmZ/+lU+nCrftre1jFZ+OSlExynXWBihnXzw==} 1085 | 1086 | /emoji-regex@9.2.2: 1087 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 1088 | dev: true 1089 | 1090 | /end-of-stream@1.4.4: 1091 | resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} 1092 | dependencies: 1093 | once: 1.4.0 1094 | dev: true 1095 | 1096 | /enhanced-resolve@5.15.0: 1097 | resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} 1098 | engines: {node: '>=10.13.0'} 1099 | dependencies: 1100 | graceful-fs: 4.2.11 1101 | tapable: 2.2.1 1102 | dev: true 1103 | 1104 | /es-abstract@1.22.3: 1105 | resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==} 1106 | engines: {node: '>= 0.4'} 1107 | dependencies: 1108 | array-buffer-byte-length: 1.0.0 1109 | arraybuffer.prototype.slice: 1.0.2 1110 | available-typed-arrays: 1.0.5 1111 | call-bind: 1.0.5 1112 | es-set-tostringtag: 2.0.2 1113 | es-to-primitive: 1.2.1 1114 | function.prototype.name: 1.1.6 1115 | get-intrinsic: 1.2.2 1116 | get-symbol-description: 1.0.0 1117 | globalthis: 1.0.3 1118 | gopd: 1.0.1 1119 | has-property-descriptors: 1.0.1 1120 | has-proto: 1.0.1 1121 | has-symbols: 1.0.3 1122 | hasown: 2.0.0 1123 | internal-slot: 1.0.6 1124 | is-array-buffer: 3.0.2 1125 | is-callable: 1.2.7 1126 | is-negative-zero: 2.0.2 1127 | is-regex: 1.1.4 1128 | is-shared-array-buffer: 1.0.2 1129 | is-string: 1.0.7 1130 | is-typed-array: 1.1.12 1131 | is-weakref: 1.0.2 1132 | object-inspect: 1.13.1 1133 | object-keys: 1.1.1 1134 | object.assign: 4.1.4 1135 | regexp.prototype.flags: 1.5.1 1136 | safe-array-concat: 1.0.1 1137 | safe-regex-test: 1.0.0 1138 | string.prototype.trim: 1.2.8 1139 | string.prototype.trimend: 1.0.7 1140 | string.prototype.trimstart: 1.0.7 1141 | typed-array-buffer: 1.0.0 1142 | typed-array-byte-length: 1.0.0 1143 | typed-array-byte-offset: 1.0.0 1144 | typed-array-length: 1.0.4 1145 | unbox-primitive: 1.0.2 1146 | which-typed-array: 1.1.13 1147 | dev: true 1148 | 1149 | /es-iterator-helpers@1.0.15: 1150 | resolution: {integrity: sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==} 1151 | dependencies: 1152 | asynciterator.prototype: 1.0.0 1153 | call-bind: 1.0.5 1154 | define-properties: 1.2.1 1155 | es-abstract: 1.22.3 1156 | es-set-tostringtag: 2.0.2 1157 | function-bind: 1.1.2 1158 | get-intrinsic: 1.2.2 1159 | globalthis: 1.0.3 1160 | has-property-descriptors: 1.0.1 1161 | has-proto: 1.0.1 1162 | has-symbols: 1.0.3 1163 | internal-slot: 1.0.6 1164 | iterator.prototype: 1.1.2 1165 | safe-array-concat: 1.0.1 1166 | dev: true 1167 | 1168 | /es-set-tostringtag@2.0.2: 1169 | resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==} 1170 | engines: {node: '>= 0.4'} 1171 | dependencies: 1172 | get-intrinsic: 1.2.2 1173 | has-tostringtag: 1.0.0 1174 | hasown: 2.0.0 1175 | dev: true 1176 | 1177 | /es-shim-unscopables@1.0.2: 1178 | resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} 1179 | dependencies: 1180 | hasown: 2.0.0 1181 | dev: true 1182 | 1183 | /es-to-primitive@1.2.1: 1184 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 1185 | engines: {node: '>= 0.4'} 1186 | dependencies: 1187 | is-callable: 1.2.7 1188 | is-date-object: 1.0.5 1189 | is-symbol: 1.0.4 1190 | dev: true 1191 | 1192 | /escalade@3.1.1: 1193 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} 1194 | engines: {node: '>=6'} 1195 | 1196 | /escape-string-regexp@1.0.5: 1197 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} 1198 | engines: {node: '>=0.8.0'} 1199 | 1200 | /escape-string-regexp@4.0.0: 1201 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 1202 | engines: {node: '>=10'} 1203 | dev: true 1204 | 1205 | /eslint-config-next@14.0.2(eslint@8.53.0)(typescript@5.2.2): 1206 | resolution: {integrity: sha512-CasWThlsyIcg/a+clU6KVOMTieuDhTztsrqvniP6AsRki9v7FnojTa7vKQOYM8QSOsQdZ/aElLD1Y2Oc8/PsIg==} 1207 | peerDependencies: 1208 | eslint: ^7.23.0 || ^8.0.0 1209 | typescript: '>=3.3.1' 1210 | peerDependenciesMeta: 1211 | typescript: 1212 | optional: true 1213 | dependencies: 1214 | '@next/eslint-plugin-next': 14.0.2 1215 | '@rushstack/eslint-patch': 1.5.1 1216 | '@typescript-eslint/parser': 6.10.0(eslint@8.53.0)(typescript@5.2.2) 1217 | eslint: 8.53.0 1218 | eslint-import-resolver-node: 0.3.9 1219 | eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.10.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0)(eslint@8.53.0) 1220 | eslint-plugin-import: 2.29.0(@typescript-eslint/parser@6.10.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.53.0) 1221 | eslint-plugin-jsx-a11y: 6.8.0(eslint@8.53.0) 1222 | eslint-plugin-react: 7.33.2(eslint@8.53.0) 1223 | eslint-plugin-react-hooks: 4.6.0(eslint@8.53.0) 1224 | typescript: 5.2.2 1225 | transitivePeerDependencies: 1226 | - eslint-import-resolver-webpack 1227 | - supports-color 1228 | dev: true 1229 | 1230 | /eslint-config-prettier@9.0.0(eslint@8.53.0): 1231 | resolution: {integrity: sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==} 1232 | hasBin: true 1233 | peerDependencies: 1234 | eslint: '>=7.0.0' 1235 | dependencies: 1236 | eslint: 8.53.0 1237 | dev: true 1238 | 1239 | /eslint-import-resolver-node@0.3.9: 1240 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} 1241 | dependencies: 1242 | debug: 3.2.7 1243 | is-core-module: 2.13.1 1244 | resolve: 1.22.8 1245 | transitivePeerDependencies: 1246 | - supports-color 1247 | dev: true 1248 | 1249 | /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.10.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0)(eslint@8.53.0): 1250 | resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==} 1251 | engines: {node: ^14.18.0 || >=16.0.0} 1252 | peerDependencies: 1253 | eslint: '*' 1254 | eslint-plugin-import: '*' 1255 | dependencies: 1256 | debug: 4.3.4 1257 | enhanced-resolve: 5.15.0 1258 | eslint: 8.53.0 1259 | eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.10.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.53.0) 1260 | eslint-plugin-import: 2.29.0(@typescript-eslint/parser@6.10.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.53.0) 1261 | fast-glob: 3.3.2 1262 | get-tsconfig: 4.7.2 1263 | is-core-module: 2.13.1 1264 | is-glob: 4.0.3 1265 | transitivePeerDependencies: 1266 | - '@typescript-eslint/parser' 1267 | - eslint-import-resolver-node 1268 | - eslint-import-resolver-webpack 1269 | - supports-color 1270 | dev: true 1271 | 1272 | /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.10.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.53.0): 1273 | resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} 1274 | engines: {node: '>=4'} 1275 | peerDependencies: 1276 | '@typescript-eslint/parser': '*' 1277 | eslint: '*' 1278 | eslint-import-resolver-node: '*' 1279 | eslint-import-resolver-typescript: '*' 1280 | eslint-import-resolver-webpack: '*' 1281 | peerDependenciesMeta: 1282 | '@typescript-eslint/parser': 1283 | optional: true 1284 | eslint: 1285 | optional: true 1286 | eslint-import-resolver-node: 1287 | optional: true 1288 | eslint-import-resolver-typescript: 1289 | optional: true 1290 | eslint-import-resolver-webpack: 1291 | optional: true 1292 | dependencies: 1293 | '@typescript-eslint/parser': 6.10.0(eslint@8.53.0)(typescript@5.2.2) 1294 | debug: 3.2.7 1295 | eslint: 8.53.0 1296 | eslint-import-resolver-node: 0.3.9 1297 | eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.10.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0)(eslint@8.53.0) 1298 | transitivePeerDependencies: 1299 | - supports-color 1300 | dev: true 1301 | 1302 | /eslint-plugin-import@2.29.0(@typescript-eslint/parser@6.10.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.53.0): 1303 | resolution: {integrity: sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==} 1304 | engines: {node: '>=4'} 1305 | peerDependencies: 1306 | '@typescript-eslint/parser': '*' 1307 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 1308 | peerDependenciesMeta: 1309 | '@typescript-eslint/parser': 1310 | optional: true 1311 | dependencies: 1312 | '@typescript-eslint/parser': 6.10.0(eslint@8.53.0)(typescript@5.2.2) 1313 | array-includes: 3.1.7 1314 | array.prototype.findlastindex: 1.2.3 1315 | array.prototype.flat: 1.3.2 1316 | array.prototype.flatmap: 1.3.2 1317 | debug: 3.2.7 1318 | doctrine: 2.1.0 1319 | eslint: 8.53.0 1320 | eslint-import-resolver-node: 0.3.9 1321 | eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.10.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.53.0) 1322 | hasown: 2.0.0 1323 | is-core-module: 2.13.1 1324 | is-glob: 4.0.3 1325 | minimatch: 3.1.2 1326 | object.fromentries: 2.0.7 1327 | object.groupby: 1.0.1 1328 | object.values: 1.1.7 1329 | semver: 6.3.1 1330 | tsconfig-paths: 3.14.2 1331 | transitivePeerDependencies: 1332 | - eslint-import-resolver-typescript 1333 | - eslint-import-resolver-webpack 1334 | - supports-color 1335 | dev: true 1336 | 1337 | /eslint-plugin-jsx-a11y@6.8.0(eslint@8.53.0): 1338 | resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==} 1339 | engines: {node: '>=4.0'} 1340 | peerDependencies: 1341 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 1342 | dependencies: 1343 | '@babel/runtime': 7.23.2 1344 | aria-query: 5.3.0 1345 | array-includes: 3.1.7 1346 | array.prototype.flatmap: 1.3.2 1347 | ast-types-flow: 0.0.8 1348 | axe-core: 4.7.0 1349 | axobject-query: 3.2.1 1350 | damerau-levenshtein: 1.0.8 1351 | emoji-regex: 9.2.2 1352 | es-iterator-helpers: 1.0.15 1353 | eslint: 8.53.0 1354 | hasown: 2.0.0 1355 | jsx-ast-utils: 3.3.5 1356 | language-tags: 1.0.9 1357 | minimatch: 3.1.2 1358 | object.entries: 1.1.7 1359 | object.fromentries: 2.0.7 1360 | dev: true 1361 | 1362 | /eslint-plugin-react-hooks@4.6.0(eslint@8.53.0): 1363 | resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} 1364 | engines: {node: '>=10'} 1365 | peerDependencies: 1366 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 1367 | dependencies: 1368 | eslint: 8.53.0 1369 | dev: true 1370 | 1371 | /eslint-plugin-react@7.33.2(eslint@8.53.0): 1372 | resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} 1373 | engines: {node: '>=4'} 1374 | peerDependencies: 1375 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 1376 | dependencies: 1377 | array-includes: 3.1.7 1378 | array.prototype.flatmap: 1.3.2 1379 | array.prototype.tosorted: 1.1.2 1380 | doctrine: 2.1.0 1381 | es-iterator-helpers: 1.0.15 1382 | eslint: 8.53.0 1383 | estraverse: 5.3.0 1384 | jsx-ast-utils: 3.3.5 1385 | minimatch: 3.1.2 1386 | object.entries: 1.1.7 1387 | object.fromentries: 2.0.7 1388 | object.hasown: 1.1.3 1389 | object.values: 1.1.7 1390 | prop-types: 15.8.1 1391 | resolve: 2.0.0-next.5 1392 | semver: 6.3.1 1393 | string.prototype.matchall: 4.0.10 1394 | dev: true 1395 | 1396 | /eslint-plugin-tailwindcss@3.13.0(tailwindcss@3.3.5): 1397 | resolution: {integrity: sha512-Fcep4KDRLWaK3KmkQbdyKHG0P4GdXFmXdDaweTIPcgOP60OOuWFbh1++dufRT28Q4zpKTKaHwTsXPJ4O/EjU2Q==} 1398 | engines: {node: '>=12.13.0'} 1399 | peerDependencies: 1400 | tailwindcss: ^3.3.2 1401 | dependencies: 1402 | fast-glob: 3.3.2 1403 | postcss: 8.4.31 1404 | tailwindcss: 3.3.5 1405 | dev: true 1406 | 1407 | /eslint-scope@7.2.2: 1408 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 1409 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1410 | dependencies: 1411 | esrecurse: 4.3.0 1412 | estraverse: 5.3.0 1413 | dev: true 1414 | 1415 | /eslint-visitor-keys@3.4.3: 1416 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 1417 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1418 | dev: true 1419 | 1420 | /eslint@8.53.0: 1421 | resolution: {integrity: sha512-N4VuiPjXDUa4xVeV/GC/RV3hQW9Nw+Y463lkWaKKXKYMvmRiRDAtfpuPFLN+E1/6ZhyR8J2ig+eVREnYgUsiag==} 1422 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1423 | hasBin: true 1424 | dependencies: 1425 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.53.0) 1426 | '@eslint-community/regexpp': 4.10.0 1427 | '@eslint/eslintrc': 2.1.3 1428 | '@eslint/js': 8.53.0 1429 | '@humanwhocodes/config-array': 0.11.13 1430 | '@humanwhocodes/module-importer': 1.0.1 1431 | '@nodelib/fs.walk': 1.2.8 1432 | '@ungap/structured-clone': 1.2.0 1433 | ajv: 6.12.6 1434 | chalk: 4.1.2 1435 | cross-spawn: 7.0.3 1436 | debug: 4.3.4 1437 | doctrine: 3.0.0 1438 | escape-string-regexp: 4.0.0 1439 | eslint-scope: 7.2.2 1440 | eslint-visitor-keys: 3.4.3 1441 | espree: 9.6.1 1442 | esquery: 1.5.0 1443 | esutils: 2.0.3 1444 | fast-deep-equal: 3.1.3 1445 | file-entry-cache: 6.0.1 1446 | find-up: 5.0.0 1447 | glob-parent: 6.0.2 1448 | globals: 13.23.0 1449 | graphemer: 1.4.0 1450 | ignore: 5.2.4 1451 | imurmurhash: 0.1.4 1452 | is-glob: 4.0.3 1453 | is-path-inside: 3.0.3 1454 | js-yaml: 4.1.0 1455 | json-stable-stringify-without-jsonify: 1.0.1 1456 | levn: 0.4.1 1457 | lodash.merge: 4.6.2 1458 | minimatch: 3.1.2 1459 | natural-compare: 1.4.0 1460 | optionator: 0.9.3 1461 | strip-ansi: 6.0.1 1462 | text-table: 0.2.0 1463 | transitivePeerDependencies: 1464 | - supports-color 1465 | dev: true 1466 | 1467 | /espree@9.6.1: 1468 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 1469 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1470 | dependencies: 1471 | acorn: 8.11.2 1472 | acorn-jsx: 5.3.2(acorn@8.11.2) 1473 | eslint-visitor-keys: 3.4.3 1474 | dev: true 1475 | 1476 | /esquery@1.5.0: 1477 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} 1478 | engines: {node: '>=0.10'} 1479 | dependencies: 1480 | estraverse: 5.3.0 1481 | dev: true 1482 | 1483 | /esrecurse@4.3.0: 1484 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 1485 | engines: {node: '>=4.0'} 1486 | dependencies: 1487 | estraverse: 5.3.0 1488 | dev: true 1489 | 1490 | /estraverse@5.3.0: 1491 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1492 | engines: {node: '>=4.0'} 1493 | dev: true 1494 | 1495 | /esutils@2.0.3: 1496 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1497 | engines: {node: '>=0.10.0'} 1498 | dev: true 1499 | 1500 | /execa@4.1.0: 1501 | resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} 1502 | engines: {node: '>=10'} 1503 | dependencies: 1504 | cross-spawn: 7.0.3 1505 | get-stream: 5.2.0 1506 | human-signals: 1.1.1 1507 | is-stream: 2.0.1 1508 | merge-stream: 2.0.0 1509 | npm-run-path: 4.0.1 1510 | onetime: 5.1.2 1511 | signal-exit: 3.0.7 1512 | strip-final-newline: 2.0.0 1513 | dev: true 1514 | 1515 | /fast-deep-equal@3.1.3: 1516 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1517 | dev: true 1518 | 1519 | /fast-glob@3.3.2: 1520 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 1521 | engines: {node: '>=8.6.0'} 1522 | dependencies: 1523 | '@nodelib/fs.stat': 2.0.5 1524 | '@nodelib/fs.walk': 1.2.8 1525 | glob-parent: 5.1.2 1526 | merge2: 1.4.1 1527 | micromatch: 4.0.5 1528 | 1529 | /fast-json-stable-stringify@2.1.0: 1530 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 1531 | dev: true 1532 | 1533 | /fast-levenshtein@2.0.6: 1534 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 1535 | dev: true 1536 | 1537 | /fastq@1.15.0: 1538 | resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} 1539 | dependencies: 1540 | reusify: 1.0.4 1541 | 1542 | /file-entry-cache@6.0.1: 1543 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 1544 | engines: {node: ^10.12.0 || >=12.0.0} 1545 | dependencies: 1546 | flat-cache: 3.1.1 1547 | dev: true 1548 | 1549 | /fill-range@7.0.1: 1550 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} 1551 | engines: {node: '>=8'} 1552 | dependencies: 1553 | to-regex-range: 5.0.1 1554 | 1555 | /find-up@4.1.0: 1556 | resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} 1557 | engines: {node: '>=8'} 1558 | dependencies: 1559 | locate-path: 5.0.0 1560 | path-exists: 4.0.0 1561 | dev: true 1562 | 1563 | /find-up@5.0.0: 1564 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 1565 | engines: {node: '>=10'} 1566 | dependencies: 1567 | locate-path: 6.0.0 1568 | path-exists: 4.0.0 1569 | dev: true 1570 | 1571 | /flat-cache@3.1.1: 1572 | resolution: {integrity: sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==} 1573 | engines: {node: '>=12.0.0'} 1574 | dependencies: 1575 | flatted: 3.2.9 1576 | keyv: 4.5.4 1577 | rimraf: 3.0.2 1578 | dev: true 1579 | 1580 | /flatted@3.2.9: 1581 | resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} 1582 | dev: true 1583 | 1584 | /for-each@0.3.3: 1585 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 1586 | dependencies: 1587 | is-callable: 1.2.7 1588 | dev: true 1589 | 1590 | /fraction.js@4.3.7: 1591 | resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} 1592 | dev: true 1593 | 1594 | /fs.realpath@1.0.0: 1595 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 1596 | 1597 | /fsevents@2.3.3: 1598 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 1599 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1600 | os: [darwin] 1601 | requiresBuild: true 1602 | optional: true 1603 | 1604 | /function-bind@1.1.2: 1605 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 1606 | 1607 | /function.prototype.name@1.1.6: 1608 | resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} 1609 | engines: {node: '>= 0.4'} 1610 | dependencies: 1611 | call-bind: 1.0.5 1612 | define-properties: 1.2.1 1613 | es-abstract: 1.22.3 1614 | functions-have-names: 1.2.3 1615 | dev: true 1616 | 1617 | /functions-have-names@1.2.3: 1618 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 1619 | dev: true 1620 | 1621 | /gensync@1.0.0-beta.2: 1622 | resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} 1623 | engines: {node: '>=6.9.0'} 1624 | 1625 | /get-intrinsic@1.2.2: 1626 | resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} 1627 | dependencies: 1628 | function-bind: 1.1.2 1629 | has-proto: 1.0.1 1630 | has-symbols: 1.0.3 1631 | hasown: 2.0.0 1632 | dev: true 1633 | 1634 | /get-stream@5.2.0: 1635 | resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} 1636 | engines: {node: '>=8'} 1637 | dependencies: 1638 | pump: 3.0.0 1639 | dev: true 1640 | 1641 | /get-symbol-description@1.0.0: 1642 | resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} 1643 | engines: {node: '>= 0.4'} 1644 | dependencies: 1645 | call-bind: 1.0.5 1646 | get-intrinsic: 1.2.2 1647 | dev: true 1648 | 1649 | /get-tsconfig@4.7.2: 1650 | resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==} 1651 | dependencies: 1652 | resolve-pkg-maps: 1.0.0 1653 | dev: true 1654 | 1655 | /glob-parent@5.1.2: 1656 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1657 | engines: {node: '>= 6'} 1658 | dependencies: 1659 | is-glob: 4.0.3 1660 | 1661 | /glob-parent@6.0.2: 1662 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1663 | engines: {node: '>=10.13.0'} 1664 | dependencies: 1665 | is-glob: 4.0.3 1666 | 1667 | /glob-to-regexp@0.4.1: 1668 | resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} 1669 | dev: false 1670 | 1671 | /glob@7.1.6: 1672 | resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} 1673 | dependencies: 1674 | fs.realpath: 1.0.0 1675 | inflight: 1.0.6 1676 | inherits: 2.0.4 1677 | minimatch: 3.1.2 1678 | once: 1.4.0 1679 | path-is-absolute: 1.0.1 1680 | 1681 | /glob@7.1.7: 1682 | resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} 1683 | dependencies: 1684 | fs.realpath: 1.0.0 1685 | inflight: 1.0.6 1686 | inherits: 2.0.4 1687 | minimatch: 3.1.2 1688 | once: 1.4.0 1689 | path-is-absolute: 1.0.1 1690 | dev: true 1691 | 1692 | /glob@7.2.3: 1693 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 1694 | dependencies: 1695 | fs.realpath: 1.0.0 1696 | inflight: 1.0.6 1697 | inherits: 2.0.4 1698 | minimatch: 3.1.2 1699 | once: 1.4.0 1700 | path-is-absolute: 1.0.1 1701 | dev: true 1702 | 1703 | /globals@11.12.0: 1704 | resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} 1705 | engines: {node: '>=4'} 1706 | 1707 | /globals@13.23.0: 1708 | resolution: {integrity: sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==} 1709 | engines: {node: '>=8'} 1710 | dependencies: 1711 | type-fest: 0.20.2 1712 | dev: true 1713 | 1714 | /globalthis@1.0.3: 1715 | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} 1716 | engines: {node: '>= 0.4'} 1717 | dependencies: 1718 | define-properties: 1.2.1 1719 | dev: true 1720 | 1721 | /globby@11.1.0: 1722 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 1723 | engines: {node: '>=10'} 1724 | dependencies: 1725 | array-union: 2.1.0 1726 | dir-glob: 3.0.1 1727 | fast-glob: 3.3.2 1728 | ignore: 5.2.4 1729 | merge2: 1.4.1 1730 | slash: 3.0.0 1731 | dev: true 1732 | 1733 | /gopd@1.0.1: 1734 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} 1735 | dependencies: 1736 | get-intrinsic: 1.2.2 1737 | dev: true 1738 | 1739 | /graceful-fs@4.2.11: 1740 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 1741 | 1742 | /graphemer@1.4.0: 1743 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 1744 | dev: true 1745 | 1746 | /has-bigints@1.0.2: 1747 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 1748 | dev: true 1749 | 1750 | /has-flag@3.0.0: 1751 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} 1752 | engines: {node: '>=4'} 1753 | 1754 | /has-flag@4.0.0: 1755 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1756 | engines: {node: '>=8'} 1757 | dev: true 1758 | 1759 | /has-property-descriptors@1.0.1: 1760 | resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} 1761 | dependencies: 1762 | get-intrinsic: 1.2.2 1763 | dev: true 1764 | 1765 | /has-proto@1.0.1: 1766 | resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} 1767 | engines: {node: '>= 0.4'} 1768 | dev: true 1769 | 1770 | /has-symbols@1.0.3: 1771 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 1772 | engines: {node: '>= 0.4'} 1773 | dev: true 1774 | 1775 | /has-tostringtag@1.0.0: 1776 | resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} 1777 | engines: {node: '>= 0.4'} 1778 | dependencies: 1779 | has-symbols: 1.0.3 1780 | dev: true 1781 | 1782 | /hasown@2.0.0: 1783 | resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} 1784 | engines: {node: '>= 0.4'} 1785 | dependencies: 1786 | function-bind: 1.1.2 1787 | 1788 | /human-signals@1.1.1: 1789 | resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} 1790 | engines: {node: '>=8.12.0'} 1791 | dev: true 1792 | 1793 | /ignore@5.2.4: 1794 | resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} 1795 | engines: {node: '>= 4'} 1796 | dev: true 1797 | 1798 | /import-fresh@3.3.0: 1799 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 1800 | engines: {node: '>=6'} 1801 | dependencies: 1802 | parent-module: 1.0.1 1803 | resolve-from: 4.0.0 1804 | dev: true 1805 | 1806 | /imurmurhash@0.1.4: 1807 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1808 | engines: {node: '>=0.8.19'} 1809 | dev: true 1810 | 1811 | /inflight@1.0.6: 1812 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 1813 | dependencies: 1814 | once: 1.4.0 1815 | wrappy: 1.0.2 1816 | 1817 | /inherits@2.0.4: 1818 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 1819 | 1820 | /internal-slot@1.0.6: 1821 | resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==} 1822 | engines: {node: '>= 0.4'} 1823 | dependencies: 1824 | get-intrinsic: 1.2.2 1825 | hasown: 2.0.0 1826 | side-channel: 1.0.4 1827 | dev: true 1828 | 1829 | /is-array-buffer@3.0.2: 1830 | resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} 1831 | dependencies: 1832 | call-bind: 1.0.5 1833 | get-intrinsic: 1.2.2 1834 | is-typed-array: 1.1.12 1835 | dev: true 1836 | 1837 | /is-async-function@2.0.0: 1838 | resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} 1839 | engines: {node: '>= 0.4'} 1840 | dependencies: 1841 | has-tostringtag: 1.0.0 1842 | dev: true 1843 | 1844 | /is-bigint@1.0.4: 1845 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 1846 | dependencies: 1847 | has-bigints: 1.0.2 1848 | dev: true 1849 | 1850 | /is-binary-path@2.1.0: 1851 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 1852 | engines: {node: '>=8'} 1853 | dependencies: 1854 | binary-extensions: 2.2.0 1855 | 1856 | /is-boolean-object@1.1.2: 1857 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 1858 | engines: {node: '>= 0.4'} 1859 | dependencies: 1860 | call-bind: 1.0.5 1861 | has-tostringtag: 1.0.0 1862 | dev: true 1863 | 1864 | /is-callable@1.2.7: 1865 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 1866 | engines: {node: '>= 0.4'} 1867 | dev: true 1868 | 1869 | /is-core-module@2.13.1: 1870 | resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} 1871 | dependencies: 1872 | hasown: 2.0.0 1873 | 1874 | /is-date-object@1.0.5: 1875 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 1876 | engines: {node: '>= 0.4'} 1877 | dependencies: 1878 | has-tostringtag: 1.0.0 1879 | dev: true 1880 | 1881 | /is-extglob@2.1.1: 1882 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1883 | engines: {node: '>=0.10.0'} 1884 | 1885 | /is-finalizationregistry@1.0.2: 1886 | resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} 1887 | dependencies: 1888 | call-bind: 1.0.5 1889 | dev: true 1890 | 1891 | /is-generator-function@1.0.10: 1892 | resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} 1893 | engines: {node: '>= 0.4'} 1894 | dependencies: 1895 | has-tostringtag: 1.0.0 1896 | dev: true 1897 | 1898 | /is-glob@4.0.3: 1899 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1900 | engines: {node: '>=0.10.0'} 1901 | dependencies: 1902 | is-extglob: 2.1.1 1903 | 1904 | /is-map@2.0.2: 1905 | resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} 1906 | dev: true 1907 | 1908 | /is-negative-zero@2.0.2: 1909 | resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} 1910 | engines: {node: '>= 0.4'} 1911 | dev: true 1912 | 1913 | /is-number-object@1.0.7: 1914 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 1915 | engines: {node: '>= 0.4'} 1916 | dependencies: 1917 | has-tostringtag: 1.0.0 1918 | dev: true 1919 | 1920 | /is-number@7.0.0: 1921 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1922 | engines: {node: '>=0.12.0'} 1923 | 1924 | /is-path-inside@3.0.3: 1925 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 1926 | engines: {node: '>=8'} 1927 | dev: true 1928 | 1929 | /is-regex@1.1.4: 1930 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 1931 | engines: {node: '>= 0.4'} 1932 | dependencies: 1933 | call-bind: 1.0.5 1934 | has-tostringtag: 1.0.0 1935 | dev: true 1936 | 1937 | /is-set@2.0.2: 1938 | resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} 1939 | dev: true 1940 | 1941 | /is-shared-array-buffer@1.0.2: 1942 | resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} 1943 | dependencies: 1944 | call-bind: 1.0.5 1945 | dev: true 1946 | 1947 | /is-stream@2.0.1: 1948 | resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} 1949 | engines: {node: '>=8'} 1950 | dev: true 1951 | 1952 | /is-string@1.0.7: 1953 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 1954 | engines: {node: '>= 0.4'} 1955 | dependencies: 1956 | has-tostringtag: 1.0.0 1957 | dev: true 1958 | 1959 | /is-symbol@1.0.4: 1960 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 1961 | engines: {node: '>= 0.4'} 1962 | dependencies: 1963 | has-symbols: 1.0.3 1964 | dev: true 1965 | 1966 | /is-typed-array@1.1.12: 1967 | resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} 1968 | engines: {node: '>= 0.4'} 1969 | dependencies: 1970 | which-typed-array: 1.1.13 1971 | dev: true 1972 | 1973 | /is-weakmap@2.0.1: 1974 | resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} 1975 | dev: true 1976 | 1977 | /is-weakref@1.0.2: 1978 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 1979 | dependencies: 1980 | call-bind: 1.0.5 1981 | dev: true 1982 | 1983 | /is-weakset@2.0.2: 1984 | resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} 1985 | dependencies: 1986 | call-bind: 1.0.5 1987 | get-intrinsic: 1.2.2 1988 | dev: true 1989 | 1990 | /isarray@2.0.5: 1991 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 1992 | dev: true 1993 | 1994 | /isexe@2.0.0: 1995 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1996 | dev: true 1997 | 1998 | /iterator.prototype@1.1.2: 1999 | resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} 2000 | dependencies: 2001 | define-properties: 1.2.1 2002 | get-intrinsic: 1.2.2 2003 | has-symbols: 1.0.3 2004 | reflect.getprototypeof: 1.0.4 2005 | set-function-name: 2.0.1 2006 | dev: true 2007 | 2008 | /jiti@1.21.0: 2009 | resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} 2010 | hasBin: true 2011 | 2012 | /js-tokens@4.0.0: 2013 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 2014 | 2015 | /js-yaml@4.1.0: 2016 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 2017 | hasBin: true 2018 | dependencies: 2019 | argparse: 2.0.1 2020 | dev: true 2021 | 2022 | /jsesc@2.5.2: 2023 | resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} 2024 | engines: {node: '>=4'} 2025 | hasBin: true 2026 | 2027 | /json-buffer@3.0.1: 2028 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 2029 | dev: true 2030 | 2031 | /json-schema-traverse@0.4.1: 2032 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 2033 | dev: true 2034 | 2035 | /json-stable-stringify-without-jsonify@1.0.1: 2036 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 2037 | dev: true 2038 | 2039 | /json5@1.0.2: 2040 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 2041 | hasBin: true 2042 | dependencies: 2043 | minimist: 1.2.8 2044 | dev: true 2045 | 2046 | /json5@2.2.3: 2047 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 2048 | engines: {node: '>=6'} 2049 | hasBin: true 2050 | 2051 | /jsx-ast-utils@3.3.5: 2052 | resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} 2053 | engines: {node: '>=4.0'} 2054 | dependencies: 2055 | array-includes: 3.1.7 2056 | array.prototype.flat: 1.3.2 2057 | object.assign: 4.1.4 2058 | object.values: 1.1.7 2059 | dev: true 2060 | 2061 | /keyv@4.5.4: 2062 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 2063 | dependencies: 2064 | json-buffer: 3.0.1 2065 | dev: true 2066 | 2067 | /language-subtag-registry@0.3.22: 2068 | resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} 2069 | dev: true 2070 | 2071 | /language-tags@1.0.9: 2072 | resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} 2073 | engines: {node: '>=0.10'} 2074 | dependencies: 2075 | language-subtag-registry: 0.3.22 2076 | dev: true 2077 | 2078 | /levn@0.4.1: 2079 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 2080 | engines: {node: '>= 0.8.0'} 2081 | dependencies: 2082 | prelude-ls: 1.2.1 2083 | type-check: 0.4.0 2084 | dev: true 2085 | 2086 | /lilconfig@2.1.0: 2087 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} 2088 | engines: {node: '>=10'} 2089 | 2090 | /lines-and-columns@1.2.4: 2091 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 2092 | 2093 | /locate-path@5.0.0: 2094 | resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} 2095 | engines: {node: '>=8'} 2096 | dependencies: 2097 | p-locate: 4.1.0 2098 | dev: true 2099 | 2100 | /locate-path@6.0.0: 2101 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 2102 | engines: {node: '>=10'} 2103 | dependencies: 2104 | p-locate: 5.0.0 2105 | dev: true 2106 | 2107 | /lodash.merge@4.6.2: 2108 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 2109 | dev: true 2110 | 2111 | /loose-envify@1.4.0: 2112 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 2113 | hasBin: true 2114 | dependencies: 2115 | js-tokens: 4.0.0 2116 | 2117 | /lru-cache@5.1.1: 2118 | resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} 2119 | dependencies: 2120 | yallist: 3.1.1 2121 | 2122 | /lru-cache@6.0.0: 2123 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 2124 | engines: {node: '>=10'} 2125 | dependencies: 2126 | yallist: 4.0.0 2127 | dev: true 2128 | 2129 | /lucide-react@0.292.0(react@18.2.0): 2130 | resolution: {integrity: sha512-rRgUkpEHWpa5VCT66YscInCQmQuPCB1RFRzkkxMxg4b+jaL0V12E3riWWR2Sh5OIiUhCwGW/ZExuEO4Az32E6Q==} 2131 | peerDependencies: 2132 | react: ^16.5.1 || ^17.0.0 || ^18.0.0 2133 | dependencies: 2134 | react: 18.2.0 2135 | dev: false 2136 | 2137 | /merge-stream@2.0.0: 2138 | resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} 2139 | dev: true 2140 | 2141 | /merge2@1.4.1: 2142 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 2143 | engines: {node: '>= 8'} 2144 | 2145 | /micromatch@4.0.5: 2146 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 2147 | engines: {node: '>=8.6'} 2148 | dependencies: 2149 | braces: 3.0.2 2150 | picomatch: 2.3.1 2151 | 2152 | /mimic-fn@2.1.0: 2153 | resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} 2154 | engines: {node: '>=6'} 2155 | dev: true 2156 | 2157 | /minimatch@3.1.2: 2158 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 2159 | dependencies: 2160 | brace-expansion: 1.1.11 2161 | 2162 | /minimist@1.2.8: 2163 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 2164 | dev: true 2165 | 2166 | /mri@1.2.0: 2167 | resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} 2168 | engines: {node: '>=4'} 2169 | dev: true 2170 | 2171 | /ms@2.1.2: 2172 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 2173 | 2174 | /ms@2.1.3: 2175 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 2176 | dev: true 2177 | 2178 | /multimatch@4.0.0: 2179 | resolution: {integrity: sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ==} 2180 | engines: {node: '>=8'} 2181 | dependencies: 2182 | '@types/minimatch': 3.0.5 2183 | array-differ: 3.0.0 2184 | array-union: 2.1.0 2185 | arrify: 2.0.1 2186 | minimatch: 3.1.2 2187 | dev: true 2188 | 2189 | /mz@2.7.0: 2190 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 2191 | dependencies: 2192 | any-promise: 1.3.0 2193 | object-assign: 4.1.1 2194 | thenify-all: 1.6.0 2195 | 2196 | /nanoid@3.3.7: 2197 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} 2198 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 2199 | hasBin: true 2200 | 2201 | /natural-compare@1.4.0: 2202 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 2203 | dev: true 2204 | 2205 | /next@14.0.2(@babel/core@7.23.3)(react-dom@18.2.0)(react@18.2.0): 2206 | resolution: {integrity: sha512-jsAU2CkYS40GaQYOiLl9m93RTv2DA/tTJ0NRlmZIBIL87YwQ/xR8k796z7IqgM3jydI8G25dXvyYMC9VDIevIg==} 2207 | engines: {node: '>=18.17.0'} 2208 | hasBin: true 2209 | peerDependencies: 2210 | '@opentelemetry/api': ^1.1.0 2211 | react: ^18.2.0 2212 | react-dom: ^18.2.0 2213 | sass: ^1.3.0 2214 | peerDependenciesMeta: 2215 | '@opentelemetry/api': 2216 | optional: true 2217 | sass: 2218 | optional: true 2219 | dependencies: 2220 | '@next/env': 14.0.2 2221 | '@swc/helpers': 0.5.2 2222 | busboy: 1.6.0 2223 | caniuse-lite: 1.0.30001561 2224 | postcss: 8.4.31 2225 | react: 18.2.0 2226 | react-dom: 18.2.0(react@18.2.0) 2227 | styled-jsx: 5.1.1(@babel/core@7.23.3)(react@18.2.0) 2228 | watchpack: 2.4.0 2229 | optionalDependencies: 2230 | '@next/swc-darwin-arm64': 14.0.2 2231 | '@next/swc-darwin-x64': 14.0.2 2232 | '@next/swc-linux-arm64-gnu': 14.0.2 2233 | '@next/swc-linux-arm64-musl': 14.0.2 2234 | '@next/swc-linux-x64-gnu': 14.0.2 2235 | '@next/swc-linux-x64-musl': 14.0.2 2236 | '@next/swc-win32-arm64-msvc': 14.0.2 2237 | '@next/swc-win32-ia32-msvc': 14.0.2 2238 | '@next/swc-win32-x64-msvc': 14.0.2 2239 | transitivePeerDependencies: 2240 | - '@babel/core' 2241 | - babel-plugin-macros 2242 | dev: false 2243 | 2244 | /node-releases@2.0.13: 2245 | resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==} 2246 | 2247 | /normalize-path@3.0.0: 2248 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 2249 | engines: {node: '>=0.10.0'} 2250 | 2251 | /normalize-range@0.1.2: 2252 | resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} 2253 | engines: {node: '>=0.10.0'} 2254 | dev: true 2255 | 2256 | /npm-run-path@4.0.1: 2257 | resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} 2258 | engines: {node: '>=8'} 2259 | dependencies: 2260 | path-key: 3.1.1 2261 | dev: true 2262 | 2263 | /object-assign@4.1.1: 2264 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 2265 | engines: {node: '>=0.10.0'} 2266 | 2267 | /object-hash@3.0.0: 2268 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} 2269 | engines: {node: '>= 6'} 2270 | 2271 | /object-inspect@1.13.1: 2272 | resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} 2273 | dev: true 2274 | 2275 | /object-keys@1.1.1: 2276 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 2277 | engines: {node: '>= 0.4'} 2278 | dev: true 2279 | 2280 | /object.assign@4.1.4: 2281 | resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} 2282 | engines: {node: '>= 0.4'} 2283 | dependencies: 2284 | call-bind: 1.0.5 2285 | define-properties: 1.2.1 2286 | has-symbols: 1.0.3 2287 | object-keys: 1.1.1 2288 | dev: true 2289 | 2290 | /object.entries@1.1.7: 2291 | resolution: {integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==} 2292 | engines: {node: '>= 0.4'} 2293 | dependencies: 2294 | call-bind: 1.0.5 2295 | define-properties: 1.2.1 2296 | es-abstract: 1.22.3 2297 | dev: true 2298 | 2299 | /object.fromentries@2.0.7: 2300 | resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==} 2301 | engines: {node: '>= 0.4'} 2302 | dependencies: 2303 | call-bind: 1.0.5 2304 | define-properties: 1.2.1 2305 | es-abstract: 1.22.3 2306 | dev: true 2307 | 2308 | /object.groupby@1.0.1: 2309 | resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==} 2310 | dependencies: 2311 | call-bind: 1.0.5 2312 | define-properties: 1.2.1 2313 | es-abstract: 1.22.3 2314 | get-intrinsic: 1.2.2 2315 | dev: true 2316 | 2317 | /object.hasown@1.1.3: 2318 | resolution: {integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==} 2319 | dependencies: 2320 | define-properties: 1.2.1 2321 | es-abstract: 1.22.3 2322 | dev: true 2323 | 2324 | /object.values@1.1.7: 2325 | resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==} 2326 | engines: {node: '>= 0.4'} 2327 | dependencies: 2328 | call-bind: 1.0.5 2329 | define-properties: 1.2.1 2330 | es-abstract: 1.22.3 2331 | dev: true 2332 | 2333 | /once@1.4.0: 2334 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 2335 | dependencies: 2336 | wrappy: 1.0.2 2337 | 2338 | /onetime@5.1.2: 2339 | resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} 2340 | engines: {node: '>=6'} 2341 | dependencies: 2342 | mimic-fn: 2.1.0 2343 | dev: true 2344 | 2345 | /optionator@0.9.3: 2346 | resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} 2347 | engines: {node: '>= 0.8.0'} 2348 | dependencies: 2349 | '@aashutoshrathi/word-wrap': 1.2.6 2350 | deep-is: 0.1.4 2351 | fast-levenshtein: 2.0.6 2352 | levn: 0.4.1 2353 | prelude-ls: 1.2.1 2354 | type-check: 0.4.0 2355 | dev: true 2356 | 2357 | /p-limit@2.3.0: 2358 | resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} 2359 | engines: {node: '>=6'} 2360 | dependencies: 2361 | p-try: 2.2.0 2362 | dev: true 2363 | 2364 | /p-limit@3.1.0: 2365 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 2366 | engines: {node: '>=10'} 2367 | dependencies: 2368 | yocto-queue: 0.1.0 2369 | dev: true 2370 | 2371 | /p-locate@4.1.0: 2372 | resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} 2373 | engines: {node: '>=8'} 2374 | dependencies: 2375 | p-limit: 2.3.0 2376 | dev: true 2377 | 2378 | /p-locate@5.0.0: 2379 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 2380 | engines: {node: '>=10'} 2381 | dependencies: 2382 | p-limit: 3.1.0 2383 | dev: true 2384 | 2385 | /p-try@2.2.0: 2386 | resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} 2387 | engines: {node: '>=6'} 2388 | dev: true 2389 | 2390 | /parent-module@1.0.1: 2391 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 2392 | engines: {node: '>=6'} 2393 | dependencies: 2394 | callsites: 3.1.0 2395 | dev: true 2396 | 2397 | /path-exists@4.0.0: 2398 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 2399 | engines: {node: '>=8'} 2400 | dev: true 2401 | 2402 | /path-is-absolute@1.0.1: 2403 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 2404 | engines: {node: '>=0.10.0'} 2405 | 2406 | /path-key@3.1.1: 2407 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 2408 | engines: {node: '>=8'} 2409 | dev: true 2410 | 2411 | /path-parse@1.0.7: 2412 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 2413 | 2414 | /path-type@4.0.0: 2415 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 2416 | engines: {node: '>=8'} 2417 | dev: true 2418 | 2419 | /picocolors@1.0.0: 2420 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 2421 | 2422 | /picomatch@2.3.1: 2423 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 2424 | engines: {node: '>=8.6'} 2425 | 2426 | /pify@2.3.0: 2427 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} 2428 | engines: {node: '>=0.10.0'} 2429 | 2430 | /pirates@4.0.6: 2431 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} 2432 | engines: {node: '>= 6'} 2433 | 2434 | /postcss-import@15.1.0(postcss@8.4.31): 2435 | resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} 2436 | engines: {node: '>=14.0.0'} 2437 | peerDependencies: 2438 | postcss: ^8.0.0 2439 | dependencies: 2440 | postcss: 8.4.31 2441 | postcss-value-parser: 4.2.0 2442 | read-cache: 1.0.0 2443 | resolve: 1.22.8 2444 | 2445 | /postcss-js@4.0.1(postcss@8.4.31): 2446 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} 2447 | engines: {node: ^12 || ^14 || >= 16} 2448 | peerDependencies: 2449 | postcss: ^8.4.21 2450 | dependencies: 2451 | camelcase-css: 2.0.1 2452 | postcss: 8.4.31 2453 | 2454 | /postcss-load-config@4.0.1(postcss@8.4.31): 2455 | resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==} 2456 | engines: {node: '>= 14'} 2457 | peerDependencies: 2458 | postcss: '>=8.0.9' 2459 | ts-node: '>=9.0.0' 2460 | peerDependenciesMeta: 2461 | postcss: 2462 | optional: true 2463 | ts-node: 2464 | optional: true 2465 | dependencies: 2466 | lilconfig: 2.1.0 2467 | postcss: 8.4.31 2468 | yaml: 2.3.4 2469 | 2470 | /postcss-nested@6.0.1(postcss@8.4.31): 2471 | resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} 2472 | engines: {node: '>=12.0'} 2473 | peerDependencies: 2474 | postcss: ^8.2.14 2475 | dependencies: 2476 | postcss: 8.4.31 2477 | postcss-selector-parser: 6.0.13 2478 | 2479 | /postcss-selector-parser@6.0.13: 2480 | resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==} 2481 | engines: {node: '>=4'} 2482 | dependencies: 2483 | cssesc: 3.0.0 2484 | util-deprecate: 1.0.2 2485 | 2486 | /postcss-value-parser@4.2.0: 2487 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 2488 | 2489 | /postcss@8.4.31: 2490 | resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} 2491 | engines: {node: ^10 || ^12 || >=14} 2492 | dependencies: 2493 | nanoid: 3.3.7 2494 | picocolors: 1.0.0 2495 | source-map-js: 1.0.2 2496 | 2497 | /prelude-ls@1.2.1: 2498 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 2499 | engines: {node: '>= 0.8.0'} 2500 | dev: true 2501 | 2502 | /prettier@3.0.3: 2503 | resolution: {integrity: sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==} 2504 | engines: {node: '>=14'} 2505 | hasBin: true 2506 | dev: true 2507 | 2508 | /pretty-quick@3.1.3(prettier@3.0.3): 2509 | resolution: {integrity: sha512-kOCi2FJabvuh1as9enxYmrnBC6tVMoVOenMaBqRfsvBHB0cbpYHjdQEpSglpASDFEXVwplpcGR4CLEaisYAFcA==} 2510 | engines: {node: '>=10.13'} 2511 | hasBin: true 2512 | peerDependencies: 2513 | prettier: '>=2.0.0' 2514 | dependencies: 2515 | chalk: 3.0.0 2516 | execa: 4.1.0 2517 | find-up: 4.1.0 2518 | ignore: 5.2.4 2519 | mri: 1.2.0 2520 | multimatch: 4.0.0 2521 | prettier: 3.0.3 2522 | dev: true 2523 | 2524 | /prisma@5.5.2: 2525 | resolution: {integrity: sha512-WQtG6fevOL053yoPl6dbHV+IWgKo25IRN4/pwAGqcWmg7CrtoCzvbDbN9fXUc7QS2KK0LimHIqLsaCOX/vHl8w==} 2526 | engines: {node: '>=16.13'} 2527 | hasBin: true 2528 | requiresBuild: true 2529 | dependencies: 2530 | '@prisma/engines': 5.5.2 2531 | 2532 | /prop-types@15.8.1: 2533 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 2534 | dependencies: 2535 | loose-envify: 1.4.0 2536 | object-assign: 4.1.1 2537 | react-is: 16.13.1 2538 | dev: true 2539 | 2540 | /pump@3.0.0: 2541 | resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} 2542 | dependencies: 2543 | end-of-stream: 1.4.4 2544 | once: 1.4.0 2545 | dev: true 2546 | 2547 | /punycode@2.3.1: 2548 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 2549 | engines: {node: '>=6'} 2550 | dev: true 2551 | 2552 | /queue-microtask@1.2.3: 2553 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 2554 | 2555 | /react-dom@18.2.0(react@18.2.0): 2556 | resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} 2557 | peerDependencies: 2558 | react: ^18.2.0 2559 | dependencies: 2560 | loose-envify: 1.4.0 2561 | react: 18.2.0 2562 | scheduler: 0.23.0 2563 | dev: false 2564 | 2565 | /react-is@16.13.1: 2566 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 2567 | dev: true 2568 | 2569 | /react@18.2.0: 2570 | resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} 2571 | engines: {node: '>=0.10.0'} 2572 | dependencies: 2573 | loose-envify: 1.4.0 2574 | dev: false 2575 | 2576 | /read-cache@1.0.0: 2577 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} 2578 | dependencies: 2579 | pify: 2.3.0 2580 | 2581 | /readdirp@3.6.0: 2582 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 2583 | engines: {node: '>=8.10.0'} 2584 | dependencies: 2585 | picomatch: 2.3.1 2586 | 2587 | /reflect.getprototypeof@1.0.4: 2588 | resolution: {integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==} 2589 | engines: {node: '>= 0.4'} 2590 | dependencies: 2591 | call-bind: 1.0.5 2592 | define-properties: 1.2.1 2593 | es-abstract: 1.22.3 2594 | get-intrinsic: 1.2.2 2595 | globalthis: 1.0.3 2596 | which-builtin-type: 1.1.3 2597 | dev: true 2598 | 2599 | /regenerator-runtime@0.14.0: 2600 | resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==} 2601 | 2602 | /regexp.prototype.flags@1.5.1: 2603 | resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} 2604 | engines: {node: '>= 0.4'} 2605 | dependencies: 2606 | call-bind: 1.0.5 2607 | define-properties: 1.2.1 2608 | set-function-name: 2.0.1 2609 | dev: true 2610 | 2611 | /resolve-from@4.0.0: 2612 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 2613 | engines: {node: '>=4'} 2614 | dev: true 2615 | 2616 | /resolve-pkg-maps@1.0.0: 2617 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 2618 | dev: true 2619 | 2620 | /resolve@1.22.8: 2621 | resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} 2622 | hasBin: true 2623 | dependencies: 2624 | is-core-module: 2.13.1 2625 | path-parse: 1.0.7 2626 | supports-preserve-symlinks-flag: 1.0.0 2627 | 2628 | /resolve@2.0.0-next.5: 2629 | resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} 2630 | hasBin: true 2631 | dependencies: 2632 | is-core-module: 2.13.1 2633 | path-parse: 1.0.7 2634 | supports-preserve-symlinks-flag: 1.0.0 2635 | dev: true 2636 | 2637 | /reusify@1.0.4: 2638 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 2639 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 2640 | 2641 | /rimraf@3.0.2: 2642 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 2643 | hasBin: true 2644 | dependencies: 2645 | glob: 7.2.3 2646 | dev: true 2647 | 2648 | /run-parallel@1.2.0: 2649 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 2650 | dependencies: 2651 | queue-microtask: 1.2.3 2652 | 2653 | /safe-array-concat@1.0.1: 2654 | resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==} 2655 | engines: {node: '>=0.4'} 2656 | dependencies: 2657 | call-bind: 1.0.5 2658 | get-intrinsic: 1.2.2 2659 | has-symbols: 1.0.3 2660 | isarray: 2.0.5 2661 | dev: true 2662 | 2663 | /safe-regex-test@1.0.0: 2664 | resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} 2665 | dependencies: 2666 | call-bind: 1.0.5 2667 | get-intrinsic: 1.2.2 2668 | is-regex: 1.1.4 2669 | dev: true 2670 | 2671 | /scheduler@0.23.0: 2672 | resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} 2673 | dependencies: 2674 | loose-envify: 1.4.0 2675 | dev: false 2676 | 2677 | /semver@6.3.1: 2678 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 2679 | hasBin: true 2680 | 2681 | /semver@7.5.4: 2682 | resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} 2683 | engines: {node: '>=10'} 2684 | hasBin: true 2685 | dependencies: 2686 | lru-cache: 6.0.0 2687 | dev: true 2688 | 2689 | /set-function-length@1.1.1: 2690 | resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==} 2691 | engines: {node: '>= 0.4'} 2692 | dependencies: 2693 | define-data-property: 1.1.1 2694 | get-intrinsic: 1.2.2 2695 | gopd: 1.0.1 2696 | has-property-descriptors: 1.0.1 2697 | dev: true 2698 | 2699 | /set-function-name@2.0.1: 2700 | resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} 2701 | engines: {node: '>= 0.4'} 2702 | dependencies: 2703 | define-data-property: 1.1.1 2704 | functions-have-names: 1.2.3 2705 | has-property-descriptors: 1.0.1 2706 | dev: true 2707 | 2708 | /shebang-command@2.0.0: 2709 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 2710 | engines: {node: '>=8'} 2711 | dependencies: 2712 | shebang-regex: 3.0.0 2713 | dev: true 2714 | 2715 | /shebang-regex@3.0.0: 2716 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 2717 | engines: {node: '>=8'} 2718 | dev: true 2719 | 2720 | /side-channel@1.0.4: 2721 | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} 2722 | dependencies: 2723 | call-bind: 1.0.5 2724 | get-intrinsic: 1.2.2 2725 | object-inspect: 1.13.1 2726 | dev: true 2727 | 2728 | /signal-exit@3.0.7: 2729 | resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} 2730 | dev: true 2731 | 2732 | /slash@3.0.0: 2733 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 2734 | engines: {node: '>=8'} 2735 | dev: true 2736 | 2737 | /source-map-js@1.0.2: 2738 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} 2739 | engines: {node: '>=0.10.0'} 2740 | 2741 | /streamsearch@1.1.0: 2742 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} 2743 | engines: {node: '>=10.0.0'} 2744 | dev: false 2745 | 2746 | /string.prototype.matchall@4.0.10: 2747 | resolution: {integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==} 2748 | dependencies: 2749 | call-bind: 1.0.5 2750 | define-properties: 1.2.1 2751 | es-abstract: 1.22.3 2752 | get-intrinsic: 1.2.2 2753 | has-symbols: 1.0.3 2754 | internal-slot: 1.0.6 2755 | regexp.prototype.flags: 1.5.1 2756 | set-function-name: 2.0.1 2757 | side-channel: 1.0.4 2758 | dev: true 2759 | 2760 | /string.prototype.trim@1.2.8: 2761 | resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} 2762 | engines: {node: '>= 0.4'} 2763 | dependencies: 2764 | call-bind: 1.0.5 2765 | define-properties: 1.2.1 2766 | es-abstract: 1.22.3 2767 | dev: true 2768 | 2769 | /string.prototype.trimend@1.0.7: 2770 | resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} 2771 | dependencies: 2772 | call-bind: 1.0.5 2773 | define-properties: 1.2.1 2774 | es-abstract: 1.22.3 2775 | dev: true 2776 | 2777 | /string.prototype.trimstart@1.0.7: 2778 | resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} 2779 | dependencies: 2780 | call-bind: 1.0.5 2781 | define-properties: 1.2.1 2782 | es-abstract: 1.22.3 2783 | dev: true 2784 | 2785 | /strip-ansi@6.0.1: 2786 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 2787 | engines: {node: '>=8'} 2788 | dependencies: 2789 | ansi-regex: 5.0.1 2790 | dev: true 2791 | 2792 | /strip-bom@3.0.0: 2793 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 2794 | engines: {node: '>=4'} 2795 | dev: true 2796 | 2797 | /strip-final-newline@2.0.0: 2798 | resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} 2799 | engines: {node: '>=6'} 2800 | dev: true 2801 | 2802 | /strip-json-comments@3.1.1: 2803 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 2804 | engines: {node: '>=8'} 2805 | dev: true 2806 | 2807 | /styled-jsx@5.1.1(@babel/core@7.23.3)(react@18.2.0): 2808 | resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} 2809 | engines: {node: '>= 12.0.0'} 2810 | peerDependencies: 2811 | '@babel/core': '*' 2812 | babel-plugin-macros: '*' 2813 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' 2814 | peerDependenciesMeta: 2815 | '@babel/core': 2816 | optional: true 2817 | babel-plugin-macros: 2818 | optional: true 2819 | dependencies: 2820 | '@babel/core': 7.23.3 2821 | client-only: 0.0.1 2822 | react: 18.2.0 2823 | dev: false 2824 | 2825 | /sucrase@3.34.0: 2826 | resolution: {integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==} 2827 | engines: {node: '>=8'} 2828 | hasBin: true 2829 | dependencies: 2830 | '@jridgewell/gen-mapping': 0.3.3 2831 | commander: 4.1.1 2832 | glob: 7.1.6 2833 | lines-and-columns: 1.2.4 2834 | mz: 2.7.0 2835 | pirates: 4.0.6 2836 | ts-interface-checker: 0.1.13 2837 | 2838 | /supports-color@5.5.0: 2839 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 2840 | engines: {node: '>=4'} 2841 | dependencies: 2842 | has-flag: 3.0.0 2843 | 2844 | /supports-color@7.2.0: 2845 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 2846 | engines: {node: '>=8'} 2847 | dependencies: 2848 | has-flag: 4.0.0 2849 | dev: true 2850 | 2851 | /supports-preserve-symlinks-flag@1.0.0: 2852 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 2853 | engines: {node: '>= 0.4'} 2854 | 2855 | /tailwind-merge@2.0.0: 2856 | resolution: {integrity: sha512-WO8qghn9yhsldLSg80au+3/gY9E4hFxIvQ3qOmlpXnqpDKoMruKfi/56BbbMg6fHTQJ9QD3cc79PoWqlaQE4rw==} 2857 | dependencies: 2858 | '@babel/runtime': 7.23.2 2859 | dev: false 2860 | 2861 | /tailwindcss-animate@1.0.7(tailwindcss@3.3.5): 2862 | resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==} 2863 | peerDependencies: 2864 | tailwindcss: '>=3.0.0 || insiders' 2865 | dependencies: 2866 | tailwindcss: 3.3.5 2867 | dev: false 2868 | 2869 | /tailwindcss@3.3.5: 2870 | resolution: {integrity: sha512-5SEZU4J7pxZgSkv7FP1zY8i2TIAOooNZ1e/OGtxIEv6GltpoiXUqWvLy89+a10qYTB1N5Ifkuw9lqQkN9sscvA==} 2871 | engines: {node: '>=14.0.0'} 2872 | hasBin: true 2873 | dependencies: 2874 | '@alloc/quick-lru': 5.2.0 2875 | arg: 5.0.2 2876 | chokidar: 3.5.3 2877 | didyoumean: 1.2.2 2878 | dlv: 1.1.3 2879 | fast-glob: 3.3.2 2880 | glob-parent: 6.0.2 2881 | is-glob: 4.0.3 2882 | jiti: 1.21.0 2883 | lilconfig: 2.1.0 2884 | micromatch: 4.0.5 2885 | normalize-path: 3.0.0 2886 | object-hash: 3.0.0 2887 | picocolors: 1.0.0 2888 | postcss: 8.4.31 2889 | postcss-import: 15.1.0(postcss@8.4.31) 2890 | postcss-js: 4.0.1(postcss@8.4.31) 2891 | postcss-load-config: 4.0.1(postcss@8.4.31) 2892 | postcss-nested: 6.0.1(postcss@8.4.31) 2893 | postcss-selector-parser: 6.0.13 2894 | resolve: 1.22.8 2895 | sucrase: 3.34.0 2896 | transitivePeerDependencies: 2897 | - ts-node 2898 | 2899 | /tapable@2.2.1: 2900 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 2901 | engines: {node: '>=6'} 2902 | dev: true 2903 | 2904 | /text-table@0.2.0: 2905 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 2906 | dev: true 2907 | 2908 | /thenify-all@1.6.0: 2909 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 2910 | engines: {node: '>=0.8'} 2911 | dependencies: 2912 | thenify: 3.3.1 2913 | 2914 | /thenify@3.3.1: 2915 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 2916 | dependencies: 2917 | any-promise: 1.3.0 2918 | 2919 | /to-fast-properties@2.0.0: 2920 | resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} 2921 | engines: {node: '>=4'} 2922 | 2923 | /to-regex-range@5.0.1: 2924 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 2925 | engines: {node: '>=8.0'} 2926 | dependencies: 2927 | is-number: 7.0.0 2928 | 2929 | /ts-api-utils@1.0.3(typescript@5.2.2): 2930 | resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==} 2931 | engines: {node: '>=16.13.0'} 2932 | peerDependencies: 2933 | typescript: '>=4.2.0' 2934 | dependencies: 2935 | typescript: 5.2.2 2936 | dev: true 2937 | 2938 | /ts-interface-checker@0.1.13: 2939 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} 2940 | 2941 | /tsconfig-paths@3.14.2: 2942 | resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} 2943 | dependencies: 2944 | '@types/json5': 0.0.29 2945 | json5: 1.0.2 2946 | minimist: 1.2.8 2947 | strip-bom: 3.0.0 2948 | dev: true 2949 | 2950 | /tslib@2.6.2: 2951 | resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} 2952 | dev: false 2953 | 2954 | /type-check@0.4.0: 2955 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 2956 | engines: {node: '>= 0.8.0'} 2957 | dependencies: 2958 | prelude-ls: 1.2.1 2959 | dev: true 2960 | 2961 | /type-fest@0.20.2: 2962 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 2963 | engines: {node: '>=10'} 2964 | dev: true 2965 | 2966 | /typed-array-buffer@1.0.0: 2967 | resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} 2968 | engines: {node: '>= 0.4'} 2969 | dependencies: 2970 | call-bind: 1.0.5 2971 | get-intrinsic: 1.2.2 2972 | is-typed-array: 1.1.12 2973 | dev: true 2974 | 2975 | /typed-array-byte-length@1.0.0: 2976 | resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} 2977 | engines: {node: '>= 0.4'} 2978 | dependencies: 2979 | call-bind: 1.0.5 2980 | for-each: 0.3.3 2981 | has-proto: 1.0.1 2982 | is-typed-array: 1.1.12 2983 | dev: true 2984 | 2985 | /typed-array-byte-offset@1.0.0: 2986 | resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} 2987 | engines: {node: '>= 0.4'} 2988 | dependencies: 2989 | available-typed-arrays: 1.0.5 2990 | call-bind: 1.0.5 2991 | for-each: 0.3.3 2992 | has-proto: 1.0.1 2993 | is-typed-array: 1.1.12 2994 | dev: true 2995 | 2996 | /typed-array-length@1.0.4: 2997 | resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} 2998 | dependencies: 2999 | call-bind: 1.0.5 3000 | for-each: 0.3.3 3001 | is-typed-array: 1.1.12 3002 | dev: true 3003 | 3004 | /typescript@5.2.2: 3005 | resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==} 3006 | engines: {node: '>=14.17'} 3007 | hasBin: true 3008 | dev: true 3009 | 3010 | /unbox-primitive@1.0.2: 3011 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 3012 | dependencies: 3013 | call-bind: 1.0.5 3014 | has-bigints: 1.0.2 3015 | has-symbols: 1.0.3 3016 | which-boxed-primitive: 1.0.2 3017 | dev: true 3018 | 3019 | /undici-types@5.26.5: 3020 | resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} 3021 | dev: true 3022 | 3023 | /update-browserslist-db@1.0.13(browserslist@4.22.1): 3024 | resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} 3025 | hasBin: true 3026 | peerDependencies: 3027 | browserslist: '>= 4.21.0' 3028 | dependencies: 3029 | browserslist: 4.22.1 3030 | escalade: 3.1.1 3031 | picocolors: 1.0.0 3032 | 3033 | /uri-js@4.4.1: 3034 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 3035 | dependencies: 3036 | punycode: 2.3.1 3037 | dev: true 3038 | 3039 | /util-deprecate@1.0.2: 3040 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 3041 | 3042 | /watchpack@2.4.0: 3043 | resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} 3044 | engines: {node: '>=10.13.0'} 3045 | dependencies: 3046 | glob-to-regexp: 0.4.1 3047 | graceful-fs: 4.2.11 3048 | dev: false 3049 | 3050 | /which-boxed-primitive@1.0.2: 3051 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 3052 | dependencies: 3053 | is-bigint: 1.0.4 3054 | is-boolean-object: 1.1.2 3055 | is-number-object: 1.0.7 3056 | is-string: 1.0.7 3057 | is-symbol: 1.0.4 3058 | dev: true 3059 | 3060 | /which-builtin-type@1.1.3: 3061 | resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} 3062 | engines: {node: '>= 0.4'} 3063 | dependencies: 3064 | function.prototype.name: 1.1.6 3065 | has-tostringtag: 1.0.0 3066 | is-async-function: 2.0.0 3067 | is-date-object: 1.0.5 3068 | is-finalizationregistry: 1.0.2 3069 | is-generator-function: 1.0.10 3070 | is-regex: 1.1.4 3071 | is-weakref: 1.0.2 3072 | isarray: 2.0.5 3073 | which-boxed-primitive: 1.0.2 3074 | which-collection: 1.0.1 3075 | which-typed-array: 1.1.13 3076 | dev: true 3077 | 3078 | /which-collection@1.0.1: 3079 | resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} 3080 | dependencies: 3081 | is-map: 2.0.2 3082 | is-set: 2.0.2 3083 | is-weakmap: 2.0.1 3084 | is-weakset: 2.0.2 3085 | dev: true 3086 | 3087 | /which-typed-array@1.1.13: 3088 | resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==} 3089 | engines: {node: '>= 0.4'} 3090 | dependencies: 3091 | available-typed-arrays: 1.0.5 3092 | call-bind: 1.0.5 3093 | for-each: 0.3.3 3094 | gopd: 1.0.1 3095 | has-tostringtag: 1.0.0 3096 | dev: true 3097 | 3098 | /which@2.0.2: 3099 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 3100 | engines: {node: '>= 8'} 3101 | hasBin: true 3102 | dependencies: 3103 | isexe: 2.0.0 3104 | dev: true 3105 | 3106 | /wrappy@1.0.2: 3107 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 3108 | 3109 | /yallist@3.1.1: 3110 | resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} 3111 | 3112 | /yallist@4.0.0: 3113 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 3114 | dev: true 3115 | 3116 | /yaml@2.3.4: 3117 | resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} 3118 | engines: {node: '>= 14'} 3119 | 3120 | /yocto-queue@0.1.0: 3121 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 3122 | engines: {node: '>=10'} 3123 | dev: true 3124 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('prettier').Config} */ 2 | module.exports = { 3 | plugins: ["@ianvs/prettier-plugin-sort-imports"], 4 | endOfLine: "lf", 5 | semi: false, 6 | singleQuote: false, 7 | tabWidth: 2, 8 | trailingComma: "es5", 9 | importOrder: [ 10 | "^(react/(.*)$)|^(react$)", 11 | "^(next/(.*)$)|^(next$)", 12 | "", 13 | "", 14 | "^types$", 15 | "^@/types/(.*)$", 16 | "^@/config/(.*)$", 17 | "^@/lib/(.*)$", 18 | "^@/hooks/(.*)$", 19 | "^@/ui/styles/(.*)$", 20 | "^@/ui/components/(.*)$", 21 | "^@/ui/icons/(.*)$", 22 | "^@/features/(.*)$", 23 | "^@/app/(.*)$", 24 | "", 25 | "^[./]", 26 | ], 27 | importOrderParserPlugins: ["typescript", "jsx", "decorators-legacy"], 28 | } 29 | -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- 1 | // This is your Prisma schema file, 2 | // learn more about it in the docs: https://pris.ly/d/prisma-schema 3 | 4 | generator client { 5 | provider = "prisma-client-js" 6 | } 7 | 8 | datasource db { 9 | provider = "mysql" 10 | url = env("DATABASE_URL") 11 | } 12 | 13 | model Todo { 14 | id Int @id @default(autoincrement()) 15 | title String @db.VarChar(255) 16 | content String? 17 | done Boolean @default(false) 18 | published Boolean @default(true) 19 | createdAt DateTime @default(now()) 20 | updatedAt DateTime @updatedAt 21 | } 22 | -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/_components/save-todo.tsx: -------------------------------------------------------------------------------- 1 | "use client" 2 | 3 | import { Button } from "@/components/ui/button" 4 | import { useFormStatus } from "react-dom" 5 | 6 | export function SaveTodo() { 7 | const { pending } = useFormStatus() 8 | 9 | return ( 10 | 17 | ) 18 | } 19 | -------------------------------------------------------------------------------- /src/app/_components/submit-todo.tsx: -------------------------------------------------------------------------------- 1 | "use client" 2 | 3 | import { Button } from "@/components/ui/button" 4 | import { useFormStatus } from "react-dom" 5 | 6 | export function SubmitTodo() { 7 | const { pending } = useFormStatus() 8 | 9 | return ( 10 | 13 | ) 14 | } 15 | -------------------------------------------------------------------------------- /src/app/_components/todo-form.tsx: -------------------------------------------------------------------------------- 1 | import { Input } from "@/components/ui/input" 2 | 3 | import { SubmitTodo } from "@/app/_components/submit-todo" 4 | import { createTodo } from "@/app/actions/createTodo" 5 | 6 | const TodoForm = () => { 7 | return ( 8 |
9 | 16 | 17 | 18 | ) 19 | } 20 | 21 | export default TodoForm 22 | -------------------------------------------------------------------------------- /src/app/_components/todo-item.tsx: -------------------------------------------------------------------------------- 1 | import Link from "next/link" 2 | import { Button } from "@/components/ui/button" 3 | import type { Todo } from "@prisma/client" 4 | 5 | import { cn } from "@/lib/utils" 6 | import { updateTodo } from "@/app/actions/updateTodo" 7 | 8 | import { deleteTodo } from "../actions/deleteTodo" 9 | 10 | const TodoItem = ({ 11 | id, 12 | title, 13 | content, 14 | done, 15 | }: Pick) => { 16 | const updateTodoWithId = updateTodo.bind(null, { id, done }) 17 | const deleteTodoWithId = deleteTodo.bind(null, id) 18 | 19 | return ( 20 |
  • 21 |
    22 | 23 |

    28 | {title} 29 |

    30 | 31 |
    32 |
    33 | 36 |
    37 | 38 |
    39 | 42 |
    43 |
    44 |
    45 |

    {content}

    46 |
  • 47 | ) 48 | } 49 | 50 | export default TodoItem 51 | -------------------------------------------------------------------------------- /src/app/actions/createTodo.ts: -------------------------------------------------------------------------------- 1 | import { revalidatePath } from "next/cache" 2 | 3 | import { prisma } from "@/lib/prisma" 4 | 5 | export const createTodo = async (formData: FormData) => { 6 | "use server" 7 | 8 | const title = formData.get("title") as string 9 | 10 | try { 11 | if (title) { 12 | await prisma.todo.create({ 13 | data: { 14 | title, 15 | }, 16 | }) 17 | } 18 | 19 | return revalidatePath("/") 20 | } catch (e) { 21 | return { message: "Failed to create" } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/app/actions/deleteTodo.ts: -------------------------------------------------------------------------------- 1 | import { revalidatePath } from "next/cache" 2 | 3 | import { prisma } from "@/lib/prisma" 4 | 5 | export const deleteTodo = async (id: number) => { 6 | "use server" 7 | 8 | try { 9 | await prisma.todo.delete({ 10 | where: { 11 | id, 12 | }, 13 | }) 14 | 15 | return revalidatePath("/") 16 | } catch (e) { 17 | return { message: "Failed to create" } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/app/actions/updateTodo.ts: -------------------------------------------------------------------------------- 1 | import { revalidatePath } from "next/cache" 2 | import { redirect } from "next/navigation" 3 | import type { Todo } from "@prisma/client" 4 | 5 | import { prisma } from "@/lib/prisma" 6 | 7 | export const updateTodo = async ( 8 | todoConfig: Partial, 9 | formData: FormData 10 | ) => { 11 | "use server" 12 | 13 | const title = formData.get("title") as string 14 | const content = formData.get("content") as string 15 | 16 | if (title && content) { 17 | await prisma.todo.update({ 18 | data: { 19 | title, 20 | content, 21 | }, 22 | where: { 23 | id: todoConfig.id, 24 | }, 25 | }) 26 | } else { 27 | await prisma.todo.update({ 28 | data: { 29 | done: !todoConfig.done, 30 | }, 31 | where: { 32 | id: todoConfig.id, 33 | }, 34 | }) 35 | } 36 | 37 | revalidatePath("/") 38 | redirect("/") 39 | } 40 | -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smakosh/next-todo-app/c77e063a9f210a526cfebf8bbca518329539bd70/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | @layer base { 6 | :root { 7 | --background: 0 0% 100%; 8 | --foreground: 222.2 84% 4.9%; 9 | 10 | --card: 0 0% 100%; 11 | --card-foreground: 222.2 84% 4.9%; 12 | 13 | --popover: 0 0% 100%; 14 | --popover-foreground: 222.2 84% 4.9%; 15 | 16 | --primary: 222.2 47.4% 11.2%; 17 | --primary-foreground: 210 40% 98%; 18 | 19 | --secondary: 210 40% 96.1%; 20 | --secondary-foreground: 222.2 47.4% 11.2%; 21 | 22 | --muted: 210 40% 96.1%; 23 | --muted-foreground: 215.4 16.3% 46.9%; 24 | 25 | --accent: 210 40% 96.1%; 26 | --accent-foreground: 222.2 47.4% 11.2%; 27 | 28 | --destructive: 0 84.2% 60.2%; 29 | --destructive-foreground: 210 40% 98%; 30 | 31 | --border: 214.3 31.8% 91.4%; 32 | --input: 214.3 31.8% 91.4%; 33 | --ring: 222.2 84% 4.9%; 34 | 35 | --radius: 0.5rem; 36 | } 37 | 38 | .dark { 39 | --background: 222.2 84% 4.9%; 40 | --foreground: 210 40% 98%; 41 | 42 | --card: 222.2 84% 4.9%; 43 | --card-foreground: 210 40% 98%; 44 | 45 | --popover: 222.2 84% 4.9%; 46 | --popover-foreground: 210 40% 98%; 47 | 48 | --primary: 210 40% 98%; 49 | --primary-foreground: 222.2 47.4% 11.2%; 50 | 51 | --secondary: 217.2 32.6% 17.5%; 52 | --secondary-foreground: 210 40% 98%; 53 | 54 | --muted: 217.2 32.6% 17.5%; 55 | --muted-foreground: 215 20.2% 65.1%; 56 | 57 | --accent: 217.2 32.6% 17.5%; 58 | --accent-foreground: 210 40% 98%; 59 | 60 | --destructive: 0 62.8% 30.6%; 61 | --destructive-foreground: 210 40% 98%; 62 | 63 | --border: 217.2 32.6% 17.5%; 64 | --input: 217.2 32.6% 17.5%; 65 | --ring: 212.7 26.8% 83.9%; 66 | } 67 | } 68 | 69 | @layer base { 70 | * { 71 | @apply border-border; 72 | } 73 | body { 74 | @apply bg-background text-foreground; 75 | } 76 | } -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- 1 | import type { Metadata } from "next" 2 | import { Inter as FontSans } from "next/font/google" 3 | 4 | import "./globals.css" 5 | 6 | import { cn } from "@/lib/utils" 7 | 8 | export const fontSans = FontSans({ 9 | subsets: ["latin"], 10 | variable: "--font-sans", 11 | }) 12 | 13 | export const metadata: Metadata = { 14 | title: "Create Next App", 15 | description: "Generated by create next app", 16 | } 17 | 18 | export default function RootLayout({ 19 | children, 20 | }: { 21 | children: React.ReactNode 22 | }) { 23 | return ( 24 | 25 | 31 | {children} 32 |
    33 |

    © 2023 Todo App. All rights reserved.

    34 |
    35 | 36 | 37 | ) 38 | } 39 | -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- 1 | import { prisma } from "@/lib/prisma" 2 | 3 | import TodoForm from "./_components/todo-form" 4 | import TodoItem from "./_components/todo-item" 5 | 6 | export default async function Home() { 7 | const todos = await prisma.todo.findMany({ 8 | orderBy: { 9 | updatedAt: "desc", 10 | }, 11 | }) 12 | 13 | return ( 14 |
    15 |
    16 |

    Todo App

    17 |
    18 |
    19 |
    20 | 21 | {todos?.length > 0 ? ( 22 |
      23 | {todos.map(({ id, title, content, done }) => ( 24 | 31 | ))} 32 |
    33 | ) : null} 34 |
    35 |
    36 |
    37 | ) 38 | } 39 | -------------------------------------------------------------------------------- /src/app/todo/[id]/_components/edit-todo-form.tsx: -------------------------------------------------------------------------------- 1 | import { Input } from "@/components/ui/input" 2 | import type { Todo } from "@prisma/client" 3 | 4 | import { SaveTodo } from "@/app/_components/save-todo" 5 | import { updateTodo } from "@/app/actions/updateTodo" 6 | 7 | const EditTodoForm = ({ 8 | id, 9 | title, 10 | content, 11 | }: Pick) => { 12 | const handleUpdateTodo = updateTodo.bind(null, { id }) 13 | return ( 14 |
    15 |
    16 | 22 | 30 |
    31 |
    32 | 38 |