├── .env ├── .eslintrc.json ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── next-auth-fullstack.code-workspace ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── next.svg └── vercel.svg ├── src ├── app │ ├── api │ │ └── auth │ │ │ └── [...nextauth] │ │ │ └── route.ts │ ├── dashboard │ │ ├── layout.tsx │ │ ├── page.tsx │ │ └── user │ │ │ └── [id] │ │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── page.tsx │ └── signup │ │ └── page.tsx ├── components │ ├── AppBar.tsx │ ├── Button.tsx │ ├── InputBox.tsx │ ├── Providers.tsx │ └── SignInButton.tsx ├── lib │ ├── Constants.ts │ ├── next-auth.d.ts │ └── types.d.ts └── middleware.ts ├── tailwind.config.js └── tsconfig.json /.env: -------------------------------------------------------------------------------- 1 | # Environment variables declared in this file are automatically made available to Prisma. 2 | # See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema 3 | 4 | # Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB. 5 | # See the documentation for all the connection string options: https://pris.ly/d/connection-strings 6 | 7 | 8 | 9 | NEXTAUTH_SECRET=lsdkmlskdmflksdkskmsdnkj 10 | NEXTAUTH_URL=http://localhost:3000 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.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 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | 15 | # production 16 | /build 17 | 18 | # misc 19 | .DS_Store 20 | *.pem 21 | 22 | # debug 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | 27 | # local env files 28 | .env*.local 29 | 30 | # vercel 31 | .vercel 32 | 33 | # typescript 34 | *.tsbuildinfo 35 | next-env.d.ts 36 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "typescript.tsdk": "node_modules/typescript/lib", 3 | "typescript.enablePromptUseWorkspaceTsdk": true 4 | } -------------------------------------------------------------------------------- /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 | npm run dev 9 | # or 10 | yarn dev 11 | # or 12 | pnpm dev 13 | ``` 14 | 15 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. 16 | 17 | You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. 18 | 19 | [http://localhost:3000/api/hello](http://localhost:3000/api/hello) is an endpoint that uses [Route Handlers](https://beta.nextjs.org/docs/routing/route-handlers). This endpoint can be edited in `app/api/hello/route.ts`. 20 | 21 | This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. 22 | 23 | ## Learn More 24 | 25 | To learn more about Next.js, take a look at the following resources: 26 | 27 | - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. 28 | - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. 29 | 30 | You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! 31 | 32 | ## Deploy on Vercel 33 | 34 | The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. 35 | 36 | Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. 37 | -------------------------------------------------------------------------------- /next-auth-fullstack.code-workspace: -------------------------------------------------------------------------------- 1 | { 2 | "folders": [ 3 | { 4 | "path": "." 5 | } 6 | ], 7 | "settings": { 8 | "typescript.tsdk": "node_modules/typescript/lib", 9 | "typescript.enablePromptUseWorkspaceTsdk": true, 10 | "prettier.printWidth": 75, 11 | "window.zoomLevel": 2, 12 | "editor.wordWrap": "on", 13 | "editor.fontSize": 16, 14 | "editor.hover.enabled": false 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = { 3 | experimental: { 4 | serverActions: true, 5 | }, 6 | }; 7 | 8 | module.exports = nextConfig; 9 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "auth-nextjs", 3 | "version": "0.1.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "auth-nextjs", 9 | "version": "0.1.0", 10 | "dependencies": { 11 | "@headlessui/react": "^1.7.17", 12 | "@types/node": "20.5.1", 13 | "@types/react": "18.2.20", 14 | "@types/react-dom": "18.2.7", 15 | "autoprefixer": "10.4.15", 16 | "eslint": "8.47.0", 17 | "eslint-config-next": "13.4.19", 18 | "next": "13.4.19", 19 | "next-auth": "^4.23.1", 20 | "postcss": "8.4.28", 21 | "react": "18.2.0", 22 | "react-dom": "18.2.0", 23 | "tailwind-merge": "^1.14.0", 24 | "tailwindcss": "3.3.3", 25 | "typescript": "5.1.6" 26 | } 27 | }, 28 | "node_modules/@aashutoshrathi/word-wrap": { 29 | "version": "1.2.6", 30 | "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", 31 | "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", 32 | "engines": { 33 | "node": ">=0.10.0" 34 | } 35 | }, 36 | "node_modules/@alloc/quick-lru": { 37 | "version": "5.2.0", 38 | "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", 39 | "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", 40 | "engines": { 41 | "node": ">=10" 42 | }, 43 | "funding": { 44 | "url": "https://github.com/sponsors/sindresorhus" 45 | } 46 | }, 47 | "node_modules/@babel/runtime": { 48 | "version": "7.21.0", 49 | "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", 50 | "integrity": "sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==", 51 | "dependencies": { 52 | "regenerator-runtime": "^0.13.11" 53 | }, 54 | "engines": { 55 | "node": ">=6.9.0" 56 | } 57 | }, 58 | "node_modules/@eslint-community/eslint-utils": { 59 | "version": "4.4.0", 60 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 61 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 62 | "dependencies": { 63 | "eslint-visitor-keys": "^3.3.0" 64 | }, 65 | "engines": { 66 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 67 | }, 68 | "peerDependencies": { 69 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 70 | } 71 | }, 72 | "node_modules/@eslint-community/regexpp": { 73 | "version": "4.6.2", 74 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.6.2.tgz", 75 | "integrity": "sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==", 76 | "engines": { 77 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 78 | } 79 | }, 80 | "node_modules/@eslint/eslintrc": { 81 | "version": "2.1.2", 82 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz", 83 | "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", 84 | "dependencies": { 85 | "ajv": "^6.12.4", 86 | "debug": "^4.3.2", 87 | "espree": "^9.6.0", 88 | "globals": "^13.19.0", 89 | "ignore": "^5.2.0", 90 | "import-fresh": "^3.2.1", 91 | "js-yaml": "^4.1.0", 92 | "minimatch": "^3.1.2", 93 | "strip-json-comments": "^3.1.1" 94 | }, 95 | "engines": { 96 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 97 | }, 98 | "funding": { 99 | "url": "https://opencollective.com/eslint" 100 | } 101 | }, 102 | "node_modules/@eslint/js": { 103 | "version": "8.47.0", 104 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.47.0.tgz", 105 | "integrity": "sha512-P6omY1zv5MItm93kLM8s2vr1HICJH8v0dvddDhysbIuZ+vcjOHg5Zbkf1mTkcmi2JA9oBG2anOkRnW8WJTS8Og==", 106 | "engines": { 107 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 108 | } 109 | }, 110 | "node_modules/@headlessui/react": { 111 | "version": "1.7.17", 112 | "resolved": "https://registry.npmjs.org/@headlessui/react/-/react-1.7.17.tgz", 113 | "integrity": "sha512-4am+tzvkqDSSgiwrsEpGWqgGo9dz8qU5M3znCkC4PgkpY4HcCZzEDEvozltGGGHIKl9jbXbZPSH5TWn4sWJdow==", 114 | "dependencies": { 115 | "client-only": "^0.0.1" 116 | }, 117 | "engines": { 118 | "node": ">=10" 119 | }, 120 | "peerDependencies": { 121 | "react": "^16 || ^17 || ^18", 122 | "react-dom": "^16 || ^17 || ^18" 123 | } 124 | }, 125 | "node_modules/@humanwhocodes/config-array": { 126 | "version": "0.11.10", 127 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz", 128 | "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==", 129 | "dependencies": { 130 | "@humanwhocodes/object-schema": "^1.2.1", 131 | "debug": "^4.1.1", 132 | "minimatch": "^3.0.5" 133 | }, 134 | "engines": { 135 | "node": ">=10.10.0" 136 | } 137 | }, 138 | "node_modules/@humanwhocodes/module-importer": { 139 | "version": "1.0.1", 140 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 141 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 142 | "engines": { 143 | "node": ">=12.22" 144 | }, 145 | "funding": { 146 | "type": "github", 147 | "url": "https://github.com/sponsors/nzakas" 148 | } 149 | }, 150 | "node_modules/@humanwhocodes/object-schema": { 151 | "version": "1.2.1", 152 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", 153 | "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" 154 | }, 155 | "node_modules/@jridgewell/gen-mapping": { 156 | "version": "0.3.3", 157 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", 158 | "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", 159 | "dependencies": { 160 | "@jridgewell/set-array": "^1.0.1", 161 | "@jridgewell/sourcemap-codec": "^1.4.10", 162 | "@jridgewell/trace-mapping": "^0.3.9" 163 | }, 164 | "engines": { 165 | "node": ">=6.0.0" 166 | } 167 | }, 168 | "node_modules/@jridgewell/resolve-uri": { 169 | "version": "3.1.0", 170 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", 171 | "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", 172 | "engines": { 173 | "node": ">=6.0.0" 174 | } 175 | }, 176 | "node_modules/@jridgewell/set-array": { 177 | "version": "1.1.2", 178 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", 179 | "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", 180 | "engines": { 181 | "node": ">=6.0.0" 182 | } 183 | }, 184 | "node_modules/@jridgewell/sourcemap-codec": { 185 | "version": "1.4.15", 186 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", 187 | "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" 188 | }, 189 | "node_modules/@jridgewell/trace-mapping": { 190 | "version": "0.3.18", 191 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", 192 | "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", 193 | "dependencies": { 194 | "@jridgewell/resolve-uri": "3.1.0", 195 | "@jridgewell/sourcemap-codec": "1.4.14" 196 | } 197 | }, 198 | "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { 199 | "version": "1.4.14", 200 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", 201 | "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" 202 | }, 203 | "node_modules/@next/env": { 204 | "version": "13.4.19", 205 | "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.19.tgz", 206 | "integrity": "sha512-FsAT5x0jF2kkhNkKkukhsyYOrRqtSxrEhfliniIq0bwWbuXLgyt3Gv0Ml+b91XwjwArmuP7NxCiGd++GGKdNMQ==" 207 | }, 208 | "node_modules/@next/eslint-plugin-next": { 209 | "version": "13.4.19", 210 | "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.19.tgz", 211 | "integrity": "sha512-N/O+zGb6wZQdwu6atMZHbR7T9Np5SUFUjZqCbj0sXm+MwQO35M8TazVB4otm87GkXYs2l6OPwARd3/PUWhZBVQ==", 212 | "dependencies": { 213 | "glob": "7.1.7" 214 | } 215 | }, 216 | "node_modules/@next/swc-darwin-arm64": { 217 | "version": "13.4.19", 218 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.19.tgz", 219 | "integrity": "sha512-vv1qrjXeGbuF2mOkhkdxMDtv9np7W4mcBtaDnHU+yJG+bBwa6rYsYSCI/9Xm5+TuF5SbZbrWO6G1NfTh1TMjvQ==", 220 | "cpu": [ 221 | "arm64" 222 | ], 223 | "optional": true, 224 | "os": [ 225 | "darwin" 226 | ], 227 | "engines": { 228 | "node": ">= 10" 229 | } 230 | }, 231 | "node_modules/@next/swc-darwin-x64": { 232 | "version": "13.4.19", 233 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.19.tgz", 234 | "integrity": "sha512-jyzO6wwYhx6F+7gD8ddZfuqO4TtpJdw3wyOduR4fxTUCm3aLw7YmHGYNjS0xRSYGAkLpBkH1E0RcelyId6lNsw==", 235 | "cpu": [ 236 | "x64" 237 | ], 238 | "optional": true, 239 | "os": [ 240 | "darwin" 241 | ], 242 | "engines": { 243 | "node": ">= 10" 244 | } 245 | }, 246 | "node_modules/@next/swc-linux-arm64-gnu": { 247 | "version": "13.4.19", 248 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.19.tgz", 249 | "integrity": "sha512-vdlnIlaAEh6H+G6HrKZB9c2zJKnpPVKnA6LBwjwT2BTjxI7e0Hx30+FoWCgi50e+YO49p6oPOtesP9mXDRiiUg==", 250 | "cpu": [ 251 | "arm64" 252 | ], 253 | "optional": true, 254 | "os": [ 255 | "linux" 256 | ], 257 | "engines": { 258 | "node": ">= 10" 259 | } 260 | }, 261 | "node_modules/@next/swc-linux-arm64-musl": { 262 | "version": "13.4.19", 263 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.19.tgz", 264 | "integrity": "sha512-aU0HkH2XPgxqrbNRBFb3si9Ahu/CpaR5RPmN2s9GiM9qJCiBBlZtRTiEca+DC+xRPyCThTtWYgxjWHgU7ZkyvA==", 265 | "cpu": [ 266 | "arm64" 267 | ], 268 | "optional": true, 269 | "os": [ 270 | "linux" 271 | ], 272 | "engines": { 273 | "node": ">= 10" 274 | } 275 | }, 276 | "node_modules/@next/swc-linux-x64-gnu": { 277 | "version": "13.4.19", 278 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.19.tgz", 279 | "integrity": "sha512-htwOEagMa/CXNykFFeAHHvMJeqZfNQEoQvHfsA4wgg5QqGNqD5soeCer4oGlCol6NGUxknrQO6VEustcv+Md+g==", 280 | "cpu": [ 281 | "x64" 282 | ], 283 | "optional": true, 284 | "os": [ 285 | "linux" 286 | ], 287 | "engines": { 288 | "node": ">= 10" 289 | } 290 | }, 291 | "node_modules/@next/swc-linux-x64-musl": { 292 | "version": "13.4.19", 293 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.19.tgz", 294 | "integrity": "sha512-4Gj4vvtbK1JH8ApWTT214b3GwUh9EKKQjY41hH/t+u55Knxi/0wesMzwQRhppK6Ddalhu0TEttbiJ+wRcoEj5Q==", 295 | "cpu": [ 296 | "x64" 297 | ], 298 | "optional": true, 299 | "os": [ 300 | "linux" 301 | ], 302 | "engines": { 303 | "node": ">= 10" 304 | } 305 | }, 306 | "node_modules/@next/swc-win32-arm64-msvc": { 307 | "version": "13.4.19", 308 | "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.19.tgz", 309 | "integrity": "sha512-bUfDevQK4NsIAHXs3/JNgnvEY+LRyneDN788W2NYiRIIzmILjba7LaQTfihuFawZDhRtkYCv3JDC3B4TwnmRJw==", 310 | "cpu": [ 311 | "arm64" 312 | ], 313 | "optional": true, 314 | "os": [ 315 | "win32" 316 | ], 317 | "engines": { 318 | "node": ">= 10" 319 | } 320 | }, 321 | "node_modules/@next/swc-win32-ia32-msvc": { 322 | "version": "13.4.19", 323 | "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.19.tgz", 324 | "integrity": "sha512-Y5kikILFAr81LYIFaw6j/NrOtmiM4Sf3GtOc0pn50ez2GCkr+oejYuKGcwAwq3jiTKuzF6OF4iT2INPoxRycEA==", 325 | "cpu": [ 326 | "ia32" 327 | ], 328 | "optional": true, 329 | "os": [ 330 | "win32" 331 | ], 332 | "engines": { 333 | "node": ">= 10" 334 | } 335 | }, 336 | "node_modules/@next/swc-win32-x64-msvc": { 337 | "version": "13.4.19", 338 | "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.19.tgz", 339 | "integrity": "sha512-YzA78jBDXMYiINdPdJJwGgPNT3YqBNNGhsthsDoWHL9p24tEJn9ViQf/ZqTbwSpX/RrkPupLfuuTH2sf73JBAw==", 340 | "cpu": [ 341 | "x64" 342 | ], 343 | "optional": true, 344 | "os": [ 345 | "win32" 346 | ], 347 | "engines": { 348 | "node": ">= 10" 349 | } 350 | }, 351 | "node_modules/@nodelib/fs.scandir": { 352 | "version": "2.1.5", 353 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 354 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 355 | "dependencies": { 356 | "@nodelib/fs.stat": "2.0.5", 357 | "run-parallel": "^1.1.9" 358 | }, 359 | "engines": { 360 | "node": ">= 8" 361 | } 362 | }, 363 | "node_modules/@nodelib/fs.stat": { 364 | "version": "2.0.5", 365 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 366 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 367 | "engines": { 368 | "node": ">= 8" 369 | } 370 | }, 371 | "node_modules/@nodelib/fs.walk": { 372 | "version": "1.2.8", 373 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 374 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 375 | "dependencies": { 376 | "@nodelib/fs.scandir": "2.1.5", 377 | "fastq": "^1.6.0" 378 | }, 379 | "engines": { 380 | "node": ">= 8" 381 | } 382 | }, 383 | "node_modules/@panva/hkdf": { 384 | "version": "1.0.4", 385 | "resolved": "https://registry.npmjs.org/@panva/hkdf/-/hkdf-1.0.4.tgz", 386 | "integrity": "sha512-003xWiCuvePbLaPHT+CRuaV4GlyCAVm6XYSbBZDHoWZGn1mNkVKFaDbGJjjxmEFvizUwlCoM6O18FCBMMky2zQ==", 387 | "funding": { 388 | "url": "https://github.com/sponsors/panva" 389 | } 390 | }, 391 | "node_modules/@pkgr/utils": { 392 | "version": "2.3.1", 393 | "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.3.1.tgz", 394 | "integrity": "sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==", 395 | "dependencies": { 396 | "cross-spawn": "^7.0.3", 397 | "is-glob": "^4.0.3", 398 | "open": "^8.4.0", 399 | "picocolors": "^1.0.0", 400 | "tiny-glob": "^0.2.9", 401 | "tslib": "^2.4.0" 402 | }, 403 | "engines": { 404 | "node": "^12.20.0 || ^14.18.0 || >=16.0.0" 405 | }, 406 | "funding": { 407 | "url": "https://opencollective.com/unts" 408 | } 409 | }, 410 | "node_modules/@rushstack/eslint-patch": { 411 | "version": "1.2.0", 412 | "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz", 413 | "integrity": "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==" 414 | }, 415 | "node_modules/@swc/helpers": { 416 | "version": "0.5.1", 417 | "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", 418 | "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", 419 | "dependencies": { 420 | "tslib": "^2.4.0" 421 | } 422 | }, 423 | "node_modules/@types/json5": { 424 | "version": "0.0.29", 425 | "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", 426 | "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" 427 | }, 428 | "node_modules/@types/node": { 429 | "version": "20.5.1", 430 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.1.tgz", 431 | "integrity": "sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg==" 432 | }, 433 | "node_modules/@types/prop-types": { 434 | "version": "15.7.5", 435 | "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", 436 | "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" 437 | }, 438 | "node_modules/@types/react": { 439 | "version": "18.2.20", 440 | "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.20.tgz", 441 | "integrity": "sha512-WKNtmsLWJM/3D5mG4U84cysVY31ivmyw85dE84fOCk5Hx78wezB/XEjVPWl2JTZ5FkEeaTJf+VgUAUn3PE7Isw==", 442 | "dependencies": { 443 | "@types/prop-types": "*", 444 | "@types/scheduler": "*", 445 | "csstype": "^3.0.2" 446 | } 447 | }, 448 | "node_modules/@types/react-dom": { 449 | "version": "18.2.7", 450 | "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.7.tgz", 451 | "integrity": "sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==", 452 | "dependencies": { 453 | "@types/react": "*" 454 | } 455 | }, 456 | "node_modules/@types/scheduler": { 457 | "version": "0.16.3", 458 | "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", 459 | "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" 460 | }, 461 | "node_modules/@typescript-eslint/parser": { 462 | "version": "5.58.0", 463 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.58.0.tgz", 464 | "integrity": "sha512-ixaM3gRtlfrKzP8N6lRhBbjTow1t6ztfBvQNGuRM8qH1bjFFXIJ35XY+FC0RRBKn3C6cT+7VW1y8tNm7DwPHDQ==", 465 | "dependencies": { 466 | "@typescript-eslint/scope-manager": "5.58.0", 467 | "@typescript-eslint/types": "5.58.0", 468 | "@typescript-eslint/typescript-estree": "5.58.0", 469 | "debug": "^4.3.4" 470 | }, 471 | "engines": { 472 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 473 | }, 474 | "funding": { 475 | "type": "opencollective", 476 | "url": "https://opencollective.com/typescript-eslint" 477 | }, 478 | "peerDependencies": { 479 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 480 | }, 481 | "peerDependenciesMeta": { 482 | "typescript": { 483 | "optional": true 484 | } 485 | } 486 | }, 487 | "node_modules/@typescript-eslint/scope-manager": { 488 | "version": "5.58.0", 489 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.58.0.tgz", 490 | "integrity": "sha512-b+w8ypN5CFvrXWQb9Ow9T4/6LC2MikNf1viLkYTiTbkQl46CnR69w7lajz1icW0TBsYmlpg+mRzFJ4LEJ8X9NA==", 491 | "dependencies": { 492 | "@typescript-eslint/types": "5.58.0", 493 | "@typescript-eslint/visitor-keys": "5.58.0" 494 | }, 495 | "engines": { 496 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 497 | }, 498 | "funding": { 499 | "type": "opencollective", 500 | "url": "https://opencollective.com/typescript-eslint" 501 | } 502 | }, 503 | "node_modules/@typescript-eslint/types": { 504 | "version": "5.58.0", 505 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.58.0.tgz", 506 | "integrity": "sha512-JYV4eITHPzVQMnHZcYJXl2ZloC7thuUHrcUmxtzvItyKPvQ50kb9QXBkgNAt90OYMqwaodQh2kHutWZl1fc+1g==", 507 | "engines": { 508 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 509 | }, 510 | "funding": { 511 | "type": "opencollective", 512 | "url": "https://opencollective.com/typescript-eslint" 513 | } 514 | }, 515 | "node_modules/@typescript-eslint/typescript-estree": { 516 | "version": "5.58.0", 517 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.58.0.tgz", 518 | "integrity": "sha512-cRACvGTodA+UxnYM2uwA2KCwRL7VAzo45syNysqlMyNyjw0Z35Icc9ihPJZjIYuA5bXJYiJ2YGUB59BqlOZT1Q==", 519 | "dependencies": { 520 | "@typescript-eslint/types": "5.58.0", 521 | "@typescript-eslint/visitor-keys": "5.58.0", 522 | "debug": "^4.3.4", 523 | "globby": "^11.1.0", 524 | "is-glob": "^4.0.3", 525 | "semver": "^7.3.7", 526 | "tsutils": "^3.21.0" 527 | }, 528 | "engines": { 529 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 530 | }, 531 | "funding": { 532 | "type": "opencollective", 533 | "url": "https://opencollective.com/typescript-eslint" 534 | }, 535 | "peerDependenciesMeta": { 536 | "typescript": { 537 | "optional": true 538 | } 539 | } 540 | }, 541 | "node_modules/@typescript-eslint/visitor-keys": { 542 | "version": "5.58.0", 543 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.58.0.tgz", 544 | "integrity": "sha512-/fBraTlPj0jwdyTwLyrRTxv/3lnU2H96pNTVM6z3esTWLtA5MZ9ghSMJ7Rb+TtUAdtEw9EyJzJ0EydIMKxQ9gA==", 545 | "dependencies": { 546 | "@typescript-eslint/types": "5.58.0", 547 | "eslint-visitor-keys": "^3.3.0" 548 | }, 549 | "engines": { 550 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 551 | }, 552 | "funding": { 553 | "type": "opencollective", 554 | "url": "https://opencollective.com/typescript-eslint" 555 | } 556 | }, 557 | "node_modules/acorn": { 558 | "version": "8.10.0", 559 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", 560 | "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", 561 | "bin": { 562 | "acorn": "bin/acorn" 563 | }, 564 | "engines": { 565 | "node": ">=0.4.0" 566 | } 567 | }, 568 | "node_modules/acorn-jsx": { 569 | "version": "5.3.2", 570 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 571 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 572 | "peerDependencies": { 573 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 574 | } 575 | }, 576 | "node_modules/ajv": { 577 | "version": "6.12.6", 578 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 579 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 580 | "dependencies": { 581 | "fast-deep-equal": "^3.1.1", 582 | "fast-json-stable-stringify": "^2.0.0", 583 | "json-schema-traverse": "^0.4.1", 584 | "uri-js": "^4.2.2" 585 | }, 586 | "funding": { 587 | "type": "github", 588 | "url": "https://github.com/sponsors/epoberezkin" 589 | } 590 | }, 591 | "node_modules/ansi-regex": { 592 | "version": "5.0.1", 593 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 594 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 595 | "engines": { 596 | "node": ">=8" 597 | } 598 | }, 599 | "node_modules/ansi-styles": { 600 | "version": "4.3.0", 601 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 602 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 603 | "dependencies": { 604 | "color-convert": "^2.0.1" 605 | }, 606 | "engines": { 607 | "node": ">=8" 608 | }, 609 | "funding": { 610 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 611 | } 612 | }, 613 | "node_modules/any-promise": { 614 | "version": "1.3.0", 615 | "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", 616 | "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" 617 | }, 618 | "node_modules/anymatch": { 619 | "version": "3.1.3", 620 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 621 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 622 | "dependencies": { 623 | "normalize-path": "^3.0.0", 624 | "picomatch": "^2.0.4" 625 | }, 626 | "engines": { 627 | "node": ">= 8" 628 | } 629 | }, 630 | "node_modules/arg": { 631 | "version": "5.0.2", 632 | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", 633 | "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" 634 | }, 635 | "node_modules/argparse": { 636 | "version": "2.0.1", 637 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 638 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" 639 | }, 640 | "node_modules/aria-query": { 641 | "version": "5.1.3", 642 | "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", 643 | "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", 644 | "dependencies": { 645 | "deep-equal": "^2.0.5" 646 | } 647 | }, 648 | "node_modules/array-buffer-byte-length": { 649 | "version": "1.0.0", 650 | "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", 651 | "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", 652 | "dependencies": { 653 | "call-bind": "^1.0.2", 654 | "is-array-buffer": "^3.0.1" 655 | }, 656 | "funding": { 657 | "url": "https://github.com/sponsors/ljharb" 658 | } 659 | }, 660 | "node_modules/array-includes": { 661 | "version": "3.1.6", 662 | "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", 663 | "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", 664 | "dependencies": { 665 | "call-bind": "^1.0.2", 666 | "define-properties": "^1.1.4", 667 | "es-abstract": "^1.20.4", 668 | "get-intrinsic": "^1.1.3", 669 | "is-string": "^1.0.7" 670 | }, 671 | "engines": { 672 | "node": ">= 0.4" 673 | }, 674 | "funding": { 675 | "url": "https://github.com/sponsors/ljharb" 676 | } 677 | }, 678 | "node_modules/array-union": { 679 | "version": "2.1.0", 680 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 681 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 682 | "engines": { 683 | "node": ">=8" 684 | } 685 | }, 686 | "node_modules/array.prototype.flat": { 687 | "version": "1.3.1", 688 | "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", 689 | "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", 690 | "dependencies": { 691 | "call-bind": "^1.0.2", 692 | "define-properties": "^1.1.4", 693 | "es-abstract": "^1.20.4", 694 | "es-shim-unscopables": "^1.0.0" 695 | }, 696 | "engines": { 697 | "node": ">= 0.4" 698 | }, 699 | "funding": { 700 | "url": "https://github.com/sponsors/ljharb" 701 | } 702 | }, 703 | "node_modules/array.prototype.flatmap": { 704 | "version": "1.3.1", 705 | "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", 706 | "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", 707 | "dependencies": { 708 | "call-bind": "^1.0.2", 709 | "define-properties": "^1.1.4", 710 | "es-abstract": "^1.20.4", 711 | "es-shim-unscopables": "^1.0.0" 712 | }, 713 | "engines": { 714 | "node": ">= 0.4" 715 | }, 716 | "funding": { 717 | "url": "https://github.com/sponsors/ljharb" 718 | } 719 | }, 720 | "node_modules/array.prototype.tosorted": { 721 | "version": "1.1.1", 722 | "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", 723 | "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", 724 | "dependencies": { 725 | "call-bind": "^1.0.2", 726 | "define-properties": "^1.1.4", 727 | "es-abstract": "^1.20.4", 728 | "es-shim-unscopables": "^1.0.0", 729 | "get-intrinsic": "^1.1.3" 730 | } 731 | }, 732 | "node_modules/ast-types-flow": { 733 | "version": "0.0.7", 734 | "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", 735 | "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" 736 | }, 737 | "node_modules/autoprefixer": { 738 | "version": "10.4.15", 739 | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.15.tgz", 740 | "integrity": "sha512-KCuPB8ZCIqFdA4HwKXsvz7j6gvSDNhDP7WnUjBleRkKjPdvCmHFuQ77ocavI8FT6NdvlBnE2UFr2H4Mycn8Vew==", 741 | "funding": [ 742 | { 743 | "type": "opencollective", 744 | "url": "https://opencollective.com/postcss/" 745 | }, 746 | { 747 | "type": "tidelift", 748 | "url": "https://tidelift.com/funding/github/npm/autoprefixer" 749 | }, 750 | { 751 | "type": "github", 752 | "url": "https://github.com/sponsors/ai" 753 | } 754 | ], 755 | "dependencies": { 756 | "browserslist": "^4.21.10", 757 | "caniuse-lite": "^1.0.30001520", 758 | "fraction.js": "^4.2.0", 759 | "normalize-range": "^0.1.2", 760 | "picocolors": "^1.0.0", 761 | "postcss-value-parser": "^4.2.0" 762 | }, 763 | "bin": { 764 | "autoprefixer": "bin/autoprefixer" 765 | }, 766 | "engines": { 767 | "node": "^10 || ^12 || >=14" 768 | }, 769 | "peerDependencies": { 770 | "postcss": "^8.1.0" 771 | } 772 | }, 773 | "node_modules/available-typed-arrays": { 774 | "version": "1.0.5", 775 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", 776 | "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", 777 | "engines": { 778 | "node": ">= 0.4" 779 | }, 780 | "funding": { 781 | "url": "https://github.com/sponsors/ljharb" 782 | } 783 | }, 784 | "node_modules/axe-core": { 785 | "version": "4.6.3", 786 | "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz", 787 | "integrity": "sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==", 788 | "engines": { 789 | "node": ">=4" 790 | } 791 | }, 792 | "node_modules/axobject-query": { 793 | "version": "3.1.1", 794 | "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", 795 | "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", 796 | "dependencies": { 797 | "deep-equal": "^2.0.5" 798 | } 799 | }, 800 | "node_modules/balanced-match": { 801 | "version": "1.0.2", 802 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 803 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 804 | }, 805 | "node_modules/binary-extensions": { 806 | "version": "2.2.0", 807 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", 808 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", 809 | "engines": { 810 | "node": ">=8" 811 | } 812 | }, 813 | "node_modules/brace-expansion": { 814 | "version": "1.1.11", 815 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 816 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 817 | "dependencies": { 818 | "balanced-match": "^1.0.0", 819 | "concat-map": "0.0.1" 820 | } 821 | }, 822 | "node_modules/braces": { 823 | "version": "3.0.2", 824 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 825 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 826 | "dependencies": { 827 | "fill-range": "^7.0.1" 828 | }, 829 | "engines": { 830 | "node": ">=8" 831 | } 832 | }, 833 | "node_modules/browserslist": { 834 | "version": "4.21.10", 835 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", 836 | "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", 837 | "funding": [ 838 | { 839 | "type": "opencollective", 840 | "url": "https://opencollective.com/browserslist" 841 | }, 842 | { 843 | "type": "tidelift", 844 | "url": "https://tidelift.com/funding/github/npm/browserslist" 845 | }, 846 | { 847 | "type": "github", 848 | "url": "https://github.com/sponsors/ai" 849 | } 850 | ], 851 | "dependencies": { 852 | "caniuse-lite": "^1.0.30001517", 853 | "electron-to-chromium": "^1.4.477", 854 | "node-releases": "^2.0.13", 855 | "update-browserslist-db": "^1.0.11" 856 | }, 857 | "bin": { 858 | "browserslist": "cli.js" 859 | }, 860 | "engines": { 861 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 862 | } 863 | }, 864 | "node_modules/busboy": { 865 | "version": "1.6.0", 866 | "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", 867 | "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", 868 | "dependencies": { 869 | "streamsearch": "^1.1.0" 870 | }, 871 | "engines": { 872 | "node": ">=10.16.0" 873 | } 874 | }, 875 | "node_modules/call-bind": { 876 | "version": "1.0.2", 877 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", 878 | "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", 879 | "dependencies": { 880 | "function-bind": "^1.1.1", 881 | "get-intrinsic": "^1.0.2" 882 | }, 883 | "funding": { 884 | "url": "https://github.com/sponsors/ljharb" 885 | } 886 | }, 887 | "node_modules/callsites": { 888 | "version": "3.1.0", 889 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 890 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 891 | "engines": { 892 | "node": ">=6" 893 | } 894 | }, 895 | "node_modules/camelcase-css": { 896 | "version": "2.0.1", 897 | "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", 898 | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", 899 | "engines": { 900 | "node": ">= 6" 901 | } 902 | }, 903 | "node_modules/caniuse-lite": { 904 | "version": "1.0.30001522", 905 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001522.tgz", 906 | "integrity": "sha512-TKiyTVZxJGhsTszLuzb+6vUZSjVOAhClszBr2Ta2k9IwtNBT/4dzmL6aywt0HCgEZlmwJzXJd8yNiob6HgwTRg==", 907 | "funding": [ 908 | { 909 | "type": "opencollective", 910 | "url": "https://opencollective.com/browserslist" 911 | }, 912 | { 913 | "type": "tidelift", 914 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 915 | }, 916 | { 917 | "type": "github", 918 | "url": "https://github.com/sponsors/ai" 919 | } 920 | ] 921 | }, 922 | "node_modules/chalk": { 923 | "version": "4.1.2", 924 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 925 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 926 | "dependencies": { 927 | "ansi-styles": "^4.1.0", 928 | "supports-color": "^7.1.0" 929 | }, 930 | "engines": { 931 | "node": ">=10" 932 | }, 933 | "funding": { 934 | "url": "https://github.com/chalk/chalk?sponsor=1" 935 | } 936 | }, 937 | "node_modules/chokidar": { 938 | "version": "3.5.3", 939 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", 940 | "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", 941 | "funding": [ 942 | { 943 | "type": "individual", 944 | "url": "https://paulmillr.com/funding/" 945 | } 946 | ], 947 | "dependencies": { 948 | "anymatch": "~3.1.2", 949 | "braces": "~3.0.2", 950 | "glob-parent": "~5.1.2", 951 | "is-binary-path": "~2.1.0", 952 | "is-glob": "~4.0.1", 953 | "normalize-path": "~3.0.0", 954 | "readdirp": "~3.6.0" 955 | }, 956 | "engines": { 957 | "node": ">= 8.10.0" 958 | }, 959 | "optionalDependencies": { 960 | "fsevents": "~2.3.2" 961 | } 962 | }, 963 | "node_modules/chokidar/node_modules/glob-parent": { 964 | "version": "5.1.2", 965 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 966 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 967 | "dependencies": { 968 | "is-glob": "^4.0.1" 969 | }, 970 | "engines": { 971 | "node": ">= 6" 972 | } 973 | }, 974 | "node_modules/client-only": { 975 | "version": "0.0.1", 976 | "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", 977 | "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" 978 | }, 979 | "node_modules/color-convert": { 980 | "version": "2.0.1", 981 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 982 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 983 | "dependencies": { 984 | "color-name": "~1.1.4" 985 | }, 986 | "engines": { 987 | "node": ">=7.0.0" 988 | } 989 | }, 990 | "node_modules/color-name": { 991 | "version": "1.1.4", 992 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 993 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 994 | }, 995 | "node_modules/commander": { 996 | "version": "4.1.1", 997 | "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", 998 | "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", 999 | "engines": { 1000 | "node": ">= 6" 1001 | } 1002 | }, 1003 | "node_modules/concat-map": { 1004 | "version": "0.0.1", 1005 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1006 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" 1007 | }, 1008 | "node_modules/cookie": { 1009 | "version": "0.5.0", 1010 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", 1011 | "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", 1012 | "engines": { 1013 | "node": ">= 0.6" 1014 | } 1015 | }, 1016 | "node_modules/cross-spawn": { 1017 | "version": "7.0.3", 1018 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 1019 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 1020 | "dependencies": { 1021 | "path-key": "^3.1.0", 1022 | "shebang-command": "^2.0.0", 1023 | "which": "^2.0.1" 1024 | }, 1025 | "engines": { 1026 | "node": ">= 8" 1027 | } 1028 | }, 1029 | "node_modules/cssesc": { 1030 | "version": "3.0.0", 1031 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 1032 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 1033 | "bin": { 1034 | "cssesc": "bin/cssesc" 1035 | }, 1036 | "engines": { 1037 | "node": ">=4" 1038 | } 1039 | }, 1040 | "node_modules/csstype": { 1041 | "version": "3.1.2", 1042 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", 1043 | "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" 1044 | }, 1045 | "node_modules/damerau-levenshtein": { 1046 | "version": "1.0.8", 1047 | "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", 1048 | "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" 1049 | }, 1050 | "node_modules/debug": { 1051 | "version": "4.3.4", 1052 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 1053 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 1054 | "dependencies": { 1055 | "ms": "2.1.2" 1056 | }, 1057 | "engines": { 1058 | "node": ">=6.0" 1059 | }, 1060 | "peerDependenciesMeta": { 1061 | "supports-color": { 1062 | "optional": true 1063 | } 1064 | } 1065 | }, 1066 | "node_modules/deep-equal": { 1067 | "version": "2.2.0", 1068 | "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz", 1069 | "integrity": "sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==", 1070 | "dependencies": { 1071 | "call-bind": "^1.0.2", 1072 | "es-get-iterator": "^1.1.2", 1073 | "get-intrinsic": "^1.1.3", 1074 | "is-arguments": "^1.1.1", 1075 | "is-array-buffer": "^3.0.1", 1076 | "is-date-object": "^1.0.5", 1077 | "is-regex": "^1.1.4", 1078 | "is-shared-array-buffer": "^1.0.2", 1079 | "isarray": "^2.0.5", 1080 | "object-is": "^1.1.5", 1081 | "object-keys": "^1.1.1", 1082 | "object.assign": "^4.1.4", 1083 | "regexp.prototype.flags": "^1.4.3", 1084 | "side-channel": "^1.0.4", 1085 | "which-boxed-primitive": "^1.0.2", 1086 | "which-collection": "^1.0.1", 1087 | "which-typed-array": "^1.1.9" 1088 | }, 1089 | "funding": { 1090 | "url": "https://github.com/sponsors/ljharb" 1091 | } 1092 | }, 1093 | "node_modules/deep-is": { 1094 | "version": "0.1.4", 1095 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1096 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" 1097 | }, 1098 | "node_modules/define-lazy-prop": { 1099 | "version": "2.0.0", 1100 | "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", 1101 | "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", 1102 | "engines": { 1103 | "node": ">=8" 1104 | } 1105 | }, 1106 | "node_modules/define-properties": { 1107 | "version": "1.2.0", 1108 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", 1109 | "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", 1110 | "dependencies": { 1111 | "has-property-descriptors": "^1.0.0", 1112 | "object-keys": "^1.1.1" 1113 | }, 1114 | "engines": { 1115 | "node": ">= 0.4" 1116 | }, 1117 | "funding": { 1118 | "url": "https://github.com/sponsors/ljharb" 1119 | } 1120 | }, 1121 | "node_modules/didyoumean": { 1122 | "version": "1.2.2", 1123 | "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", 1124 | "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" 1125 | }, 1126 | "node_modules/dir-glob": { 1127 | "version": "3.0.1", 1128 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 1129 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 1130 | "dependencies": { 1131 | "path-type": "^4.0.0" 1132 | }, 1133 | "engines": { 1134 | "node": ">=8" 1135 | } 1136 | }, 1137 | "node_modules/dlv": { 1138 | "version": "1.1.3", 1139 | "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", 1140 | "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" 1141 | }, 1142 | "node_modules/doctrine": { 1143 | "version": "3.0.0", 1144 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 1145 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 1146 | "dependencies": { 1147 | "esutils": "^2.0.2" 1148 | }, 1149 | "engines": { 1150 | "node": ">=6.0.0" 1151 | } 1152 | }, 1153 | "node_modules/electron-to-chromium": { 1154 | "version": "1.4.496", 1155 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.496.tgz", 1156 | "integrity": "sha512-qeXC3Zbykq44RCrBa4kr8v/dWzYJA8rAwpyh9Qd+NKWoJfjG5vvJqy9XOJ9H4P/lqulZBCgUWAYi+FeK5AuJ8g==" 1157 | }, 1158 | "node_modules/emoji-regex": { 1159 | "version": "9.2.2", 1160 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 1161 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" 1162 | }, 1163 | "node_modules/enhanced-resolve": { 1164 | "version": "5.12.0", 1165 | "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz", 1166 | "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==", 1167 | "dependencies": { 1168 | "graceful-fs": "^4.2.4", 1169 | "tapable": "^2.2.0" 1170 | }, 1171 | "engines": { 1172 | "node": ">=10.13.0" 1173 | } 1174 | }, 1175 | "node_modules/es-abstract": { 1176 | "version": "1.21.2", 1177 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", 1178 | "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", 1179 | "dependencies": { 1180 | "array-buffer-byte-length": "^1.0.0", 1181 | "available-typed-arrays": "^1.0.5", 1182 | "call-bind": "^1.0.2", 1183 | "es-set-tostringtag": "^2.0.1", 1184 | "es-to-primitive": "^1.2.1", 1185 | "function.prototype.name": "^1.1.5", 1186 | "get-intrinsic": "^1.2.0", 1187 | "get-symbol-description": "^1.0.0", 1188 | "globalthis": "^1.0.3", 1189 | "gopd": "^1.0.1", 1190 | "has": "^1.0.3", 1191 | "has-property-descriptors": "^1.0.0", 1192 | "has-proto": "^1.0.1", 1193 | "has-symbols": "^1.0.3", 1194 | "internal-slot": "^1.0.5", 1195 | "is-array-buffer": "^3.0.2", 1196 | "is-callable": "^1.2.7", 1197 | "is-negative-zero": "^2.0.2", 1198 | "is-regex": "^1.1.4", 1199 | "is-shared-array-buffer": "^1.0.2", 1200 | "is-string": "^1.0.7", 1201 | "is-typed-array": "^1.1.10", 1202 | "is-weakref": "^1.0.2", 1203 | "object-inspect": "^1.12.3", 1204 | "object-keys": "^1.1.1", 1205 | "object.assign": "^4.1.4", 1206 | "regexp.prototype.flags": "^1.4.3", 1207 | "safe-regex-test": "^1.0.0", 1208 | "string.prototype.trim": "^1.2.7", 1209 | "string.prototype.trimend": "^1.0.6", 1210 | "string.prototype.trimstart": "^1.0.6", 1211 | "typed-array-length": "^1.0.4", 1212 | "unbox-primitive": "^1.0.2", 1213 | "which-typed-array": "^1.1.9" 1214 | }, 1215 | "engines": { 1216 | "node": ">= 0.4" 1217 | }, 1218 | "funding": { 1219 | "url": "https://github.com/sponsors/ljharb" 1220 | } 1221 | }, 1222 | "node_modules/es-get-iterator": { 1223 | "version": "1.1.3", 1224 | "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", 1225 | "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", 1226 | "dependencies": { 1227 | "call-bind": "^1.0.2", 1228 | "get-intrinsic": "^1.1.3", 1229 | "has-symbols": "^1.0.3", 1230 | "is-arguments": "^1.1.1", 1231 | "is-map": "^2.0.2", 1232 | "is-set": "^2.0.2", 1233 | "is-string": "^1.0.7", 1234 | "isarray": "^2.0.5", 1235 | "stop-iteration-iterator": "^1.0.0" 1236 | }, 1237 | "funding": { 1238 | "url": "https://github.com/sponsors/ljharb" 1239 | } 1240 | }, 1241 | "node_modules/es-set-tostringtag": { 1242 | "version": "2.0.1", 1243 | "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", 1244 | "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", 1245 | "dependencies": { 1246 | "get-intrinsic": "^1.1.3", 1247 | "has": "^1.0.3", 1248 | "has-tostringtag": "^1.0.0" 1249 | }, 1250 | "engines": { 1251 | "node": ">= 0.4" 1252 | } 1253 | }, 1254 | "node_modules/es-shim-unscopables": { 1255 | "version": "1.0.0", 1256 | "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", 1257 | "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", 1258 | "dependencies": { 1259 | "has": "^1.0.3" 1260 | } 1261 | }, 1262 | "node_modules/es-to-primitive": { 1263 | "version": "1.2.1", 1264 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", 1265 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", 1266 | "dependencies": { 1267 | "is-callable": "^1.1.4", 1268 | "is-date-object": "^1.0.1", 1269 | "is-symbol": "^1.0.2" 1270 | }, 1271 | "engines": { 1272 | "node": ">= 0.4" 1273 | }, 1274 | "funding": { 1275 | "url": "https://github.com/sponsors/ljharb" 1276 | } 1277 | }, 1278 | "node_modules/escalade": { 1279 | "version": "3.1.1", 1280 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", 1281 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", 1282 | "engines": { 1283 | "node": ">=6" 1284 | } 1285 | }, 1286 | "node_modules/escape-string-regexp": { 1287 | "version": "4.0.0", 1288 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1289 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1290 | "engines": { 1291 | "node": ">=10" 1292 | }, 1293 | "funding": { 1294 | "url": "https://github.com/sponsors/sindresorhus" 1295 | } 1296 | }, 1297 | "node_modules/eslint": { 1298 | "version": "8.47.0", 1299 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.47.0.tgz", 1300 | "integrity": "sha512-spUQWrdPt+pRVP1TTJLmfRNJJHHZryFmptzcafwSvHsceV81djHOdnEeDmkdotZyLNjDhrOasNK8nikkoG1O8Q==", 1301 | "dependencies": { 1302 | "@eslint-community/eslint-utils": "^4.2.0", 1303 | "@eslint-community/regexpp": "^4.6.1", 1304 | "@eslint/eslintrc": "^2.1.2", 1305 | "@eslint/js": "^8.47.0", 1306 | "@humanwhocodes/config-array": "^0.11.10", 1307 | "@humanwhocodes/module-importer": "^1.0.1", 1308 | "@nodelib/fs.walk": "^1.2.8", 1309 | "ajv": "^6.12.4", 1310 | "chalk": "^4.0.0", 1311 | "cross-spawn": "^7.0.2", 1312 | "debug": "^4.3.2", 1313 | "doctrine": "^3.0.0", 1314 | "escape-string-regexp": "^4.0.0", 1315 | "eslint-scope": "^7.2.2", 1316 | "eslint-visitor-keys": "^3.4.3", 1317 | "espree": "^9.6.1", 1318 | "esquery": "^1.4.2", 1319 | "esutils": "^2.0.2", 1320 | "fast-deep-equal": "^3.1.3", 1321 | "file-entry-cache": "^6.0.1", 1322 | "find-up": "^5.0.0", 1323 | "glob-parent": "^6.0.2", 1324 | "globals": "^13.19.0", 1325 | "graphemer": "^1.4.0", 1326 | "ignore": "^5.2.0", 1327 | "imurmurhash": "^0.1.4", 1328 | "is-glob": "^4.0.0", 1329 | "is-path-inside": "^3.0.3", 1330 | "js-yaml": "^4.1.0", 1331 | "json-stable-stringify-without-jsonify": "^1.0.1", 1332 | "levn": "^0.4.1", 1333 | "lodash.merge": "^4.6.2", 1334 | "minimatch": "^3.1.2", 1335 | "natural-compare": "^1.4.0", 1336 | "optionator": "^0.9.3", 1337 | "strip-ansi": "^6.0.1", 1338 | "text-table": "^0.2.0" 1339 | }, 1340 | "bin": { 1341 | "eslint": "bin/eslint.js" 1342 | }, 1343 | "engines": { 1344 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1345 | }, 1346 | "funding": { 1347 | "url": "https://opencollective.com/eslint" 1348 | } 1349 | }, 1350 | "node_modules/eslint-config-next": { 1351 | "version": "13.4.19", 1352 | "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.4.19.tgz", 1353 | "integrity": "sha512-WE8367sqMnjhWHvR5OivmfwENRQ1ixfNE9hZwQqNCsd+iM3KnuMc1V8Pt6ytgjxjf23D+xbesADv9x3xaKfT3g==", 1354 | "dependencies": { 1355 | "@next/eslint-plugin-next": "13.4.19", 1356 | "@rushstack/eslint-patch": "^1.1.3", 1357 | "@typescript-eslint/parser": "^5.4.2 || ^6.0.0", 1358 | "eslint-import-resolver-node": "^0.3.6", 1359 | "eslint-import-resolver-typescript": "^3.5.2", 1360 | "eslint-plugin-import": "^2.26.0", 1361 | "eslint-plugin-jsx-a11y": "^6.5.1", 1362 | "eslint-plugin-react": "^7.31.7", 1363 | "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705" 1364 | }, 1365 | "peerDependencies": { 1366 | "eslint": "^7.23.0 || ^8.0.0", 1367 | "typescript": ">=3.3.1" 1368 | }, 1369 | "peerDependenciesMeta": { 1370 | "typescript": { 1371 | "optional": true 1372 | } 1373 | } 1374 | }, 1375 | "node_modules/eslint-import-resolver-node": { 1376 | "version": "0.3.7", 1377 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", 1378 | "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", 1379 | "dependencies": { 1380 | "debug": "^3.2.7", 1381 | "is-core-module": "^2.11.0", 1382 | "resolve": "^1.22.1" 1383 | } 1384 | }, 1385 | "node_modules/eslint-import-resolver-node/node_modules/debug": { 1386 | "version": "3.2.7", 1387 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1388 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1389 | "dependencies": { 1390 | "ms": "^2.1.1" 1391 | } 1392 | }, 1393 | "node_modules/eslint-import-resolver-typescript": { 1394 | "version": "3.5.5", 1395 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.5.tgz", 1396 | "integrity": "sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==", 1397 | "dependencies": { 1398 | "debug": "^4.3.4", 1399 | "enhanced-resolve": "^5.12.0", 1400 | "eslint-module-utils": "^2.7.4", 1401 | "get-tsconfig": "^4.5.0", 1402 | "globby": "^13.1.3", 1403 | "is-core-module": "^2.11.0", 1404 | "is-glob": "^4.0.3", 1405 | "synckit": "^0.8.5" 1406 | }, 1407 | "engines": { 1408 | "node": "^14.18.0 || >=16.0.0" 1409 | }, 1410 | "funding": { 1411 | "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" 1412 | }, 1413 | "peerDependencies": { 1414 | "eslint": "*", 1415 | "eslint-plugin-import": "*" 1416 | } 1417 | }, 1418 | "node_modules/eslint-import-resolver-typescript/node_modules/globby": { 1419 | "version": "13.1.4", 1420 | "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.4.tgz", 1421 | "integrity": "sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g==", 1422 | "dependencies": { 1423 | "dir-glob": "^3.0.1", 1424 | "fast-glob": "^3.2.11", 1425 | "ignore": "^5.2.0", 1426 | "merge2": "^1.4.1", 1427 | "slash": "^4.0.0" 1428 | }, 1429 | "engines": { 1430 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 1431 | }, 1432 | "funding": { 1433 | "url": "https://github.com/sponsors/sindresorhus" 1434 | } 1435 | }, 1436 | "node_modules/eslint-import-resolver-typescript/node_modules/slash": { 1437 | "version": "4.0.0", 1438 | "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", 1439 | "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", 1440 | "engines": { 1441 | "node": ">=12" 1442 | }, 1443 | "funding": { 1444 | "url": "https://github.com/sponsors/sindresorhus" 1445 | } 1446 | }, 1447 | "node_modules/eslint-module-utils": { 1448 | "version": "2.8.0", 1449 | "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", 1450 | "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", 1451 | "dependencies": { 1452 | "debug": "^3.2.7" 1453 | }, 1454 | "engines": { 1455 | "node": ">=4" 1456 | }, 1457 | "peerDependenciesMeta": { 1458 | "eslint": { 1459 | "optional": true 1460 | } 1461 | } 1462 | }, 1463 | "node_modules/eslint-module-utils/node_modules/debug": { 1464 | "version": "3.2.7", 1465 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1466 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1467 | "dependencies": { 1468 | "ms": "^2.1.1" 1469 | } 1470 | }, 1471 | "node_modules/eslint-plugin-import": { 1472 | "version": "2.27.5", 1473 | "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", 1474 | "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", 1475 | "dependencies": { 1476 | "array-includes": "^3.1.6", 1477 | "array.prototype.flat": "^1.3.1", 1478 | "array.prototype.flatmap": "^1.3.1", 1479 | "debug": "^3.2.7", 1480 | "doctrine": "^2.1.0", 1481 | "eslint-import-resolver-node": "^0.3.7", 1482 | "eslint-module-utils": "^2.7.4", 1483 | "has": "^1.0.3", 1484 | "is-core-module": "^2.11.0", 1485 | "is-glob": "^4.0.3", 1486 | "minimatch": "^3.1.2", 1487 | "object.values": "^1.1.6", 1488 | "resolve": "^1.22.1", 1489 | "semver": "^6.3.0", 1490 | "tsconfig-paths": "^3.14.1" 1491 | }, 1492 | "engines": { 1493 | "node": ">=4" 1494 | }, 1495 | "peerDependencies": { 1496 | "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" 1497 | } 1498 | }, 1499 | "node_modules/eslint-plugin-import/node_modules/debug": { 1500 | "version": "3.2.7", 1501 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1502 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1503 | "dependencies": { 1504 | "ms": "^2.1.1" 1505 | } 1506 | }, 1507 | "node_modules/eslint-plugin-import/node_modules/doctrine": { 1508 | "version": "2.1.0", 1509 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1510 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1511 | "dependencies": { 1512 | "esutils": "^2.0.2" 1513 | }, 1514 | "engines": { 1515 | "node": ">=0.10.0" 1516 | } 1517 | }, 1518 | "node_modules/eslint-plugin-import/node_modules/semver": { 1519 | "version": "6.3.0", 1520 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1521 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1522 | "bin": { 1523 | "semver": "bin/semver.js" 1524 | } 1525 | }, 1526 | "node_modules/eslint-plugin-jsx-a11y": { 1527 | "version": "6.7.1", 1528 | "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", 1529 | "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", 1530 | "dependencies": { 1531 | "@babel/runtime": "^7.20.7", 1532 | "aria-query": "^5.1.3", 1533 | "array-includes": "^3.1.6", 1534 | "array.prototype.flatmap": "^1.3.1", 1535 | "ast-types-flow": "^0.0.7", 1536 | "axe-core": "^4.6.2", 1537 | "axobject-query": "^3.1.1", 1538 | "damerau-levenshtein": "^1.0.8", 1539 | "emoji-regex": "^9.2.2", 1540 | "has": "^1.0.3", 1541 | "jsx-ast-utils": "^3.3.3", 1542 | "language-tags": "=1.0.5", 1543 | "minimatch": "^3.1.2", 1544 | "object.entries": "^1.1.6", 1545 | "object.fromentries": "^2.0.6", 1546 | "semver": "^6.3.0" 1547 | }, 1548 | "engines": { 1549 | "node": ">=4.0" 1550 | }, 1551 | "peerDependencies": { 1552 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" 1553 | } 1554 | }, 1555 | "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { 1556 | "version": "6.3.0", 1557 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1558 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1559 | "bin": { 1560 | "semver": "bin/semver.js" 1561 | } 1562 | }, 1563 | "node_modules/eslint-plugin-react": { 1564 | "version": "7.32.2", 1565 | "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", 1566 | "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", 1567 | "dependencies": { 1568 | "array-includes": "^3.1.6", 1569 | "array.prototype.flatmap": "^1.3.1", 1570 | "array.prototype.tosorted": "^1.1.1", 1571 | "doctrine": "^2.1.0", 1572 | "estraverse": "^5.3.0", 1573 | "jsx-ast-utils": "^2.4.1 || ^3.0.0", 1574 | "minimatch": "^3.1.2", 1575 | "object.entries": "^1.1.6", 1576 | "object.fromentries": "^2.0.6", 1577 | "object.hasown": "^1.1.2", 1578 | "object.values": "^1.1.6", 1579 | "prop-types": "^15.8.1", 1580 | "resolve": "^2.0.0-next.4", 1581 | "semver": "^6.3.0", 1582 | "string.prototype.matchall": "^4.0.8" 1583 | }, 1584 | "engines": { 1585 | "node": ">=4" 1586 | }, 1587 | "peerDependencies": { 1588 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" 1589 | } 1590 | }, 1591 | "node_modules/eslint-plugin-react-hooks": { 1592 | "version": "5.0.0-canary-7118f5dd7-20230705", 1593 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.0.0-canary-7118f5dd7-20230705.tgz", 1594 | "integrity": "sha512-AZYbMo/NW9chdL7vk6HQzQhT+PvTAEVqWk9ziruUoW2kAOcN5qNyelv70e0F1VNQAbvutOC9oc+xfWycI9FxDw==", 1595 | "engines": { 1596 | "node": ">=10" 1597 | }, 1598 | "peerDependencies": { 1599 | "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" 1600 | } 1601 | }, 1602 | "node_modules/eslint-plugin-react/node_modules/doctrine": { 1603 | "version": "2.1.0", 1604 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1605 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1606 | "dependencies": { 1607 | "esutils": "^2.0.2" 1608 | }, 1609 | "engines": { 1610 | "node": ">=0.10.0" 1611 | } 1612 | }, 1613 | "node_modules/eslint-plugin-react/node_modules/resolve": { 1614 | "version": "2.0.0-next.4", 1615 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", 1616 | "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", 1617 | "dependencies": { 1618 | "is-core-module": "^2.9.0", 1619 | "path-parse": "^1.0.7", 1620 | "supports-preserve-symlinks-flag": "^1.0.0" 1621 | }, 1622 | "bin": { 1623 | "resolve": "bin/resolve" 1624 | }, 1625 | "funding": { 1626 | "url": "https://github.com/sponsors/ljharb" 1627 | } 1628 | }, 1629 | "node_modules/eslint-plugin-react/node_modules/semver": { 1630 | "version": "6.3.0", 1631 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1632 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1633 | "bin": { 1634 | "semver": "bin/semver.js" 1635 | } 1636 | }, 1637 | "node_modules/eslint-scope": { 1638 | "version": "7.2.2", 1639 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 1640 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 1641 | "dependencies": { 1642 | "esrecurse": "^4.3.0", 1643 | "estraverse": "^5.2.0" 1644 | }, 1645 | "engines": { 1646 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1647 | }, 1648 | "funding": { 1649 | "url": "https://opencollective.com/eslint" 1650 | } 1651 | }, 1652 | "node_modules/eslint-visitor-keys": { 1653 | "version": "3.4.3", 1654 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 1655 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 1656 | "engines": { 1657 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1658 | }, 1659 | "funding": { 1660 | "url": "https://opencollective.com/eslint" 1661 | } 1662 | }, 1663 | "node_modules/espree": { 1664 | "version": "9.6.1", 1665 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 1666 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 1667 | "dependencies": { 1668 | "acorn": "^8.9.0", 1669 | "acorn-jsx": "^5.3.2", 1670 | "eslint-visitor-keys": "^3.4.1" 1671 | }, 1672 | "engines": { 1673 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1674 | }, 1675 | "funding": { 1676 | "url": "https://opencollective.com/eslint" 1677 | } 1678 | }, 1679 | "node_modules/esquery": { 1680 | "version": "1.5.0", 1681 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 1682 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 1683 | "dependencies": { 1684 | "estraverse": "^5.1.0" 1685 | }, 1686 | "engines": { 1687 | "node": ">=0.10" 1688 | } 1689 | }, 1690 | "node_modules/esrecurse": { 1691 | "version": "4.3.0", 1692 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1693 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1694 | "dependencies": { 1695 | "estraverse": "^5.2.0" 1696 | }, 1697 | "engines": { 1698 | "node": ">=4.0" 1699 | } 1700 | }, 1701 | "node_modules/estraverse": { 1702 | "version": "5.3.0", 1703 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1704 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1705 | "engines": { 1706 | "node": ">=4.0" 1707 | } 1708 | }, 1709 | "node_modules/esutils": { 1710 | "version": "2.0.3", 1711 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1712 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1713 | "engines": { 1714 | "node": ">=0.10.0" 1715 | } 1716 | }, 1717 | "node_modules/fast-deep-equal": { 1718 | "version": "3.1.3", 1719 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1720 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" 1721 | }, 1722 | "node_modules/fast-glob": { 1723 | "version": "3.2.12", 1724 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", 1725 | "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", 1726 | "dependencies": { 1727 | "@nodelib/fs.stat": "^2.0.2", 1728 | "@nodelib/fs.walk": "^1.2.3", 1729 | "glob-parent": "^5.1.2", 1730 | "merge2": "^1.3.0", 1731 | "micromatch": "^4.0.4" 1732 | }, 1733 | "engines": { 1734 | "node": ">=8.6.0" 1735 | } 1736 | }, 1737 | "node_modules/fast-glob/node_modules/glob-parent": { 1738 | "version": "5.1.2", 1739 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1740 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1741 | "dependencies": { 1742 | "is-glob": "^4.0.1" 1743 | }, 1744 | "engines": { 1745 | "node": ">= 6" 1746 | } 1747 | }, 1748 | "node_modules/fast-json-stable-stringify": { 1749 | "version": "2.1.0", 1750 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1751 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" 1752 | }, 1753 | "node_modules/fast-levenshtein": { 1754 | "version": "2.0.6", 1755 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1756 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" 1757 | }, 1758 | "node_modules/fastq": { 1759 | "version": "1.15.0", 1760 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", 1761 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", 1762 | "dependencies": { 1763 | "reusify": "^1.0.4" 1764 | } 1765 | }, 1766 | "node_modules/file-entry-cache": { 1767 | "version": "6.0.1", 1768 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1769 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1770 | "dependencies": { 1771 | "flat-cache": "^3.0.4" 1772 | }, 1773 | "engines": { 1774 | "node": "^10.12.0 || >=12.0.0" 1775 | } 1776 | }, 1777 | "node_modules/fill-range": { 1778 | "version": "7.0.1", 1779 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 1780 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 1781 | "dependencies": { 1782 | "to-regex-range": "^5.0.1" 1783 | }, 1784 | "engines": { 1785 | "node": ">=8" 1786 | } 1787 | }, 1788 | "node_modules/find-up": { 1789 | "version": "5.0.0", 1790 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1791 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1792 | "dependencies": { 1793 | "locate-path": "^6.0.0", 1794 | "path-exists": "^4.0.0" 1795 | }, 1796 | "engines": { 1797 | "node": ">=10" 1798 | }, 1799 | "funding": { 1800 | "url": "https://github.com/sponsors/sindresorhus" 1801 | } 1802 | }, 1803 | "node_modules/flat-cache": { 1804 | "version": "3.0.4", 1805 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", 1806 | "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", 1807 | "dependencies": { 1808 | "flatted": "^3.1.0", 1809 | "rimraf": "^3.0.2" 1810 | }, 1811 | "engines": { 1812 | "node": "^10.12.0 || >=12.0.0" 1813 | } 1814 | }, 1815 | "node_modules/flatted": { 1816 | "version": "3.2.7", 1817 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", 1818 | "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" 1819 | }, 1820 | "node_modules/for-each": { 1821 | "version": "0.3.3", 1822 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", 1823 | "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", 1824 | "dependencies": { 1825 | "is-callable": "^1.1.3" 1826 | } 1827 | }, 1828 | "node_modules/fraction.js": { 1829 | "version": "4.2.0", 1830 | "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", 1831 | "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", 1832 | "engines": { 1833 | "node": "*" 1834 | }, 1835 | "funding": { 1836 | "type": "patreon", 1837 | "url": "https://www.patreon.com/infusion" 1838 | } 1839 | }, 1840 | "node_modules/fs.realpath": { 1841 | "version": "1.0.0", 1842 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1843 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" 1844 | }, 1845 | "node_modules/fsevents": { 1846 | "version": "2.3.2", 1847 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", 1848 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", 1849 | "hasInstallScript": true, 1850 | "optional": true, 1851 | "os": [ 1852 | "darwin" 1853 | ], 1854 | "engines": { 1855 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1856 | } 1857 | }, 1858 | "node_modules/function-bind": { 1859 | "version": "1.1.1", 1860 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 1861 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" 1862 | }, 1863 | "node_modules/function.prototype.name": { 1864 | "version": "1.1.5", 1865 | "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", 1866 | "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", 1867 | "dependencies": { 1868 | "call-bind": "^1.0.2", 1869 | "define-properties": "^1.1.3", 1870 | "es-abstract": "^1.19.0", 1871 | "functions-have-names": "^1.2.2" 1872 | }, 1873 | "engines": { 1874 | "node": ">= 0.4" 1875 | }, 1876 | "funding": { 1877 | "url": "https://github.com/sponsors/ljharb" 1878 | } 1879 | }, 1880 | "node_modules/functions-have-names": { 1881 | "version": "1.2.3", 1882 | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", 1883 | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", 1884 | "funding": { 1885 | "url": "https://github.com/sponsors/ljharb" 1886 | } 1887 | }, 1888 | "node_modules/get-intrinsic": { 1889 | "version": "1.2.0", 1890 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", 1891 | "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", 1892 | "dependencies": { 1893 | "function-bind": "^1.1.1", 1894 | "has": "^1.0.3", 1895 | "has-symbols": "^1.0.3" 1896 | }, 1897 | "funding": { 1898 | "url": "https://github.com/sponsors/ljharb" 1899 | } 1900 | }, 1901 | "node_modules/get-symbol-description": { 1902 | "version": "1.0.0", 1903 | "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", 1904 | "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", 1905 | "dependencies": { 1906 | "call-bind": "^1.0.2", 1907 | "get-intrinsic": "^1.1.1" 1908 | }, 1909 | "engines": { 1910 | "node": ">= 0.4" 1911 | }, 1912 | "funding": { 1913 | "url": "https://github.com/sponsors/ljharb" 1914 | } 1915 | }, 1916 | "node_modules/get-tsconfig": { 1917 | "version": "4.5.0", 1918 | "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.5.0.tgz", 1919 | "integrity": "sha512-MjhiaIWCJ1sAU4pIQ5i5OfOuHHxVo1oYeNsWTON7jxYkod8pHocXeh+SSbmu5OZZZK73B6cbJ2XADzXehLyovQ==", 1920 | "funding": { 1921 | "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" 1922 | } 1923 | }, 1924 | "node_modules/glob": { 1925 | "version": "7.1.7", 1926 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", 1927 | "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", 1928 | "dependencies": { 1929 | "fs.realpath": "^1.0.0", 1930 | "inflight": "^1.0.4", 1931 | "inherits": "2", 1932 | "minimatch": "^3.0.4", 1933 | "once": "^1.3.0", 1934 | "path-is-absolute": "^1.0.0" 1935 | }, 1936 | "engines": { 1937 | "node": "*" 1938 | }, 1939 | "funding": { 1940 | "url": "https://github.com/sponsors/isaacs" 1941 | } 1942 | }, 1943 | "node_modules/glob-parent": { 1944 | "version": "6.0.2", 1945 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1946 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1947 | "dependencies": { 1948 | "is-glob": "^4.0.3" 1949 | }, 1950 | "engines": { 1951 | "node": ">=10.13.0" 1952 | } 1953 | }, 1954 | "node_modules/glob-to-regexp": { 1955 | "version": "0.4.1", 1956 | "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", 1957 | "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" 1958 | }, 1959 | "node_modules/globals": { 1960 | "version": "13.21.0", 1961 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.21.0.tgz", 1962 | "integrity": "sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==", 1963 | "dependencies": { 1964 | "type-fest": "^0.20.2" 1965 | }, 1966 | "engines": { 1967 | "node": ">=8" 1968 | }, 1969 | "funding": { 1970 | "url": "https://github.com/sponsors/sindresorhus" 1971 | } 1972 | }, 1973 | "node_modules/globalthis": { 1974 | "version": "1.0.3", 1975 | "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", 1976 | "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", 1977 | "dependencies": { 1978 | "define-properties": "^1.1.3" 1979 | }, 1980 | "engines": { 1981 | "node": ">= 0.4" 1982 | }, 1983 | "funding": { 1984 | "url": "https://github.com/sponsors/ljharb" 1985 | } 1986 | }, 1987 | "node_modules/globalyzer": { 1988 | "version": "0.1.0", 1989 | "resolved": "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz", 1990 | "integrity": "sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==" 1991 | }, 1992 | "node_modules/globby": { 1993 | "version": "11.1.0", 1994 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 1995 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 1996 | "dependencies": { 1997 | "array-union": "^2.1.0", 1998 | "dir-glob": "^3.0.1", 1999 | "fast-glob": "^3.2.9", 2000 | "ignore": "^5.2.0", 2001 | "merge2": "^1.4.1", 2002 | "slash": "^3.0.0" 2003 | }, 2004 | "engines": { 2005 | "node": ">=10" 2006 | }, 2007 | "funding": { 2008 | "url": "https://github.com/sponsors/sindresorhus" 2009 | } 2010 | }, 2011 | "node_modules/globrex": { 2012 | "version": "0.1.2", 2013 | "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", 2014 | "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==" 2015 | }, 2016 | "node_modules/gopd": { 2017 | "version": "1.0.1", 2018 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", 2019 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", 2020 | "dependencies": { 2021 | "get-intrinsic": "^1.1.3" 2022 | }, 2023 | "funding": { 2024 | "url": "https://github.com/sponsors/ljharb" 2025 | } 2026 | }, 2027 | "node_modules/graceful-fs": { 2028 | "version": "4.2.11", 2029 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 2030 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" 2031 | }, 2032 | "node_modules/graphemer": { 2033 | "version": "1.4.0", 2034 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 2035 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" 2036 | }, 2037 | "node_modules/has": { 2038 | "version": "1.0.3", 2039 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 2040 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 2041 | "dependencies": { 2042 | "function-bind": "^1.1.1" 2043 | }, 2044 | "engines": { 2045 | "node": ">= 0.4.0" 2046 | } 2047 | }, 2048 | "node_modules/has-bigints": { 2049 | "version": "1.0.2", 2050 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", 2051 | "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", 2052 | "funding": { 2053 | "url": "https://github.com/sponsors/ljharb" 2054 | } 2055 | }, 2056 | "node_modules/has-flag": { 2057 | "version": "4.0.0", 2058 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2059 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2060 | "engines": { 2061 | "node": ">=8" 2062 | } 2063 | }, 2064 | "node_modules/has-property-descriptors": { 2065 | "version": "1.0.0", 2066 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", 2067 | "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", 2068 | "dependencies": { 2069 | "get-intrinsic": "^1.1.1" 2070 | }, 2071 | "funding": { 2072 | "url": "https://github.com/sponsors/ljharb" 2073 | } 2074 | }, 2075 | "node_modules/has-proto": { 2076 | "version": "1.0.1", 2077 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", 2078 | "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", 2079 | "engines": { 2080 | "node": ">= 0.4" 2081 | }, 2082 | "funding": { 2083 | "url": "https://github.com/sponsors/ljharb" 2084 | } 2085 | }, 2086 | "node_modules/has-symbols": { 2087 | "version": "1.0.3", 2088 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 2089 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 2090 | "engines": { 2091 | "node": ">= 0.4" 2092 | }, 2093 | "funding": { 2094 | "url": "https://github.com/sponsors/ljharb" 2095 | } 2096 | }, 2097 | "node_modules/has-tostringtag": { 2098 | "version": "1.0.0", 2099 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", 2100 | "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", 2101 | "dependencies": { 2102 | "has-symbols": "^1.0.2" 2103 | }, 2104 | "engines": { 2105 | "node": ">= 0.4" 2106 | }, 2107 | "funding": { 2108 | "url": "https://github.com/sponsors/ljharb" 2109 | } 2110 | }, 2111 | "node_modules/ignore": { 2112 | "version": "5.2.4", 2113 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", 2114 | "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", 2115 | "engines": { 2116 | "node": ">= 4" 2117 | } 2118 | }, 2119 | "node_modules/import-fresh": { 2120 | "version": "3.3.0", 2121 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 2122 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 2123 | "dependencies": { 2124 | "parent-module": "^1.0.0", 2125 | "resolve-from": "^4.0.0" 2126 | }, 2127 | "engines": { 2128 | "node": ">=6" 2129 | }, 2130 | "funding": { 2131 | "url": "https://github.com/sponsors/sindresorhus" 2132 | } 2133 | }, 2134 | "node_modules/imurmurhash": { 2135 | "version": "0.1.4", 2136 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2137 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2138 | "engines": { 2139 | "node": ">=0.8.19" 2140 | } 2141 | }, 2142 | "node_modules/inflight": { 2143 | "version": "1.0.6", 2144 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 2145 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 2146 | "dependencies": { 2147 | "once": "^1.3.0", 2148 | "wrappy": "1" 2149 | } 2150 | }, 2151 | "node_modules/inherits": { 2152 | "version": "2.0.4", 2153 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2154 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 2155 | }, 2156 | "node_modules/internal-slot": { 2157 | "version": "1.0.5", 2158 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", 2159 | "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", 2160 | "dependencies": { 2161 | "get-intrinsic": "^1.2.0", 2162 | "has": "^1.0.3", 2163 | "side-channel": "^1.0.4" 2164 | }, 2165 | "engines": { 2166 | "node": ">= 0.4" 2167 | } 2168 | }, 2169 | "node_modules/is-arguments": { 2170 | "version": "1.1.1", 2171 | "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", 2172 | "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", 2173 | "dependencies": { 2174 | "call-bind": "^1.0.2", 2175 | "has-tostringtag": "^1.0.0" 2176 | }, 2177 | "engines": { 2178 | "node": ">= 0.4" 2179 | }, 2180 | "funding": { 2181 | "url": "https://github.com/sponsors/ljharb" 2182 | } 2183 | }, 2184 | "node_modules/is-array-buffer": { 2185 | "version": "3.0.2", 2186 | "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", 2187 | "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", 2188 | "dependencies": { 2189 | "call-bind": "^1.0.2", 2190 | "get-intrinsic": "^1.2.0", 2191 | "is-typed-array": "^1.1.10" 2192 | }, 2193 | "funding": { 2194 | "url": "https://github.com/sponsors/ljharb" 2195 | } 2196 | }, 2197 | "node_modules/is-bigint": { 2198 | "version": "1.0.4", 2199 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", 2200 | "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", 2201 | "dependencies": { 2202 | "has-bigints": "^1.0.1" 2203 | }, 2204 | "funding": { 2205 | "url": "https://github.com/sponsors/ljharb" 2206 | } 2207 | }, 2208 | "node_modules/is-binary-path": { 2209 | "version": "2.1.0", 2210 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 2211 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 2212 | "dependencies": { 2213 | "binary-extensions": "^2.0.0" 2214 | }, 2215 | "engines": { 2216 | "node": ">=8" 2217 | } 2218 | }, 2219 | "node_modules/is-boolean-object": { 2220 | "version": "1.1.2", 2221 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", 2222 | "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", 2223 | "dependencies": { 2224 | "call-bind": "^1.0.2", 2225 | "has-tostringtag": "^1.0.0" 2226 | }, 2227 | "engines": { 2228 | "node": ">= 0.4" 2229 | }, 2230 | "funding": { 2231 | "url": "https://github.com/sponsors/ljharb" 2232 | } 2233 | }, 2234 | "node_modules/is-callable": { 2235 | "version": "1.2.7", 2236 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", 2237 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", 2238 | "engines": { 2239 | "node": ">= 0.4" 2240 | }, 2241 | "funding": { 2242 | "url": "https://github.com/sponsors/ljharb" 2243 | } 2244 | }, 2245 | "node_modules/is-core-module": { 2246 | "version": "2.12.0", 2247 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz", 2248 | "integrity": "sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==", 2249 | "dependencies": { 2250 | "has": "^1.0.3" 2251 | }, 2252 | "funding": { 2253 | "url": "https://github.com/sponsors/ljharb" 2254 | } 2255 | }, 2256 | "node_modules/is-date-object": { 2257 | "version": "1.0.5", 2258 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", 2259 | "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", 2260 | "dependencies": { 2261 | "has-tostringtag": "^1.0.0" 2262 | }, 2263 | "engines": { 2264 | "node": ">= 0.4" 2265 | }, 2266 | "funding": { 2267 | "url": "https://github.com/sponsors/ljharb" 2268 | } 2269 | }, 2270 | "node_modules/is-docker": { 2271 | "version": "2.2.1", 2272 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", 2273 | "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", 2274 | "bin": { 2275 | "is-docker": "cli.js" 2276 | }, 2277 | "engines": { 2278 | "node": ">=8" 2279 | }, 2280 | "funding": { 2281 | "url": "https://github.com/sponsors/sindresorhus" 2282 | } 2283 | }, 2284 | "node_modules/is-extglob": { 2285 | "version": "2.1.1", 2286 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2287 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2288 | "engines": { 2289 | "node": ">=0.10.0" 2290 | } 2291 | }, 2292 | "node_modules/is-glob": { 2293 | "version": "4.0.3", 2294 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2295 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2296 | "dependencies": { 2297 | "is-extglob": "^2.1.1" 2298 | }, 2299 | "engines": { 2300 | "node": ">=0.10.0" 2301 | } 2302 | }, 2303 | "node_modules/is-map": { 2304 | "version": "2.0.2", 2305 | "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", 2306 | "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", 2307 | "funding": { 2308 | "url": "https://github.com/sponsors/ljharb" 2309 | } 2310 | }, 2311 | "node_modules/is-negative-zero": { 2312 | "version": "2.0.2", 2313 | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", 2314 | "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", 2315 | "engines": { 2316 | "node": ">= 0.4" 2317 | }, 2318 | "funding": { 2319 | "url": "https://github.com/sponsors/ljharb" 2320 | } 2321 | }, 2322 | "node_modules/is-number": { 2323 | "version": "7.0.0", 2324 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2325 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2326 | "engines": { 2327 | "node": ">=0.12.0" 2328 | } 2329 | }, 2330 | "node_modules/is-number-object": { 2331 | "version": "1.0.7", 2332 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", 2333 | "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", 2334 | "dependencies": { 2335 | "has-tostringtag": "^1.0.0" 2336 | }, 2337 | "engines": { 2338 | "node": ">= 0.4" 2339 | }, 2340 | "funding": { 2341 | "url": "https://github.com/sponsors/ljharb" 2342 | } 2343 | }, 2344 | "node_modules/is-path-inside": { 2345 | "version": "3.0.3", 2346 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 2347 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 2348 | "engines": { 2349 | "node": ">=8" 2350 | } 2351 | }, 2352 | "node_modules/is-regex": { 2353 | "version": "1.1.4", 2354 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", 2355 | "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", 2356 | "dependencies": { 2357 | "call-bind": "^1.0.2", 2358 | "has-tostringtag": "^1.0.0" 2359 | }, 2360 | "engines": { 2361 | "node": ">= 0.4" 2362 | }, 2363 | "funding": { 2364 | "url": "https://github.com/sponsors/ljharb" 2365 | } 2366 | }, 2367 | "node_modules/is-set": { 2368 | "version": "2.0.2", 2369 | "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", 2370 | "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", 2371 | "funding": { 2372 | "url": "https://github.com/sponsors/ljharb" 2373 | } 2374 | }, 2375 | "node_modules/is-shared-array-buffer": { 2376 | "version": "1.0.2", 2377 | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", 2378 | "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", 2379 | "dependencies": { 2380 | "call-bind": "^1.0.2" 2381 | }, 2382 | "funding": { 2383 | "url": "https://github.com/sponsors/ljharb" 2384 | } 2385 | }, 2386 | "node_modules/is-string": { 2387 | "version": "1.0.7", 2388 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", 2389 | "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", 2390 | "dependencies": { 2391 | "has-tostringtag": "^1.0.0" 2392 | }, 2393 | "engines": { 2394 | "node": ">= 0.4" 2395 | }, 2396 | "funding": { 2397 | "url": "https://github.com/sponsors/ljharb" 2398 | } 2399 | }, 2400 | "node_modules/is-symbol": { 2401 | "version": "1.0.4", 2402 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", 2403 | "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", 2404 | "dependencies": { 2405 | "has-symbols": "^1.0.2" 2406 | }, 2407 | "engines": { 2408 | "node": ">= 0.4" 2409 | }, 2410 | "funding": { 2411 | "url": "https://github.com/sponsors/ljharb" 2412 | } 2413 | }, 2414 | "node_modules/is-typed-array": { 2415 | "version": "1.1.10", 2416 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", 2417 | "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", 2418 | "dependencies": { 2419 | "available-typed-arrays": "^1.0.5", 2420 | "call-bind": "^1.0.2", 2421 | "for-each": "^0.3.3", 2422 | "gopd": "^1.0.1", 2423 | "has-tostringtag": "^1.0.0" 2424 | }, 2425 | "engines": { 2426 | "node": ">= 0.4" 2427 | }, 2428 | "funding": { 2429 | "url": "https://github.com/sponsors/ljharb" 2430 | } 2431 | }, 2432 | "node_modules/is-weakmap": { 2433 | "version": "2.0.1", 2434 | "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", 2435 | "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", 2436 | "funding": { 2437 | "url": "https://github.com/sponsors/ljharb" 2438 | } 2439 | }, 2440 | "node_modules/is-weakref": { 2441 | "version": "1.0.2", 2442 | "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", 2443 | "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", 2444 | "dependencies": { 2445 | "call-bind": "^1.0.2" 2446 | }, 2447 | "funding": { 2448 | "url": "https://github.com/sponsors/ljharb" 2449 | } 2450 | }, 2451 | "node_modules/is-weakset": { 2452 | "version": "2.0.2", 2453 | "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", 2454 | "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", 2455 | "dependencies": { 2456 | "call-bind": "^1.0.2", 2457 | "get-intrinsic": "^1.1.1" 2458 | }, 2459 | "funding": { 2460 | "url": "https://github.com/sponsors/ljharb" 2461 | } 2462 | }, 2463 | "node_modules/is-wsl": { 2464 | "version": "2.2.0", 2465 | "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", 2466 | "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", 2467 | "dependencies": { 2468 | "is-docker": "^2.0.0" 2469 | }, 2470 | "engines": { 2471 | "node": ">=8" 2472 | } 2473 | }, 2474 | "node_modules/isarray": { 2475 | "version": "2.0.5", 2476 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", 2477 | "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" 2478 | }, 2479 | "node_modules/isexe": { 2480 | "version": "2.0.0", 2481 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2482 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" 2483 | }, 2484 | "node_modules/jiti": { 2485 | "version": "1.18.2", 2486 | "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.18.2.tgz", 2487 | "integrity": "sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==", 2488 | "bin": { 2489 | "jiti": "bin/jiti.js" 2490 | } 2491 | }, 2492 | "node_modules/jose": { 2493 | "version": "4.14.0", 2494 | "resolved": "https://registry.npmjs.org/jose/-/jose-4.14.0.tgz", 2495 | "integrity": "sha512-LSA/XenLPwqk6e2L+PSUNuuY9G4NGsvjRWz6sJcUBmzTLEPJqQh46FHSUxnAQ64AWOkRO6bSXpy3yXuEKZkbIA==", 2496 | "funding": { 2497 | "url": "https://github.com/sponsors/panva" 2498 | } 2499 | }, 2500 | "node_modules/js-tokens": { 2501 | "version": "4.0.0", 2502 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2503 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" 2504 | }, 2505 | "node_modules/js-yaml": { 2506 | "version": "4.1.0", 2507 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2508 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2509 | "dependencies": { 2510 | "argparse": "^2.0.1" 2511 | }, 2512 | "bin": { 2513 | "js-yaml": "bin/js-yaml.js" 2514 | } 2515 | }, 2516 | "node_modules/json-schema-traverse": { 2517 | "version": "0.4.1", 2518 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2519 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" 2520 | }, 2521 | "node_modules/json-stable-stringify-without-jsonify": { 2522 | "version": "1.0.1", 2523 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2524 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" 2525 | }, 2526 | "node_modules/json5": { 2527 | "version": "1.0.2", 2528 | "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", 2529 | "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", 2530 | "dependencies": { 2531 | "minimist": "^1.2.0" 2532 | }, 2533 | "bin": { 2534 | "json5": "lib/cli.js" 2535 | } 2536 | }, 2537 | "node_modules/jsx-ast-utils": { 2538 | "version": "3.3.3", 2539 | "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", 2540 | "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", 2541 | "dependencies": { 2542 | "array-includes": "^3.1.5", 2543 | "object.assign": "^4.1.3" 2544 | }, 2545 | "engines": { 2546 | "node": ">=4.0" 2547 | } 2548 | }, 2549 | "node_modules/language-subtag-registry": { 2550 | "version": "0.3.22", 2551 | "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", 2552 | "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" 2553 | }, 2554 | "node_modules/language-tags": { 2555 | "version": "1.0.5", 2556 | "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", 2557 | "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", 2558 | "dependencies": { 2559 | "language-subtag-registry": "~0.3.2" 2560 | } 2561 | }, 2562 | "node_modules/levn": { 2563 | "version": "0.4.1", 2564 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2565 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2566 | "dependencies": { 2567 | "prelude-ls": "^1.2.1", 2568 | "type-check": "~0.4.0" 2569 | }, 2570 | "engines": { 2571 | "node": ">= 0.8.0" 2572 | } 2573 | }, 2574 | "node_modules/lilconfig": { 2575 | "version": "2.1.0", 2576 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", 2577 | "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", 2578 | "engines": { 2579 | "node": ">=10" 2580 | } 2581 | }, 2582 | "node_modules/lines-and-columns": { 2583 | "version": "1.2.4", 2584 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 2585 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" 2586 | }, 2587 | "node_modules/locate-path": { 2588 | "version": "6.0.0", 2589 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2590 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2591 | "dependencies": { 2592 | "p-locate": "^5.0.0" 2593 | }, 2594 | "engines": { 2595 | "node": ">=10" 2596 | }, 2597 | "funding": { 2598 | "url": "https://github.com/sponsors/sindresorhus" 2599 | } 2600 | }, 2601 | "node_modules/lodash.merge": { 2602 | "version": "4.6.2", 2603 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2604 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" 2605 | }, 2606 | "node_modules/loose-envify": { 2607 | "version": "1.4.0", 2608 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", 2609 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", 2610 | "dependencies": { 2611 | "js-tokens": "^3.0.0 || ^4.0.0" 2612 | }, 2613 | "bin": { 2614 | "loose-envify": "cli.js" 2615 | } 2616 | }, 2617 | "node_modules/lru-cache": { 2618 | "version": "6.0.0", 2619 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 2620 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 2621 | "dependencies": { 2622 | "yallist": "^4.0.0" 2623 | }, 2624 | "engines": { 2625 | "node": ">=10" 2626 | } 2627 | }, 2628 | "node_modules/merge2": { 2629 | "version": "1.4.1", 2630 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2631 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2632 | "engines": { 2633 | "node": ">= 8" 2634 | } 2635 | }, 2636 | "node_modules/micromatch": { 2637 | "version": "4.0.5", 2638 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 2639 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 2640 | "dependencies": { 2641 | "braces": "^3.0.2", 2642 | "picomatch": "^2.3.1" 2643 | }, 2644 | "engines": { 2645 | "node": ">=8.6" 2646 | } 2647 | }, 2648 | "node_modules/minimatch": { 2649 | "version": "3.1.2", 2650 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2651 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2652 | "dependencies": { 2653 | "brace-expansion": "^1.1.7" 2654 | }, 2655 | "engines": { 2656 | "node": "*" 2657 | } 2658 | }, 2659 | "node_modules/minimist": { 2660 | "version": "1.2.8", 2661 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 2662 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", 2663 | "funding": { 2664 | "url": "https://github.com/sponsors/ljharb" 2665 | } 2666 | }, 2667 | "node_modules/ms": { 2668 | "version": "2.1.2", 2669 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 2670 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 2671 | }, 2672 | "node_modules/mz": { 2673 | "version": "2.7.0", 2674 | "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", 2675 | "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", 2676 | "dependencies": { 2677 | "any-promise": "^1.0.0", 2678 | "object-assign": "^4.0.1", 2679 | "thenify-all": "^1.0.0" 2680 | } 2681 | }, 2682 | "node_modules/nanoid": { 2683 | "version": "3.3.6", 2684 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", 2685 | "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", 2686 | "funding": [ 2687 | { 2688 | "type": "github", 2689 | "url": "https://github.com/sponsors/ai" 2690 | } 2691 | ], 2692 | "bin": { 2693 | "nanoid": "bin/nanoid.cjs" 2694 | }, 2695 | "engines": { 2696 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2697 | } 2698 | }, 2699 | "node_modules/natural-compare": { 2700 | "version": "1.4.0", 2701 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2702 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" 2703 | }, 2704 | "node_modules/next": { 2705 | "version": "13.4.19", 2706 | "resolved": "https://registry.npmjs.org/next/-/next-13.4.19.tgz", 2707 | "integrity": "sha512-HuPSzzAbJ1T4BD8e0bs6B9C1kWQ6gv8ykZoRWs5AQoiIuqbGHHdQO7Ljuvg05Q0Z24E2ABozHe6FxDvI6HfyAw==", 2708 | "dependencies": { 2709 | "@next/env": "13.4.19", 2710 | "@swc/helpers": "0.5.1", 2711 | "busboy": "1.6.0", 2712 | "caniuse-lite": "^1.0.30001406", 2713 | "postcss": "8.4.14", 2714 | "styled-jsx": "5.1.1", 2715 | "watchpack": "2.4.0", 2716 | "zod": "3.21.4" 2717 | }, 2718 | "bin": { 2719 | "next": "dist/bin/next" 2720 | }, 2721 | "engines": { 2722 | "node": ">=16.8.0" 2723 | }, 2724 | "optionalDependencies": { 2725 | "@next/swc-darwin-arm64": "13.4.19", 2726 | "@next/swc-darwin-x64": "13.4.19", 2727 | "@next/swc-linux-arm64-gnu": "13.4.19", 2728 | "@next/swc-linux-arm64-musl": "13.4.19", 2729 | "@next/swc-linux-x64-gnu": "13.4.19", 2730 | "@next/swc-linux-x64-musl": "13.4.19", 2731 | "@next/swc-win32-arm64-msvc": "13.4.19", 2732 | "@next/swc-win32-ia32-msvc": "13.4.19", 2733 | "@next/swc-win32-x64-msvc": "13.4.19" 2734 | }, 2735 | "peerDependencies": { 2736 | "@opentelemetry/api": "^1.1.0", 2737 | "react": "^18.2.0", 2738 | "react-dom": "^18.2.0", 2739 | "sass": "^1.3.0" 2740 | }, 2741 | "peerDependenciesMeta": { 2742 | "@opentelemetry/api": { 2743 | "optional": true 2744 | }, 2745 | "sass": { 2746 | "optional": true 2747 | } 2748 | } 2749 | }, 2750 | "node_modules/next-auth": { 2751 | "version": "4.23.1", 2752 | "resolved": "https://registry.npmjs.org/next-auth/-/next-auth-4.23.1.tgz", 2753 | "integrity": "sha512-mL083z8KgRtlrIV6CDca2H1kduWJuK/3pTS0Fe2og15KOm4v2kkLGdSDfc2g+019aEBrJUT0pPW2Xx42ImN1WA==", 2754 | "dependencies": { 2755 | "@babel/runtime": "^7.20.13", 2756 | "@panva/hkdf": "^1.0.2", 2757 | "cookie": "^0.5.0", 2758 | "jose": "^4.11.4", 2759 | "oauth": "^0.9.15", 2760 | "openid-client": "^5.4.0", 2761 | "preact": "^10.6.3", 2762 | "preact-render-to-string": "^5.1.19", 2763 | "uuid": "^8.3.2" 2764 | }, 2765 | "peerDependencies": { 2766 | "next": "^12.2.5 || ^13", 2767 | "nodemailer": "^6.6.5", 2768 | "react": "^17.0.2 || ^18", 2769 | "react-dom": "^17.0.2 || ^18" 2770 | }, 2771 | "peerDependenciesMeta": { 2772 | "nodemailer": { 2773 | "optional": true 2774 | } 2775 | } 2776 | }, 2777 | "node_modules/next/node_modules/postcss": { 2778 | "version": "8.4.14", 2779 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", 2780 | "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", 2781 | "funding": [ 2782 | { 2783 | "type": "opencollective", 2784 | "url": "https://opencollective.com/postcss/" 2785 | }, 2786 | { 2787 | "type": "tidelift", 2788 | "url": "https://tidelift.com/funding/github/npm/postcss" 2789 | } 2790 | ], 2791 | "dependencies": { 2792 | "nanoid": "^3.3.4", 2793 | "picocolors": "^1.0.0", 2794 | "source-map-js": "^1.0.2" 2795 | }, 2796 | "engines": { 2797 | "node": "^10 || ^12 || >=14" 2798 | } 2799 | }, 2800 | "node_modules/node-releases": { 2801 | "version": "2.0.13", 2802 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", 2803 | "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" 2804 | }, 2805 | "node_modules/normalize-path": { 2806 | "version": "3.0.0", 2807 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 2808 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 2809 | "engines": { 2810 | "node": ">=0.10.0" 2811 | } 2812 | }, 2813 | "node_modules/normalize-range": { 2814 | "version": "0.1.2", 2815 | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", 2816 | "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", 2817 | "engines": { 2818 | "node": ">=0.10.0" 2819 | } 2820 | }, 2821 | "node_modules/oauth": { 2822 | "version": "0.9.15", 2823 | "resolved": "https://registry.npmjs.org/oauth/-/oauth-0.9.15.tgz", 2824 | "integrity": "sha512-a5ERWK1kh38ExDEfoO6qUHJb32rd7aYmPHuyCu3Fta/cnICvYmgd2uhuKXvPD+PXB+gCEYYEaQdIRAjCOwAKNA==" 2825 | }, 2826 | "node_modules/object-assign": { 2827 | "version": "4.1.1", 2828 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 2829 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 2830 | "engines": { 2831 | "node": ">=0.10.0" 2832 | } 2833 | }, 2834 | "node_modules/object-hash": { 2835 | "version": "3.0.0", 2836 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", 2837 | "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", 2838 | "engines": { 2839 | "node": ">= 6" 2840 | } 2841 | }, 2842 | "node_modules/object-inspect": { 2843 | "version": "1.12.3", 2844 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", 2845 | "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", 2846 | "funding": { 2847 | "url": "https://github.com/sponsors/ljharb" 2848 | } 2849 | }, 2850 | "node_modules/object-is": { 2851 | "version": "1.1.5", 2852 | "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", 2853 | "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", 2854 | "dependencies": { 2855 | "call-bind": "^1.0.2", 2856 | "define-properties": "^1.1.3" 2857 | }, 2858 | "engines": { 2859 | "node": ">= 0.4" 2860 | }, 2861 | "funding": { 2862 | "url": "https://github.com/sponsors/ljharb" 2863 | } 2864 | }, 2865 | "node_modules/object-keys": { 2866 | "version": "1.1.1", 2867 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 2868 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 2869 | "engines": { 2870 | "node": ">= 0.4" 2871 | } 2872 | }, 2873 | "node_modules/object.assign": { 2874 | "version": "4.1.4", 2875 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", 2876 | "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", 2877 | "dependencies": { 2878 | "call-bind": "^1.0.2", 2879 | "define-properties": "^1.1.4", 2880 | "has-symbols": "^1.0.3", 2881 | "object-keys": "^1.1.1" 2882 | }, 2883 | "engines": { 2884 | "node": ">= 0.4" 2885 | }, 2886 | "funding": { 2887 | "url": "https://github.com/sponsors/ljharb" 2888 | } 2889 | }, 2890 | "node_modules/object.entries": { 2891 | "version": "1.1.6", 2892 | "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", 2893 | "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", 2894 | "dependencies": { 2895 | "call-bind": "^1.0.2", 2896 | "define-properties": "^1.1.4", 2897 | "es-abstract": "^1.20.4" 2898 | }, 2899 | "engines": { 2900 | "node": ">= 0.4" 2901 | } 2902 | }, 2903 | "node_modules/object.fromentries": { 2904 | "version": "2.0.6", 2905 | "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", 2906 | "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", 2907 | "dependencies": { 2908 | "call-bind": "^1.0.2", 2909 | "define-properties": "^1.1.4", 2910 | "es-abstract": "^1.20.4" 2911 | }, 2912 | "engines": { 2913 | "node": ">= 0.4" 2914 | }, 2915 | "funding": { 2916 | "url": "https://github.com/sponsors/ljharb" 2917 | } 2918 | }, 2919 | "node_modules/object.hasown": { 2920 | "version": "1.1.2", 2921 | "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", 2922 | "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", 2923 | "dependencies": { 2924 | "define-properties": "^1.1.4", 2925 | "es-abstract": "^1.20.4" 2926 | }, 2927 | "funding": { 2928 | "url": "https://github.com/sponsors/ljharb" 2929 | } 2930 | }, 2931 | "node_modules/object.values": { 2932 | "version": "1.1.6", 2933 | "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", 2934 | "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", 2935 | "dependencies": { 2936 | "call-bind": "^1.0.2", 2937 | "define-properties": "^1.1.4", 2938 | "es-abstract": "^1.20.4" 2939 | }, 2940 | "engines": { 2941 | "node": ">= 0.4" 2942 | }, 2943 | "funding": { 2944 | "url": "https://github.com/sponsors/ljharb" 2945 | } 2946 | }, 2947 | "node_modules/oidc-token-hash": { 2948 | "version": "5.0.2", 2949 | "resolved": "https://registry.npmjs.org/oidc-token-hash/-/oidc-token-hash-5.0.2.tgz", 2950 | "integrity": "sha512-U91Ba78GtVBxcExLI7U+hC2AwJQqXQEW/D3fjmJC4hhSVIgdl954KO4Gu95WqAlgDKJdLATxkmuxraWLT0fVRQ==", 2951 | "engines": { 2952 | "node": "^10.13.0 || >=12.0.0" 2953 | } 2954 | }, 2955 | "node_modules/once": { 2956 | "version": "1.4.0", 2957 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2958 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2959 | "dependencies": { 2960 | "wrappy": "1" 2961 | } 2962 | }, 2963 | "node_modules/open": { 2964 | "version": "8.4.2", 2965 | "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", 2966 | "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", 2967 | "dependencies": { 2968 | "define-lazy-prop": "^2.0.0", 2969 | "is-docker": "^2.1.1", 2970 | "is-wsl": "^2.2.0" 2971 | }, 2972 | "engines": { 2973 | "node": ">=12" 2974 | }, 2975 | "funding": { 2976 | "url": "https://github.com/sponsors/sindresorhus" 2977 | } 2978 | }, 2979 | "node_modules/openid-client": { 2980 | "version": "5.4.0", 2981 | "resolved": "https://registry.npmjs.org/openid-client/-/openid-client-5.4.0.tgz", 2982 | "integrity": "sha512-hgJa2aQKcM2hn3eyVtN12tEA45ECjTJPXCgUh5YzTzy9qwapCvmDTVPWOcWVL0d34zeQoQ/hbG9lJhl3AYxJlQ==", 2983 | "dependencies": { 2984 | "jose": "^4.10.0", 2985 | "lru-cache": "^6.0.0", 2986 | "object-hash": "^2.0.1", 2987 | "oidc-token-hash": "^5.0.1" 2988 | }, 2989 | "funding": { 2990 | "url": "https://github.com/sponsors/panva" 2991 | } 2992 | }, 2993 | "node_modules/openid-client/node_modules/object-hash": { 2994 | "version": "2.2.0", 2995 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz", 2996 | "integrity": "sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==", 2997 | "engines": { 2998 | "node": ">= 6" 2999 | } 3000 | }, 3001 | "node_modules/optionator": { 3002 | "version": "0.9.3", 3003 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", 3004 | "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", 3005 | "dependencies": { 3006 | "@aashutoshrathi/word-wrap": "^1.2.3", 3007 | "deep-is": "^0.1.3", 3008 | "fast-levenshtein": "^2.0.6", 3009 | "levn": "^0.4.1", 3010 | "prelude-ls": "^1.2.1", 3011 | "type-check": "^0.4.0" 3012 | }, 3013 | "engines": { 3014 | "node": ">= 0.8.0" 3015 | } 3016 | }, 3017 | "node_modules/p-limit": { 3018 | "version": "3.1.0", 3019 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 3020 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 3021 | "dependencies": { 3022 | "yocto-queue": "^0.1.0" 3023 | }, 3024 | "engines": { 3025 | "node": ">=10" 3026 | }, 3027 | "funding": { 3028 | "url": "https://github.com/sponsors/sindresorhus" 3029 | } 3030 | }, 3031 | "node_modules/p-locate": { 3032 | "version": "5.0.0", 3033 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 3034 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 3035 | "dependencies": { 3036 | "p-limit": "^3.0.2" 3037 | }, 3038 | "engines": { 3039 | "node": ">=10" 3040 | }, 3041 | "funding": { 3042 | "url": "https://github.com/sponsors/sindresorhus" 3043 | } 3044 | }, 3045 | "node_modules/parent-module": { 3046 | "version": "1.0.1", 3047 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 3048 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 3049 | "dependencies": { 3050 | "callsites": "^3.0.0" 3051 | }, 3052 | "engines": { 3053 | "node": ">=6" 3054 | } 3055 | }, 3056 | "node_modules/path-exists": { 3057 | "version": "4.0.0", 3058 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 3059 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 3060 | "engines": { 3061 | "node": ">=8" 3062 | } 3063 | }, 3064 | "node_modules/path-is-absolute": { 3065 | "version": "1.0.1", 3066 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 3067 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 3068 | "engines": { 3069 | "node": ">=0.10.0" 3070 | } 3071 | }, 3072 | "node_modules/path-key": { 3073 | "version": "3.1.1", 3074 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3075 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3076 | "engines": { 3077 | "node": ">=8" 3078 | } 3079 | }, 3080 | "node_modules/path-parse": { 3081 | "version": "1.0.7", 3082 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 3083 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" 3084 | }, 3085 | "node_modules/path-type": { 3086 | "version": "4.0.0", 3087 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 3088 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 3089 | "engines": { 3090 | "node": ">=8" 3091 | } 3092 | }, 3093 | "node_modules/picocolors": { 3094 | "version": "1.0.0", 3095 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 3096 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" 3097 | }, 3098 | "node_modules/picomatch": { 3099 | "version": "2.3.1", 3100 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3101 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3102 | "engines": { 3103 | "node": ">=8.6" 3104 | }, 3105 | "funding": { 3106 | "url": "https://github.com/sponsors/jonschlinkert" 3107 | } 3108 | }, 3109 | "node_modules/pify": { 3110 | "version": "2.3.0", 3111 | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", 3112 | "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", 3113 | "engines": { 3114 | "node": ">=0.10.0" 3115 | } 3116 | }, 3117 | "node_modules/pirates": { 3118 | "version": "4.0.5", 3119 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", 3120 | "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", 3121 | "engines": { 3122 | "node": ">= 6" 3123 | } 3124 | }, 3125 | "node_modules/postcss": { 3126 | "version": "8.4.28", 3127 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.28.tgz", 3128 | "integrity": "sha512-Z7V5j0cq8oEKyejIKfpD8b4eBy9cwW2JWPk0+fB1HOAMsfHbnAXLLS+PfVWlzMSLQaWttKDt607I0XHmpE67Vw==", 3129 | "funding": [ 3130 | { 3131 | "type": "opencollective", 3132 | "url": "https://opencollective.com/postcss/" 3133 | }, 3134 | { 3135 | "type": "tidelift", 3136 | "url": "https://tidelift.com/funding/github/npm/postcss" 3137 | }, 3138 | { 3139 | "type": "github", 3140 | "url": "https://github.com/sponsors/ai" 3141 | } 3142 | ], 3143 | "dependencies": { 3144 | "nanoid": "^3.3.6", 3145 | "picocolors": "^1.0.0", 3146 | "source-map-js": "^1.0.2" 3147 | }, 3148 | "engines": { 3149 | "node": "^10 || ^12 || >=14" 3150 | } 3151 | }, 3152 | "node_modules/postcss-import": { 3153 | "version": "15.1.0", 3154 | "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", 3155 | "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", 3156 | "dependencies": { 3157 | "postcss-value-parser": "^4.0.0", 3158 | "read-cache": "^1.0.0", 3159 | "resolve": "^1.1.7" 3160 | }, 3161 | "engines": { 3162 | "node": ">=14.0.0" 3163 | }, 3164 | "peerDependencies": { 3165 | "postcss": "^8.0.0" 3166 | } 3167 | }, 3168 | "node_modules/postcss-js": { 3169 | "version": "4.0.1", 3170 | "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", 3171 | "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", 3172 | "dependencies": { 3173 | "camelcase-css": "^2.0.1" 3174 | }, 3175 | "engines": { 3176 | "node": "^12 || ^14 || >= 16" 3177 | }, 3178 | "funding": { 3179 | "type": "opencollective", 3180 | "url": "https://opencollective.com/postcss/" 3181 | }, 3182 | "peerDependencies": { 3183 | "postcss": "^8.4.21" 3184 | } 3185 | }, 3186 | "node_modules/postcss-load-config": { 3187 | "version": "4.0.1", 3188 | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", 3189 | "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", 3190 | "dependencies": { 3191 | "lilconfig": "^2.0.5", 3192 | "yaml": "^2.1.1" 3193 | }, 3194 | "engines": { 3195 | "node": ">= 14" 3196 | }, 3197 | "funding": { 3198 | "type": "opencollective", 3199 | "url": "https://opencollective.com/postcss/" 3200 | }, 3201 | "peerDependencies": { 3202 | "postcss": ">=8.0.9", 3203 | "ts-node": ">=9.0.0" 3204 | }, 3205 | "peerDependenciesMeta": { 3206 | "postcss": { 3207 | "optional": true 3208 | }, 3209 | "ts-node": { 3210 | "optional": true 3211 | } 3212 | } 3213 | }, 3214 | "node_modules/postcss-nested": { 3215 | "version": "6.0.1", 3216 | "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", 3217 | "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", 3218 | "dependencies": { 3219 | "postcss-selector-parser": "^6.0.11" 3220 | }, 3221 | "engines": { 3222 | "node": ">=12.0" 3223 | }, 3224 | "funding": { 3225 | "type": "opencollective", 3226 | "url": "https://opencollective.com/postcss/" 3227 | }, 3228 | "peerDependencies": { 3229 | "postcss": "^8.2.14" 3230 | } 3231 | }, 3232 | "node_modules/postcss-selector-parser": { 3233 | "version": "6.0.13", 3234 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", 3235 | "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", 3236 | "dependencies": { 3237 | "cssesc": "^3.0.0", 3238 | "util-deprecate": "^1.0.2" 3239 | }, 3240 | "engines": { 3241 | "node": ">=4" 3242 | } 3243 | }, 3244 | "node_modules/postcss-value-parser": { 3245 | "version": "4.2.0", 3246 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", 3247 | "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" 3248 | }, 3249 | "node_modules/preact": { 3250 | "version": "10.13.2", 3251 | "resolved": "https://registry.npmjs.org/preact/-/preact-10.13.2.tgz", 3252 | "integrity": "sha512-q44QFLhOhty2Bd0Y46fnYW0gD/cbVM9dUVtNTDKPcdXSMA7jfY+Jpd6rk3GB0lcQss0z5s/6CmVP0Z/hV+g6pw==", 3253 | "funding": { 3254 | "type": "opencollective", 3255 | "url": "https://opencollective.com/preact" 3256 | } 3257 | }, 3258 | "node_modules/preact-render-to-string": { 3259 | "version": "5.2.6", 3260 | "resolved": "https://registry.npmjs.org/preact-render-to-string/-/preact-render-to-string-5.2.6.tgz", 3261 | "integrity": "sha512-JyhErpYOvBV1hEPwIxc/fHWXPfnEGdRKxc8gFdAZ7XV4tlzyzG847XAyEZqoDnynP88akM4eaHcSOzNcLWFguw==", 3262 | "dependencies": { 3263 | "pretty-format": "^3.8.0" 3264 | }, 3265 | "peerDependencies": { 3266 | "preact": ">=10" 3267 | } 3268 | }, 3269 | "node_modules/prelude-ls": { 3270 | "version": "1.2.1", 3271 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 3272 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 3273 | "engines": { 3274 | "node": ">= 0.8.0" 3275 | } 3276 | }, 3277 | "node_modules/pretty-format": { 3278 | "version": "3.8.0", 3279 | "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-3.8.0.tgz", 3280 | "integrity": "sha512-WuxUnVtlWL1OfZFQFuqvnvs6MiAGk9UNsBostyBOB0Is9wb5uRESevA6rnl/rkksXaGX3GzZhPup5d6Vp1nFew==" 3281 | }, 3282 | "node_modules/prop-types": { 3283 | "version": "15.8.1", 3284 | "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", 3285 | "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", 3286 | "dependencies": { 3287 | "loose-envify": "^1.4.0", 3288 | "object-assign": "^4.1.1", 3289 | "react-is": "^16.13.1" 3290 | } 3291 | }, 3292 | "node_modules/punycode": { 3293 | "version": "2.3.0", 3294 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", 3295 | "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", 3296 | "engines": { 3297 | "node": ">=6" 3298 | } 3299 | }, 3300 | "node_modules/queue-microtask": { 3301 | "version": "1.2.3", 3302 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 3303 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 3304 | "funding": [ 3305 | { 3306 | "type": "github", 3307 | "url": "https://github.com/sponsors/feross" 3308 | }, 3309 | { 3310 | "type": "patreon", 3311 | "url": "https://www.patreon.com/feross" 3312 | }, 3313 | { 3314 | "type": "consulting", 3315 | "url": "https://feross.org/support" 3316 | } 3317 | ] 3318 | }, 3319 | "node_modules/react": { 3320 | "version": "18.2.0", 3321 | "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", 3322 | "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", 3323 | "dependencies": { 3324 | "loose-envify": "^1.1.0" 3325 | }, 3326 | "engines": { 3327 | "node": ">=0.10.0" 3328 | } 3329 | }, 3330 | "node_modules/react-dom": { 3331 | "version": "18.2.0", 3332 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", 3333 | "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", 3334 | "dependencies": { 3335 | "loose-envify": "^1.1.0", 3336 | "scheduler": "^0.23.0" 3337 | }, 3338 | "peerDependencies": { 3339 | "react": "^18.2.0" 3340 | } 3341 | }, 3342 | "node_modules/react-is": { 3343 | "version": "16.13.1", 3344 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", 3345 | "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" 3346 | }, 3347 | "node_modules/read-cache": { 3348 | "version": "1.0.0", 3349 | "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", 3350 | "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", 3351 | "dependencies": { 3352 | "pify": "^2.3.0" 3353 | } 3354 | }, 3355 | "node_modules/readdirp": { 3356 | "version": "3.6.0", 3357 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 3358 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 3359 | "dependencies": { 3360 | "picomatch": "^2.2.1" 3361 | }, 3362 | "engines": { 3363 | "node": ">=8.10.0" 3364 | } 3365 | }, 3366 | "node_modules/regenerator-runtime": { 3367 | "version": "0.13.11", 3368 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", 3369 | "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" 3370 | }, 3371 | "node_modules/regexp.prototype.flags": { 3372 | "version": "1.4.3", 3373 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", 3374 | "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", 3375 | "dependencies": { 3376 | "call-bind": "^1.0.2", 3377 | "define-properties": "^1.1.3", 3378 | "functions-have-names": "^1.2.2" 3379 | }, 3380 | "engines": { 3381 | "node": ">= 0.4" 3382 | }, 3383 | "funding": { 3384 | "url": "https://github.com/sponsors/ljharb" 3385 | } 3386 | }, 3387 | "node_modules/resolve": { 3388 | "version": "1.22.3", 3389 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.3.tgz", 3390 | "integrity": "sha512-P8ur/gp/AmbEzjr729bZnLjXK5Z+4P0zhIJgBgzqRih7hL7BOukHGtSTA3ACMY467GRFz3duQsi0bDZdR7DKdw==", 3391 | "dependencies": { 3392 | "is-core-module": "^2.12.0", 3393 | "path-parse": "^1.0.7", 3394 | "supports-preserve-symlinks-flag": "^1.0.0" 3395 | }, 3396 | "bin": { 3397 | "resolve": "bin/resolve" 3398 | }, 3399 | "funding": { 3400 | "url": "https://github.com/sponsors/ljharb" 3401 | } 3402 | }, 3403 | "node_modules/resolve-from": { 3404 | "version": "4.0.0", 3405 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3406 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3407 | "engines": { 3408 | "node": ">=4" 3409 | } 3410 | }, 3411 | "node_modules/reusify": { 3412 | "version": "1.0.4", 3413 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 3414 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 3415 | "engines": { 3416 | "iojs": ">=1.0.0", 3417 | "node": ">=0.10.0" 3418 | } 3419 | }, 3420 | "node_modules/rimraf": { 3421 | "version": "3.0.2", 3422 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 3423 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 3424 | "dependencies": { 3425 | "glob": "^7.1.3" 3426 | }, 3427 | "bin": { 3428 | "rimraf": "bin.js" 3429 | }, 3430 | "funding": { 3431 | "url": "https://github.com/sponsors/isaacs" 3432 | } 3433 | }, 3434 | "node_modules/run-parallel": { 3435 | "version": "1.2.0", 3436 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 3437 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 3438 | "funding": [ 3439 | { 3440 | "type": "github", 3441 | "url": "https://github.com/sponsors/feross" 3442 | }, 3443 | { 3444 | "type": "patreon", 3445 | "url": "https://www.patreon.com/feross" 3446 | }, 3447 | { 3448 | "type": "consulting", 3449 | "url": "https://feross.org/support" 3450 | } 3451 | ], 3452 | "dependencies": { 3453 | "queue-microtask": "^1.2.2" 3454 | } 3455 | }, 3456 | "node_modules/safe-regex-test": { 3457 | "version": "1.0.0", 3458 | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", 3459 | "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", 3460 | "dependencies": { 3461 | "call-bind": "^1.0.2", 3462 | "get-intrinsic": "^1.1.3", 3463 | "is-regex": "^1.1.4" 3464 | }, 3465 | "funding": { 3466 | "url": "https://github.com/sponsors/ljharb" 3467 | } 3468 | }, 3469 | "node_modules/scheduler": { 3470 | "version": "0.23.0", 3471 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", 3472 | "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", 3473 | "dependencies": { 3474 | "loose-envify": "^1.1.0" 3475 | } 3476 | }, 3477 | "node_modules/semver": { 3478 | "version": "7.4.0", 3479 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.4.0.tgz", 3480 | "integrity": "sha512-RgOxM8Mw+7Zus0+zcLEUn8+JfoLpj/huFTItQy2hsM4khuC1HYRDp0cU482Ewn/Fcy6bCjufD8vAj7voC66KQw==", 3481 | "dependencies": { 3482 | "lru-cache": "^6.0.0" 3483 | }, 3484 | "bin": { 3485 | "semver": "bin/semver.js" 3486 | }, 3487 | "engines": { 3488 | "node": ">=10" 3489 | } 3490 | }, 3491 | "node_modules/shebang-command": { 3492 | "version": "2.0.0", 3493 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3494 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3495 | "dependencies": { 3496 | "shebang-regex": "^3.0.0" 3497 | }, 3498 | "engines": { 3499 | "node": ">=8" 3500 | } 3501 | }, 3502 | "node_modules/shebang-regex": { 3503 | "version": "3.0.0", 3504 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3505 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3506 | "engines": { 3507 | "node": ">=8" 3508 | } 3509 | }, 3510 | "node_modules/side-channel": { 3511 | "version": "1.0.4", 3512 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", 3513 | "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", 3514 | "dependencies": { 3515 | "call-bind": "^1.0.0", 3516 | "get-intrinsic": "^1.0.2", 3517 | "object-inspect": "^1.9.0" 3518 | }, 3519 | "funding": { 3520 | "url": "https://github.com/sponsors/ljharb" 3521 | } 3522 | }, 3523 | "node_modules/slash": { 3524 | "version": "3.0.0", 3525 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 3526 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 3527 | "engines": { 3528 | "node": ">=8" 3529 | } 3530 | }, 3531 | "node_modules/source-map-js": { 3532 | "version": "1.0.2", 3533 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", 3534 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", 3535 | "engines": { 3536 | "node": ">=0.10.0" 3537 | } 3538 | }, 3539 | "node_modules/stop-iteration-iterator": { 3540 | "version": "1.0.0", 3541 | "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", 3542 | "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", 3543 | "dependencies": { 3544 | "internal-slot": "^1.0.4" 3545 | }, 3546 | "engines": { 3547 | "node": ">= 0.4" 3548 | } 3549 | }, 3550 | "node_modules/streamsearch": { 3551 | "version": "1.1.0", 3552 | "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", 3553 | "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", 3554 | "engines": { 3555 | "node": ">=10.0.0" 3556 | } 3557 | }, 3558 | "node_modules/string.prototype.matchall": { 3559 | "version": "4.0.8", 3560 | "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", 3561 | "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", 3562 | "dependencies": { 3563 | "call-bind": "^1.0.2", 3564 | "define-properties": "^1.1.4", 3565 | "es-abstract": "^1.20.4", 3566 | "get-intrinsic": "^1.1.3", 3567 | "has-symbols": "^1.0.3", 3568 | "internal-slot": "^1.0.3", 3569 | "regexp.prototype.flags": "^1.4.3", 3570 | "side-channel": "^1.0.4" 3571 | }, 3572 | "funding": { 3573 | "url": "https://github.com/sponsors/ljharb" 3574 | } 3575 | }, 3576 | "node_modules/string.prototype.trim": { 3577 | "version": "1.2.7", 3578 | "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", 3579 | "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", 3580 | "dependencies": { 3581 | "call-bind": "^1.0.2", 3582 | "define-properties": "^1.1.4", 3583 | "es-abstract": "^1.20.4" 3584 | }, 3585 | "engines": { 3586 | "node": ">= 0.4" 3587 | }, 3588 | "funding": { 3589 | "url": "https://github.com/sponsors/ljharb" 3590 | } 3591 | }, 3592 | "node_modules/string.prototype.trimend": { 3593 | "version": "1.0.6", 3594 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", 3595 | "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", 3596 | "dependencies": { 3597 | "call-bind": "^1.0.2", 3598 | "define-properties": "^1.1.4", 3599 | "es-abstract": "^1.20.4" 3600 | }, 3601 | "funding": { 3602 | "url": "https://github.com/sponsors/ljharb" 3603 | } 3604 | }, 3605 | "node_modules/string.prototype.trimstart": { 3606 | "version": "1.0.6", 3607 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", 3608 | "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", 3609 | "dependencies": { 3610 | "call-bind": "^1.0.2", 3611 | "define-properties": "^1.1.4", 3612 | "es-abstract": "^1.20.4" 3613 | }, 3614 | "funding": { 3615 | "url": "https://github.com/sponsors/ljharb" 3616 | } 3617 | }, 3618 | "node_modules/strip-ansi": { 3619 | "version": "6.0.1", 3620 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3621 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3622 | "dependencies": { 3623 | "ansi-regex": "^5.0.1" 3624 | }, 3625 | "engines": { 3626 | "node": ">=8" 3627 | } 3628 | }, 3629 | "node_modules/strip-bom": { 3630 | "version": "3.0.0", 3631 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", 3632 | "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", 3633 | "engines": { 3634 | "node": ">=4" 3635 | } 3636 | }, 3637 | "node_modules/strip-json-comments": { 3638 | "version": "3.1.1", 3639 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3640 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3641 | "engines": { 3642 | "node": ">=8" 3643 | }, 3644 | "funding": { 3645 | "url": "https://github.com/sponsors/sindresorhus" 3646 | } 3647 | }, 3648 | "node_modules/styled-jsx": { 3649 | "version": "5.1.1", 3650 | "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", 3651 | "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", 3652 | "dependencies": { 3653 | "client-only": "0.0.1" 3654 | }, 3655 | "engines": { 3656 | "node": ">= 12.0.0" 3657 | }, 3658 | "peerDependencies": { 3659 | "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" 3660 | }, 3661 | "peerDependenciesMeta": { 3662 | "@babel/core": { 3663 | "optional": true 3664 | }, 3665 | "babel-plugin-macros": { 3666 | "optional": true 3667 | } 3668 | } 3669 | }, 3670 | "node_modules/sucrase": { 3671 | "version": "3.32.0", 3672 | "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.32.0.tgz", 3673 | "integrity": "sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==", 3674 | "dependencies": { 3675 | "@jridgewell/gen-mapping": "^0.3.2", 3676 | "commander": "^4.0.0", 3677 | "glob": "7.1.6", 3678 | "lines-and-columns": "^1.1.6", 3679 | "mz": "^2.7.0", 3680 | "pirates": "^4.0.1", 3681 | "ts-interface-checker": "^0.1.9" 3682 | }, 3683 | "bin": { 3684 | "sucrase": "bin/sucrase", 3685 | "sucrase-node": "bin/sucrase-node" 3686 | }, 3687 | "engines": { 3688 | "node": ">=8" 3689 | } 3690 | }, 3691 | "node_modules/sucrase/node_modules/glob": { 3692 | "version": "7.1.6", 3693 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", 3694 | "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", 3695 | "dependencies": { 3696 | "fs.realpath": "^1.0.0", 3697 | "inflight": "^1.0.4", 3698 | "inherits": "2", 3699 | "minimatch": "^3.0.4", 3700 | "once": "^1.3.0", 3701 | "path-is-absolute": "^1.0.0" 3702 | }, 3703 | "engines": { 3704 | "node": "*" 3705 | }, 3706 | "funding": { 3707 | "url": "https://github.com/sponsors/isaacs" 3708 | } 3709 | }, 3710 | "node_modules/supports-color": { 3711 | "version": "7.2.0", 3712 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3713 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3714 | "dependencies": { 3715 | "has-flag": "^4.0.0" 3716 | }, 3717 | "engines": { 3718 | "node": ">=8" 3719 | } 3720 | }, 3721 | "node_modules/supports-preserve-symlinks-flag": { 3722 | "version": "1.0.0", 3723 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 3724 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 3725 | "engines": { 3726 | "node": ">= 0.4" 3727 | }, 3728 | "funding": { 3729 | "url": "https://github.com/sponsors/ljharb" 3730 | } 3731 | }, 3732 | "node_modules/synckit": { 3733 | "version": "0.8.5", 3734 | "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", 3735 | "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", 3736 | "dependencies": { 3737 | "@pkgr/utils": "^2.3.1", 3738 | "tslib": "^2.5.0" 3739 | }, 3740 | "engines": { 3741 | "node": "^14.18.0 || >=16.0.0" 3742 | }, 3743 | "funding": { 3744 | "url": "https://opencollective.com/unts" 3745 | } 3746 | }, 3747 | "node_modules/tailwind-merge": { 3748 | "version": "1.14.0", 3749 | "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-1.14.0.tgz", 3750 | "integrity": "sha512-3mFKyCo/MBcgyOTlrY8T7odzZFx+w+qKSMAmdFzRvqBfLlSigU6TZnlFHK0lkMwj9Bj8OYU+9yW9lmGuS0QEnQ==", 3751 | "funding": { 3752 | "type": "github", 3753 | "url": "https://github.com/sponsors/dcastil" 3754 | } 3755 | }, 3756 | "node_modules/tailwindcss": { 3757 | "version": "3.3.3", 3758 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.3.tgz", 3759 | "integrity": "sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==", 3760 | "dependencies": { 3761 | "@alloc/quick-lru": "^5.2.0", 3762 | "arg": "^5.0.2", 3763 | "chokidar": "^3.5.3", 3764 | "didyoumean": "^1.2.2", 3765 | "dlv": "^1.1.3", 3766 | "fast-glob": "^3.2.12", 3767 | "glob-parent": "^6.0.2", 3768 | "is-glob": "^4.0.3", 3769 | "jiti": "^1.18.2", 3770 | "lilconfig": "^2.1.0", 3771 | "micromatch": "^4.0.5", 3772 | "normalize-path": "^3.0.0", 3773 | "object-hash": "^3.0.0", 3774 | "picocolors": "^1.0.0", 3775 | "postcss": "^8.4.23", 3776 | "postcss-import": "^15.1.0", 3777 | "postcss-js": "^4.0.1", 3778 | "postcss-load-config": "^4.0.1", 3779 | "postcss-nested": "^6.0.1", 3780 | "postcss-selector-parser": "^6.0.11", 3781 | "resolve": "^1.22.2", 3782 | "sucrase": "^3.32.0" 3783 | }, 3784 | "bin": { 3785 | "tailwind": "lib/cli.js", 3786 | "tailwindcss": "lib/cli.js" 3787 | }, 3788 | "engines": { 3789 | "node": ">=14.0.0" 3790 | } 3791 | }, 3792 | "node_modules/tapable": { 3793 | "version": "2.2.1", 3794 | "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", 3795 | "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", 3796 | "engines": { 3797 | "node": ">=6" 3798 | } 3799 | }, 3800 | "node_modules/text-table": { 3801 | "version": "0.2.0", 3802 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 3803 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" 3804 | }, 3805 | "node_modules/thenify": { 3806 | "version": "3.3.1", 3807 | "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", 3808 | "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", 3809 | "dependencies": { 3810 | "any-promise": "^1.0.0" 3811 | } 3812 | }, 3813 | "node_modules/thenify-all": { 3814 | "version": "1.6.0", 3815 | "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", 3816 | "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", 3817 | "dependencies": { 3818 | "thenify": ">= 3.1.0 < 4" 3819 | }, 3820 | "engines": { 3821 | "node": ">=0.8" 3822 | } 3823 | }, 3824 | "node_modules/tiny-glob": { 3825 | "version": "0.2.9", 3826 | "resolved": "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz", 3827 | "integrity": "sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==", 3828 | "dependencies": { 3829 | "globalyzer": "0.1.0", 3830 | "globrex": "^0.1.2" 3831 | } 3832 | }, 3833 | "node_modules/to-regex-range": { 3834 | "version": "5.0.1", 3835 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3836 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3837 | "dependencies": { 3838 | "is-number": "^7.0.0" 3839 | }, 3840 | "engines": { 3841 | "node": ">=8.0" 3842 | } 3843 | }, 3844 | "node_modules/ts-interface-checker": { 3845 | "version": "0.1.13", 3846 | "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", 3847 | "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" 3848 | }, 3849 | "node_modules/tsconfig-paths": { 3850 | "version": "3.14.2", 3851 | "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", 3852 | "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", 3853 | "dependencies": { 3854 | "@types/json5": "^0.0.29", 3855 | "json5": "^1.0.2", 3856 | "minimist": "^1.2.6", 3857 | "strip-bom": "^3.0.0" 3858 | } 3859 | }, 3860 | "node_modules/tslib": { 3861 | "version": "2.5.0", 3862 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", 3863 | "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" 3864 | }, 3865 | "node_modules/tsutils": { 3866 | "version": "3.21.0", 3867 | "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", 3868 | "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", 3869 | "dependencies": { 3870 | "tslib": "^1.8.1" 3871 | }, 3872 | "engines": { 3873 | "node": ">= 6" 3874 | }, 3875 | "peerDependencies": { 3876 | "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" 3877 | } 3878 | }, 3879 | "node_modules/tsutils/node_modules/tslib": { 3880 | "version": "1.14.1", 3881 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", 3882 | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" 3883 | }, 3884 | "node_modules/type-check": { 3885 | "version": "0.4.0", 3886 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 3887 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 3888 | "dependencies": { 3889 | "prelude-ls": "^1.2.1" 3890 | }, 3891 | "engines": { 3892 | "node": ">= 0.8.0" 3893 | } 3894 | }, 3895 | "node_modules/type-fest": { 3896 | "version": "0.20.2", 3897 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 3898 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 3899 | "engines": { 3900 | "node": ">=10" 3901 | }, 3902 | "funding": { 3903 | "url": "https://github.com/sponsors/sindresorhus" 3904 | } 3905 | }, 3906 | "node_modules/typed-array-length": { 3907 | "version": "1.0.4", 3908 | "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", 3909 | "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", 3910 | "dependencies": { 3911 | "call-bind": "^1.0.2", 3912 | "for-each": "^0.3.3", 3913 | "is-typed-array": "^1.1.9" 3914 | }, 3915 | "funding": { 3916 | "url": "https://github.com/sponsors/ljharb" 3917 | } 3918 | }, 3919 | "node_modules/typescript": { 3920 | "version": "5.1.6", 3921 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz", 3922 | "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==", 3923 | "bin": { 3924 | "tsc": "bin/tsc", 3925 | "tsserver": "bin/tsserver" 3926 | }, 3927 | "engines": { 3928 | "node": ">=14.17" 3929 | } 3930 | }, 3931 | "node_modules/unbox-primitive": { 3932 | "version": "1.0.2", 3933 | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", 3934 | "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", 3935 | "dependencies": { 3936 | "call-bind": "^1.0.2", 3937 | "has-bigints": "^1.0.2", 3938 | "has-symbols": "^1.0.3", 3939 | "which-boxed-primitive": "^1.0.2" 3940 | }, 3941 | "funding": { 3942 | "url": "https://github.com/sponsors/ljharb" 3943 | } 3944 | }, 3945 | "node_modules/update-browserslist-db": { 3946 | "version": "1.0.11", 3947 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", 3948 | "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", 3949 | "funding": [ 3950 | { 3951 | "type": "opencollective", 3952 | "url": "https://opencollective.com/browserslist" 3953 | }, 3954 | { 3955 | "type": "tidelift", 3956 | "url": "https://tidelift.com/funding/github/npm/browserslist" 3957 | }, 3958 | { 3959 | "type": "github", 3960 | "url": "https://github.com/sponsors/ai" 3961 | } 3962 | ], 3963 | "dependencies": { 3964 | "escalade": "^3.1.1", 3965 | "picocolors": "^1.0.0" 3966 | }, 3967 | "bin": { 3968 | "update-browserslist-db": "cli.js" 3969 | }, 3970 | "peerDependencies": { 3971 | "browserslist": ">= 4.21.0" 3972 | } 3973 | }, 3974 | "node_modules/uri-js": { 3975 | "version": "4.4.1", 3976 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 3977 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 3978 | "dependencies": { 3979 | "punycode": "^2.1.0" 3980 | } 3981 | }, 3982 | "node_modules/util-deprecate": { 3983 | "version": "1.0.2", 3984 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 3985 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" 3986 | }, 3987 | "node_modules/uuid": { 3988 | "version": "8.3.2", 3989 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", 3990 | "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", 3991 | "bin": { 3992 | "uuid": "dist/bin/uuid" 3993 | } 3994 | }, 3995 | "node_modules/watchpack": { 3996 | "version": "2.4.0", 3997 | "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", 3998 | "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", 3999 | "dependencies": { 4000 | "glob-to-regexp": "^0.4.1", 4001 | "graceful-fs": "^4.1.2" 4002 | }, 4003 | "engines": { 4004 | "node": ">=10.13.0" 4005 | } 4006 | }, 4007 | "node_modules/which": { 4008 | "version": "2.0.2", 4009 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 4010 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 4011 | "dependencies": { 4012 | "isexe": "^2.0.0" 4013 | }, 4014 | "bin": { 4015 | "node-which": "bin/node-which" 4016 | }, 4017 | "engines": { 4018 | "node": ">= 8" 4019 | } 4020 | }, 4021 | "node_modules/which-boxed-primitive": { 4022 | "version": "1.0.2", 4023 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", 4024 | "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", 4025 | "dependencies": { 4026 | "is-bigint": "^1.0.1", 4027 | "is-boolean-object": "^1.1.0", 4028 | "is-number-object": "^1.0.4", 4029 | "is-string": "^1.0.5", 4030 | "is-symbol": "^1.0.3" 4031 | }, 4032 | "funding": { 4033 | "url": "https://github.com/sponsors/ljharb" 4034 | } 4035 | }, 4036 | "node_modules/which-collection": { 4037 | "version": "1.0.1", 4038 | "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", 4039 | "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", 4040 | "dependencies": { 4041 | "is-map": "^2.0.1", 4042 | "is-set": "^2.0.1", 4043 | "is-weakmap": "^2.0.1", 4044 | "is-weakset": "^2.0.1" 4045 | }, 4046 | "funding": { 4047 | "url": "https://github.com/sponsors/ljharb" 4048 | } 4049 | }, 4050 | "node_modules/which-typed-array": { 4051 | "version": "1.1.9", 4052 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", 4053 | "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", 4054 | "dependencies": { 4055 | "available-typed-arrays": "^1.0.5", 4056 | "call-bind": "^1.0.2", 4057 | "for-each": "^0.3.3", 4058 | "gopd": "^1.0.1", 4059 | "has-tostringtag": "^1.0.0", 4060 | "is-typed-array": "^1.1.10" 4061 | }, 4062 | "engines": { 4063 | "node": ">= 0.4" 4064 | }, 4065 | "funding": { 4066 | "url": "https://github.com/sponsors/ljharb" 4067 | } 4068 | }, 4069 | "node_modules/wrappy": { 4070 | "version": "1.0.2", 4071 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 4072 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" 4073 | }, 4074 | "node_modules/yallist": { 4075 | "version": "4.0.0", 4076 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 4077 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" 4078 | }, 4079 | "node_modules/yaml": { 4080 | "version": "2.3.1", 4081 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", 4082 | "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", 4083 | "engines": { 4084 | "node": ">= 14" 4085 | } 4086 | }, 4087 | "node_modules/yocto-queue": { 4088 | "version": "0.1.0", 4089 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 4090 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 4091 | "engines": { 4092 | "node": ">=10" 4093 | }, 4094 | "funding": { 4095 | "url": "https://github.com/sponsors/sindresorhus" 4096 | } 4097 | }, 4098 | "node_modules/zod": { 4099 | "version": "3.21.4", 4100 | "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", 4101 | "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==", 4102 | "funding": { 4103 | "url": "https://github.com/sponsors/colinhacks" 4104 | } 4105 | } 4106 | } 4107 | } 4108 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "auth-nextjs", 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 | "@headlessui/react": "^1.7.17", 13 | "@types/node": "20.5.1", 14 | "@types/react": "18.2.20", 15 | "@types/react-dom": "18.2.7", 16 | "autoprefixer": "10.4.15", 17 | "eslint": "8.47.0", 18 | "eslint-config-next": "13.4.19", 19 | "next": "13.4.19", 20 | "next-auth": "^4.23.1", 21 | "postcss": "8.4.28", 22 | "react": "18.2.0", 23 | "react-dom": "18.2.0", 24 | "tailwind-merge": "^1.14.0", 25 | "tailwindcss": "3.3.3", 26 | "typescript": "5.1.6" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- 1 | import { Backend_URL } from "@/lib/Constants"; 2 | import { NextAuthOptions } from "next-auth"; 3 | import { JWT } from "next-auth/jwt"; 4 | import NextAuth from "next-auth/next"; 5 | import CredentialsProvider from "next-auth/providers/credentials"; 6 | 7 | async function refreshToken(token: JWT): Promise { 8 | const res = await fetch(Backend_URL + "/auth/refresh", { 9 | method: "POST", 10 | headers: { 11 | authorization: `Refresh ${token.backendTokens.refreshToken}`, 12 | }, 13 | }); 14 | console.log("refreshed"); 15 | 16 | const response = await res.json(); 17 | 18 | return { 19 | ...token, 20 | backendTokens: response, 21 | }; 22 | } 23 | 24 | export const authOptions: NextAuthOptions = { 25 | providers: [ 26 | CredentialsProvider({ 27 | name: "Credentials", 28 | credentials: { 29 | username: { 30 | label: "Username", 31 | type: "text", 32 | placeholder: "jsmith", 33 | }, 34 | password: { label: "Password", type: "password" }, 35 | }, 36 | async authorize(credentials, req) { 37 | if (!credentials?.username || !credentials?.password) return null; 38 | const { username, password } = credentials; 39 | const res = await fetch(Backend_URL + "/auth/login", { 40 | method: "POST", 41 | body: JSON.stringify({ 42 | username, 43 | password, 44 | }), 45 | headers: { 46 | "Content-Type": "application/json", 47 | }, 48 | }); 49 | if (res.status == 401) { 50 | console.log(res.statusText); 51 | 52 | return null; 53 | } 54 | const user = await res.json(); 55 | return user; 56 | }, 57 | }), 58 | ], 59 | 60 | callbacks: { 61 | async jwt({ token, user }) { 62 | if (user) return { ...token, ...user }; 63 | 64 | if (new Date().getTime() < token.backendTokens.expiresIn) 65 | return token; 66 | 67 | return await refreshToken(token); 68 | }, 69 | 70 | async session({ token, session }) { 71 | session.user = token.user; 72 | session.backendTokens = token.backendTokens; 73 | 74 | return session; 75 | }, 76 | }, 77 | }; 78 | 79 | const handler = NextAuth(authOptions); 80 | 81 | export { handler as GET, handler as POST }; 82 | -------------------------------------------------------------------------------- /src/app/dashboard/layout.tsx: -------------------------------------------------------------------------------- 1 | import { getServerSession } from "next-auth"; 2 | import Link from "next/link"; 3 | import { authOptions } from "../api/auth/[...nextauth]/route"; 4 | 5 | type Props = { 6 | children: React.ReactNode; 7 | }; 8 | 9 | const DashBoardLayout = async (props: Props) => { 10 | const session = await getServerSession(authOptions); 11 | return ( 12 |
13 |
14 | 18 | User Profile 19 | 20 |
21 |
{props.children}
22 |
23 | ); 24 | }; 25 | 26 | export default DashBoardLayout; 27 | -------------------------------------------------------------------------------- /src/app/dashboard/page.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | const DashboardPage = () => { 3 | return
DashboardPage
; 4 | }; 5 | 6 | export default DashboardPage; 7 | -------------------------------------------------------------------------------- /src/app/dashboard/user/[id]/page.tsx: -------------------------------------------------------------------------------- 1 | import { authOptions } from "@/app/api/auth/[...nextauth]/route"; 2 | import { Backend_URL } from "@/lib/Constants"; 3 | import { getServerSession } from "next-auth"; 4 | 5 | type Props = { 6 | params: { 7 | id: string; 8 | }; 9 | }; 10 | 11 | const ProfilePage = async (props: Props) => { 12 | const session = await getServerSession(authOptions); 13 | const response = await fetch(Backend_URL + `/user/${props.params.id}`, { 14 | method: "GET", 15 | headers: { 16 | authorization: `Bearer ${session?.backendTokens.accessToken}`, 17 | "Content-Type": "application/json", 18 | }, 19 | }); 20 | // console.log({ response }); 21 | const user = await response.json(); 22 | 23 | return ( 24 |
25 |
26 | User Profile 27 |
28 | 29 |
30 |

Name:

31 |

{user.name}

32 |

Email:

33 |

{user.email}

34 |
35 |
36 | ); 37 | }; 38 | 39 | export default ProfilePage; 40 | -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zied-snoussi/fullStak-auth-nextjs/2364b750c86a184768d0b07de5ee0b48a02befd6/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- 1 | import AppBar from "@/components/AppBar"; 2 | import "./globals.css"; 3 | import Providers from "@/components/Providers"; 4 | 5 | export const metadata = { 6 | title: "Next-Auth Tutorial", 7 | description: "Generated by Sakura Dev", 8 | }; 9 | 10 | interface Props { 11 | children: React.ReactNode; 12 | } 13 | 14 | export default function RootLayout(props: Props) { 15 | return ( 16 | 17 | 18 | 19 | 20 | {props.children} 21 | 22 | 23 | 24 | ); 25 | } 26 | -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- 1 | export default function Home() { 2 | // if (session) session.user.accessToken = "dddd"; 3 | 4 | return ( 5 |
6 |

Hi, You Are Watching Sakura Dev Channel.

7 |
8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /src/app/signup/page.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | import { Button } from "@/components/Button"; 3 | import InputBox from "@/components/InputBox"; 4 | import { Backend_URL } from "@/lib/Constants"; 5 | import Link from "next/link"; 6 | import React, { useRef } from "react"; 7 | 8 | type FormInputs = { 9 | name: string; 10 | email: string; 11 | password: string; 12 | }; 13 | 14 | const SignupPage = () => { 15 | const register = async () => { 16 | const res = await fetch(Backend_URL + "/auth/register", { 17 | method: "POST", 18 | body: JSON.stringify({ 19 | name: data.current.name, 20 | email: data.current.email, 21 | password: data.current.password, 22 | }), 23 | headers: { 24 | "Content-Type": "application/json", 25 | }, 26 | }); 27 | if (!res.ok) { 28 | alert(res.statusText); 29 | return; 30 | } 31 | const response = await res.json(); 32 | alert("User Registered!"); 33 | console.log({ response }); 34 | }; 35 | const data = useRef({ 36 | name: "", 37 | email: "", 38 | password: "", 39 | }); 40 | return ( 41 |
42 |
43 | Sign up 44 |
45 |
46 | (data.current.name = e.target.value)} 52 | /> 53 | (data.current.email = e.target.value)} 58 | /> 59 | (data.current.password = e.target.value)} 65 | /> 66 |
67 | 68 | 69 | Cancel 70 | 71 |
72 |
73 |
74 | ); 75 | }; 76 | 77 | export default SignupPage; 78 | -------------------------------------------------------------------------------- /src/components/AppBar.tsx: -------------------------------------------------------------------------------- 1 | import Link from "next/link"; 2 | import React from "react"; 3 | import SignInButton from "./SignInButton"; 4 | 5 | const AppBar = () => { 6 | return ( 7 |
8 | 9 | Home Page 10 | 11 | 15 | DashBoard 16 | 17 | 18 | 19 |
20 | ); 21 | }; 22 | 23 | export default AppBar; 24 | -------------------------------------------------------------------------------- /src/components/Button.tsx: -------------------------------------------------------------------------------- 1 | const getVariant = (variant?: VariantType) => { 2 | switch (variant) { 3 | case "primary": 4 | return "bg-violet-500 hover:bg-violet-700 text-white shadow shadow-violet-600/25 hover:shadow-violet-600/75"; 5 | case "danger": 6 | return "bg-red-500 hover:bg-red-700 text-white shadow shadow-red-600/25 hover:shadow-red-600/75"; 7 | case "success": 8 | return "bg-green-500 hover:bg-green-700 text-white shadow shadow-green-600/25 hover:shadow-green-600/75 "; 9 | case "warning": 10 | return "bg-amber-500 hover:bg-amber-700 text-white shadow shadow-yellow-600/25 hover:shadow-yellow-600/75 "; 11 | case "outline-danger": 12 | return "bg-white text-red-500 border border-red-500 hover:text-white hover:bg-red-700 "; 13 | case "outline-danger": 14 | return "bg-white text-red-500 border border-red-500 hover:text-white hover:bg-red-700 "; 15 | case "outline-success": 16 | return "bg-white text-green-500 border border-green-500 hover:text-white hover:bg-green-700 "; 17 | case "outline-warning": 18 | return "bg-white text-amber-400 border border-amber-500 hover:text-white hover:bg-amber-500 "; 19 | case "outline-primary": 20 | return "bg-white text-violet-500 border border-violet-500 hover:text-white hover:bg-violet-700 "; 21 | 22 | default: 23 | return "bg-violet-500 hover:bg-violet-700 text-white shadow shadow-violet-600/25 hover:shadow-violet-600/75"; 24 | } 25 | }; 26 | 27 | type VariantType = 28 | | "primary" 29 | | "danger" 30 | | "success" 31 | | "warning" 32 | | "outline-danger" 33 | | "outline-warning" 34 | | "outline-success" 35 | | "outline-primary"; 36 | 37 | export interface IButtonProps 38 | extends React.ButtonHTMLAttributes { 39 | className?: string; 40 | children?: React.ReactNode; 41 | variant?: VariantType; 42 | square?: boolean; 43 | paddingLess?: boolean; 44 | } 45 | export const Button = ({ 46 | className, 47 | children, 48 | variant, 49 | square, 50 | paddingLess, 51 | type = "button", 52 | ...props 53 | }: IButtonProps) => { 54 | return ( 55 | 66 | ); 67 | }; 68 | -------------------------------------------------------------------------------- /src/components/InputBox.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | 3 | interface Props extends React.InputHTMLAttributes { 4 | labelText?: string; 5 | error?: string; 6 | } 7 | 8 | const InputBox = ({ labelText, error, ...props }: Props) => { 9 | return ( 10 |
11 | 16 | 23 |
24 | ); 25 | }; 26 | 27 | export default InputBox; 28 | -------------------------------------------------------------------------------- /src/components/Providers.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | 3 | import { ReactNode } from "react"; 4 | import { SessionProvider } from "next-auth/react"; 5 | interface Props { 6 | children: ReactNode; 7 | } 8 | 9 | const Providers = ({ children }: Props) => { 10 | return {children}; 11 | }; 12 | 13 | export default Providers; 14 | -------------------------------------------------------------------------------- /src/components/SignInButton.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | import { useSession } from "next-auth/react"; 3 | import Link from "next/link"; 4 | import React from "react"; 5 | 6 | const SignInButton = () => { 7 | const { data: session } = useSession(); 8 | console.log({ session }); 9 | 10 | if (session && session.user) 11 | return ( 12 |
13 |

{session.user.name}

14 | 18 | Sign Out 19 | 20 |
21 | ); 22 | 23 | return ( 24 |
25 | 29 | Sign In 30 | 31 | 35 | Sign Up 36 | 37 |
38 | ); 39 | }; 40 | 41 | export default SignInButton; 42 | -------------------------------------------------------------------------------- /src/lib/Constants.ts: -------------------------------------------------------------------------------- 1 | export const Backend_URL = "http://localhost:8000"; 2 | -------------------------------------------------------------------------------- /src/lib/next-auth.d.ts: -------------------------------------------------------------------------------- 1 | import NextAuth from "next-auth"; 2 | 3 | declare module "next-auth" { 4 | interface Session { 5 | user: { 6 | id: number; 7 | email: string; 8 | name: string; 9 | }; 10 | 11 | backendTokens: { 12 | accessToken: string; 13 | refreshToken: string; 14 | expiresIn: number; 15 | }; 16 | } 17 | } 18 | 19 | import { JWT } from "next-auth/jwt"; 20 | 21 | declare module "next-auth/jwt" { 22 | interface JWT { 23 | user: { 24 | id: number; 25 | email: string; 26 | name: string; 27 | }; 28 | 29 | backendTokens: { 30 | accessToken: string; 31 | refreshToken: string; 32 | expiresIn: number; 33 | }; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /src/lib/types.d.ts: -------------------------------------------------------------------------------- 1 | export type User = { 2 | id: string; 3 | name: string; 4 | email: string; 5 | }; 6 | -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- 1 | export { default } from "next-auth/middleware"; 2 | 3 | export const config = { matcher: ["/dashboard/:path*"] }; 4 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: [ 4 | "./src/pages/**/*.{js,ts,jsx,tsx}", 5 | "./src/components/**/*.{js,ts,jsx,tsx}", 6 | "./src/app/**/*.{js,ts,jsx,tsx}", 7 | ], 8 | theme: {}, 9 | plugins: [], 10 | }; 11 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES6", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowJs": true, 6 | "skipLibCheck": true, 7 | "strict": true, 8 | "forceConsistentCasingInFileNames": true, 9 | "noEmit": true, 10 | "esModuleInterop": true, 11 | "module": "esnext", 12 | "moduleResolution": "node", 13 | "resolveJsonModule": true, 14 | "isolatedModules": true, 15 | "jsx": "preserve", 16 | "incremental": true, 17 | "plugins": [ 18 | { 19 | "name": "next" 20 | } 21 | ], 22 | "paths": { 23 | "@/*": ["./src/*"] 24 | } 25 | }, 26 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 27 | "exclude": ["node_modules"] 28 | } 29 | --------------------------------------------------------------------------------