├── .eslintrc.json ├── .gitignore ├── README.md ├── explainer-diagram.png ├── next.config.js ├── nextjs.png ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── next.svg └── vercel.svg ├── sample.env ├── src ├── app │ ├── api │ │ └── users │ │ │ ├── login │ │ │ └── route.ts │ │ │ ├── logout │ │ │ └── route.ts │ │ │ ├── me │ │ │ └── route.ts │ │ │ ├── signup │ │ │ └── route.ts │ │ │ └── verifyemail │ │ │ └── route.ts │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── login │ │ └── page.tsx │ ├── page.tsx │ ├── profile │ │ ├── [id] │ │ │ └── page.tsx │ │ └── page.tsx │ ├── signup │ │ └── page.tsx │ └── verifyemail │ │ └── page.tsx ├── dbConfig │ └── dbConfig.ts ├── helpers │ ├── getDataFromToken.ts │ └── mailer.ts ├── middleware.ts └── models │ └── userModel.js ├── tailwind.config.js └── tsconfig.json /.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 | .env 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # A detailed course to undestand nextjs 2 | 3 | This long video was designed to give you an indepth understanding about latest nextjs and how it works. 4 | 5 | ## Tech Stack 6 | - Nextjs 7 | - typescript 8 | - mongodb 9 | - mailtrap 10 | 11 | ![Course Image](./nextjs.png) 12 | 13 | --- 14 | Available on my youtube channel 15 | [Youtube channel link](https://www.youtube.com/@HiteshChoudharydotcom) 16 | 17 | ## Getting Started 18 | 19 | First, run the development server: 20 | 21 | ```bash 22 | npm run dev 23 | # or 24 | yarn dev 25 | # or 26 | pnpm dev 27 | ``` 28 | ## Assignment 29 | 1. Improve the UI of the application 30 | 2. Add feature of forgot password 31 | 32 | --- 33 | ### Hint: 34 | For forgot password feature. 35 | 1. User needs a page to enter his email and submit. 36 | 2. Validate if user exists, if yes, send him same token email that we discussed in this course 37 | 3. User clicks on email and get a page to enter new password with a submit button. 38 | 4. As soon as he click submit button, he is sending you a token and new password. 39 | 5. Verify the token and save the new password after encrypting it. 40 | 41 | --- 42 | ## your completed assignments 43 | 44 | - Add your repo link here 45 | - -------------------------------------------------------------------------------- /explainer-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/nextjs-fullstack-auth/9f2cd9fea4569f91344038f52ece1f286567f3a5/explainer-diagram.png -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = {} 3 | 4 | module.exports = nextConfig 5 | -------------------------------------------------------------------------------- /nextjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/nextjs-fullstack-auth/9f2cd9fea4569f91344038f52ece1f286567f3a5/nextjs.png -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "auth-nextjs-youtube", 3 | "version": "0.1.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "auth-nextjs-youtube", 9 | "version": "0.1.0", 10 | "dependencies": { 11 | "@types/node": "20.3.2", 12 | "@types/react": "18.2.14", 13 | "@types/react-dom": "18.2.6", 14 | "autoprefixer": "10.4.14", 15 | "axios": "^1.4.0", 16 | "bcryptjs": "^2.4.3", 17 | "eslint": "8.43.0", 18 | "eslint-config-next": "13.4.7", 19 | "jsonwebtoken": "^9.0.0", 20 | "mongoose": "^7.3.1", 21 | "next": "13.4.7", 22 | "nodemailer": "^6.9.3", 23 | "postcss": "8.4.24", 24 | "react": "18.2.0", 25 | "react-dom": "18.2.0", 26 | "react-hot-toast": "^2.4.1", 27 | "tailwindcss": "3.3.2", 28 | "typescript": "5.1.6" 29 | }, 30 | "devDependencies": { 31 | "@types/bcryptjs": "^2.4.2", 32 | "@types/jsonwebtoken": "^9.0.2", 33 | "@types/nodemailer": "^6.4.8" 34 | } 35 | }, 36 | "node_modules/@aashutoshrathi/word-wrap": { 37 | "version": "1.2.6", 38 | "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", 39 | "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", 40 | "engines": { 41 | "node": ">=0.10.0" 42 | } 43 | }, 44 | "node_modules/@alloc/quick-lru": { 45 | "version": "5.2.0", 46 | "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", 47 | "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", 48 | "engines": { 49 | "node": ">=10" 50 | }, 51 | "funding": { 52 | "url": "https://github.com/sponsors/sindresorhus" 53 | } 54 | }, 55 | "node_modules/@babel/runtime": { 56 | "version": "7.22.5", 57 | "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.5.tgz", 58 | "integrity": "sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA==", 59 | "dependencies": { 60 | "regenerator-runtime": "^0.13.11" 61 | }, 62 | "engines": { 63 | "node": ">=6.9.0" 64 | } 65 | }, 66 | "node_modules/@eslint-community/eslint-utils": { 67 | "version": "4.4.0", 68 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 69 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 70 | "dependencies": { 71 | "eslint-visitor-keys": "^3.3.0" 72 | }, 73 | "engines": { 74 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 75 | }, 76 | "peerDependencies": { 77 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 78 | } 79 | }, 80 | "node_modules/@eslint-community/regexpp": { 81 | "version": "4.5.1", 82 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", 83 | "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", 84 | "engines": { 85 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 86 | } 87 | }, 88 | "node_modules/@eslint/eslintrc": { 89 | "version": "2.0.3", 90 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.3.tgz", 91 | "integrity": "sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==", 92 | "dependencies": { 93 | "ajv": "^6.12.4", 94 | "debug": "^4.3.2", 95 | "espree": "^9.5.2", 96 | "globals": "^13.19.0", 97 | "ignore": "^5.2.0", 98 | "import-fresh": "^3.2.1", 99 | "js-yaml": "^4.1.0", 100 | "minimatch": "^3.1.2", 101 | "strip-json-comments": "^3.1.1" 102 | }, 103 | "engines": { 104 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 105 | }, 106 | "funding": { 107 | "url": "https://opencollective.com/eslint" 108 | } 109 | }, 110 | "node_modules/@eslint/js": { 111 | "version": "8.43.0", 112 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.43.0.tgz", 113 | "integrity": "sha512-s2UHCoiXfxMvmfzqoN+vrQ84ahUSYde9qNO1MdxmoEhyHWsfmwOpFlwYV+ePJEVc7gFnATGUi376WowX1N7tFg==", 114 | "engines": { 115 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 116 | } 117 | }, 118 | "node_modules/@humanwhocodes/config-array": { 119 | "version": "0.11.10", 120 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz", 121 | "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==", 122 | "dependencies": { 123 | "@humanwhocodes/object-schema": "^1.2.1", 124 | "debug": "^4.1.1", 125 | "minimatch": "^3.0.5" 126 | }, 127 | "engines": { 128 | "node": ">=10.10.0" 129 | } 130 | }, 131 | "node_modules/@humanwhocodes/module-importer": { 132 | "version": "1.0.1", 133 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 134 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 135 | "engines": { 136 | "node": ">=12.22" 137 | }, 138 | "funding": { 139 | "type": "github", 140 | "url": "https://github.com/sponsors/nzakas" 141 | } 142 | }, 143 | "node_modules/@humanwhocodes/object-schema": { 144 | "version": "1.2.1", 145 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", 146 | "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" 147 | }, 148 | "node_modules/@jridgewell/gen-mapping": { 149 | "version": "0.3.3", 150 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", 151 | "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", 152 | "dependencies": { 153 | "@jridgewell/set-array": "^1.0.1", 154 | "@jridgewell/sourcemap-codec": "^1.4.10", 155 | "@jridgewell/trace-mapping": "^0.3.9" 156 | }, 157 | "engines": { 158 | "node": ">=6.0.0" 159 | } 160 | }, 161 | "node_modules/@jridgewell/resolve-uri": { 162 | "version": "3.1.0", 163 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", 164 | "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", 165 | "engines": { 166 | "node": ">=6.0.0" 167 | } 168 | }, 169 | "node_modules/@jridgewell/set-array": { 170 | "version": "1.1.2", 171 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", 172 | "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", 173 | "engines": { 174 | "node": ">=6.0.0" 175 | } 176 | }, 177 | "node_modules/@jridgewell/sourcemap-codec": { 178 | "version": "1.4.15", 179 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", 180 | "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" 181 | }, 182 | "node_modules/@jridgewell/trace-mapping": { 183 | "version": "0.3.18", 184 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", 185 | "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", 186 | "dependencies": { 187 | "@jridgewell/resolve-uri": "3.1.0", 188 | "@jridgewell/sourcemap-codec": "1.4.14" 189 | } 190 | }, 191 | "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { 192 | "version": "1.4.14", 193 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", 194 | "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" 195 | }, 196 | "node_modules/@next/env": { 197 | "version": "13.4.7", 198 | "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.7.tgz", 199 | "integrity": "sha512-ZlbiFulnwiFsW9UV1ku1OvX/oyIPLtMk9p/nnvDSwI0s7vSoZdRtxXNsaO+ZXrLv/pMbXVGq4lL8TbY9iuGmVw==" 200 | }, 201 | "node_modules/@next/eslint-plugin-next": { 202 | "version": "13.4.7", 203 | "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.7.tgz", 204 | "integrity": "sha512-ANEPltxzXbyyG7CvqxdY4PmeM5+RyWdAJGufTHnU+LA/i3J6IDV2r8Z4onKwskwKEhwqzz5lMaSYGGXLyHX+mg==", 205 | "dependencies": { 206 | "glob": "7.1.7" 207 | } 208 | }, 209 | "node_modules/@next/swc-darwin-arm64": { 210 | "version": "13.4.7", 211 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.7.tgz", 212 | "integrity": "sha512-VZTxPv1b59KGiv/pZHTO5Gbsdeoxcj2rU2cqJu03btMhHpn3vwzEK0gUSVC/XW96aeGO67X+cMahhwHzef24/w==", 213 | "cpu": [ 214 | "arm64" 215 | ], 216 | "optional": true, 217 | "os": [ 218 | "darwin" 219 | ], 220 | "engines": { 221 | "node": ">= 10" 222 | } 223 | }, 224 | "node_modules/@next/swc-darwin-x64": { 225 | "version": "13.4.7", 226 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.7.tgz", 227 | "integrity": "sha512-gO2bw+2Ymmga+QYujjvDz9955xvYGrWofmxTq7m70b9pDPvl7aDFABJOZ2a8SRCuSNB5mXU8eTOmVVwyp/nAew==", 228 | "cpu": [ 229 | "x64" 230 | ], 231 | "optional": true, 232 | "os": [ 233 | "darwin" 234 | ], 235 | "engines": { 236 | "node": ">= 10" 237 | } 238 | }, 239 | "node_modules/@next/swc-linux-arm64-gnu": { 240 | "version": "13.4.7", 241 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.7.tgz", 242 | "integrity": "sha512-6cqp3vf1eHxjIDhEOc7Mh/s8z1cwc/l5B6ZNkOofmZVyu1zsbEM5Hmx64s12Rd9AYgGoiCz4OJ4M/oRnkE16/Q==", 243 | "cpu": [ 244 | "arm64" 245 | ], 246 | "optional": true, 247 | "os": [ 248 | "linux" 249 | ], 250 | "engines": { 251 | "node": ">= 10" 252 | } 253 | }, 254 | "node_modules/@next/swc-linux-arm64-musl": { 255 | "version": "13.4.7", 256 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.7.tgz", 257 | "integrity": "sha512-T1kD2FWOEy5WPidOn1si0rYmWORNch4a/NR52Ghyp4q7KyxOCuiOfZzyhVC5tsLIBDH3+cNdB5DkD9afpNDaOw==", 258 | "cpu": [ 259 | "arm64" 260 | ], 261 | "optional": true, 262 | "os": [ 263 | "linux" 264 | ], 265 | "engines": { 266 | "node": ">= 10" 267 | } 268 | }, 269 | "node_modules/@next/swc-linux-x64-gnu": { 270 | "version": "13.4.7", 271 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.7.tgz", 272 | "integrity": "sha512-zaEC+iEiAHNdhl6fuwl0H0shnTzQoAoJiDYBUze8QTntE/GNPfTYpYboxF5LRYIjBwETUatvE0T64W6SKDipvg==", 273 | "cpu": [ 274 | "x64" 275 | ], 276 | "optional": true, 277 | "os": [ 278 | "linux" 279 | ], 280 | "engines": { 281 | "node": ">= 10" 282 | } 283 | }, 284 | "node_modules/@next/swc-linux-x64-musl": { 285 | "version": "13.4.7", 286 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.7.tgz", 287 | "integrity": "sha512-X6r12F8d8SKAtYJqLZBBMIwEqcTRvUdVm+xIq+l6pJqlgT2tNsLLf2i5Cl88xSsIytBICGsCNNHd+siD2fbWBA==", 288 | "cpu": [ 289 | "x64" 290 | ], 291 | "optional": true, 292 | "os": [ 293 | "linux" 294 | ], 295 | "engines": { 296 | "node": ">= 10" 297 | } 298 | }, 299 | "node_modules/@next/swc-win32-arm64-msvc": { 300 | "version": "13.4.7", 301 | "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.7.tgz", 302 | "integrity": "sha512-NPnmnV+vEIxnu6SUvjnuaWRglZzw4ox5n/MQTxeUhb5iwVWFedolPFebMNwgrWu4AELwvTdGtWjqof53AiWHcw==", 303 | "cpu": [ 304 | "arm64" 305 | ], 306 | "optional": true, 307 | "os": [ 308 | "win32" 309 | ], 310 | "engines": { 311 | "node": ">= 10" 312 | } 313 | }, 314 | "node_modules/@next/swc-win32-ia32-msvc": { 315 | "version": "13.4.7", 316 | "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.7.tgz", 317 | "integrity": "sha512-6Hxijm6/a8XqLQpOOf/XuwWRhcuc/g4rBB2oxjgCMuV9Xlr2bLs5+lXyh8w9YbAUMYR3iC9mgOlXbHa79elmXw==", 318 | "cpu": [ 319 | "ia32" 320 | ], 321 | "optional": true, 322 | "os": [ 323 | "win32" 324 | ], 325 | "engines": { 326 | "node": ">= 10" 327 | } 328 | }, 329 | "node_modules/@next/swc-win32-x64-msvc": { 330 | "version": "13.4.7", 331 | "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.7.tgz", 332 | "integrity": "sha512-sW9Yt36Db1nXJL+mTr2Wo0y+VkPWeYhygvcHj1FF0srVtV+VoDjxleKtny21QHaG05zdeZnw2fCtf2+dEqgwqA==", 333 | "cpu": [ 334 | "x64" 335 | ], 336 | "optional": true, 337 | "os": [ 338 | "win32" 339 | ], 340 | "engines": { 341 | "node": ">= 10" 342 | } 343 | }, 344 | "node_modules/@nodelib/fs.scandir": { 345 | "version": "2.1.5", 346 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 347 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 348 | "dependencies": { 349 | "@nodelib/fs.stat": "2.0.5", 350 | "run-parallel": "^1.1.9" 351 | }, 352 | "engines": { 353 | "node": ">= 8" 354 | } 355 | }, 356 | "node_modules/@nodelib/fs.stat": { 357 | "version": "2.0.5", 358 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 359 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 360 | "engines": { 361 | "node": ">= 8" 362 | } 363 | }, 364 | "node_modules/@nodelib/fs.walk": { 365 | "version": "1.2.8", 366 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 367 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 368 | "dependencies": { 369 | "@nodelib/fs.scandir": "2.1.5", 370 | "fastq": "^1.6.0" 371 | }, 372 | "engines": { 373 | "node": ">= 8" 374 | } 375 | }, 376 | "node_modules/@pkgr/utils": { 377 | "version": "2.4.1", 378 | "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.1.tgz", 379 | "integrity": "sha512-JOqwkgFEyi+OROIyq7l4Jy28h/WwhDnG/cPkXG2Z1iFbubB6jsHW1NDvmyOzTBxHr3yg68YGirmh1JUgMqa+9w==", 380 | "dependencies": { 381 | "cross-spawn": "^7.0.3", 382 | "fast-glob": "^3.2.12", 383 | "is-glob": "^4.0.3", 384 | "open": "^9.1.0", 385 | "picocolors": "^1.0.0", 386 | "tslib": "^2.5.0" 387 | }, 388 | "engines": { 389 | "node": "^12.20.0 || ^14.18.0 || >=16.0.0" 390 | }, 391 | "funding": { 392 | "url": "https://opencollective.com/unts" 393 | } 394 | }, 395 | "node_modules/@rushstack/eslint-patch": { 396 | "version": "1.3.2", 397 | "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.2.tgz", 398 | "integrity": "sha512-V+MvGwaHH03hYhY+k6Ef/xKd6RYlc4q8WBx+2ANmipHJcKuktNcI/NgEsJgdSUF6Lw32njT6OnrRsKYCdgHjYw==" 399 | }, 400 | "node_modules/@swc/helpers": { 401 | "version": "0.5.1", 402 | "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", 403 | "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", 404 | "dependencies": { 405 | "tslib": "^2.4.0" 406 | } 407 | }, 408 | "node_modules/@types/bcryptjs": { 409 | "version": "2.4.2", 410 | "resolved": "https://registry.npmjs.org/@types/bcryptjs/-/bcryptjs-2.4.2.tgz", 411 | "integrity": "sha512-LiMQ6EOPob/4yUL66SZzu6Yh77cbzJFYll+ZfaPiPPFswtIlA/Fs1MzdKYA7JApHU49zQTbJGX3PDmCpIdDBRQ==", 412 | "dev": true 413 | }, 414 | "node_modules/@types/json5": { 415 | "version": "0.0.29", 416 | "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", 417 | "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" 418 | }, 419 | "node_modules/@types/jsonwebtoken": { 420 | "version": "9.0.2", 421 | "resolved": "https://registry.npmjs.org/@types/jsonwebtoken/-/jsonwebtoken-9.0.2.tgz", 422 | "integrity": "sha512-drE6uz7QBKq1fYqqoFKTDRdFCPHd5TCub75BM+D+cMx7NU9hUz7SESLfC2fSCXVFMO5Yj8sOWHuGqPgjc+fz0Q==", 423 | "dev": true, 424 | "dependencies": { 425 | "@types/node": "*" 426 | } 427 | }, 428 | "node_modules/@types/node": { 429 | "version": "20.3.2", 430 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.2.tgz", 431 | "integrity": "sha512-vOBLVQeCQfIcF/2Y7eKFTqrMnizK5lRNQ7ykML/5RuwVXVWxYkgwS7xbt4B6fKCUPgbSL5FSsjHQpaGQP/dQmw==" 432 | }, 433 | "node_modules/@types/nodemailer": { 434 | "version": "6.4.8", 435 | "resolved": "https://registry.npmjs.org/@types/nodemailer/-/nodemailer-6.4.8.tgz", 436 | "integrity": "sha512-oVsJSCkqViCn8/pEu2hfjwVO+Gb3e+eTWjg3PcjeFKRItfKpKwHphQqbYmPQrlMk+op7pNNWPbsJIEthpFN/OQ==", 437 | "dev": true, 438 | "dependencies": { 439 | "@types/node": "*" 440 | } 441 | }, 442 | "node_modules/@types/prop-types": { 443 | "version": "15.7.5", 444 | "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", 445 | "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" 446 | }, 447 | "node_modules/@types/react": { 448 | "version": "18.2.14", 449 | "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.14.tgz", 450 | "integrity": "sha512-A0zjq+QN/O0Kpe30hA1GidzyFjatVvrpIvWLxD+xv67Vt91TWWgco9IvrJBkeyHm1trGaFS/FSGqPlhyeZRm0g==", 451 | "dependencies": { 452 | "@types/prop-types": "*", 453 | "@types/scheduler": "*", 454 | "csstype": "^3.0.2" 455 | } 456 | }, 457 | "node_modules/@types/react-dom": { 458 | "version": "18.2.6", 459 | "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.6.tgz", 460 | "integrity": "sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A==", 461 | "dependencies": { 462 | "@types/react": "*" 463 | } 464 | }, 465 | "node_modules/@types/scheduler": { 466 | "version": "0.16.3", 467 | "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", 468 | "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" 469 | }, 470 | "node_modules/@types/webidl-conversions": { 471 | "version": "7.0.0", 472 | "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.0.tgz", 473 | "integrity": "sha512-xTE1E+YF4aWPJJeUzaZI5DRntlkY3+BCVJi0axFptnjGmAoWxkyREIh/XMrfxVLejwQxMCfDXdICo0VLxThrog==" 474 | }, 475 | "node_modules/@types/whatwg-url": { 476 | "version": "8.2.2", 477 | "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-8.2.2.tgz", 478 | "integrity": "sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==", 479 | "dependencies": { 480 | "@types/node": "*", 481 | "@types/webidl-conversions": "*" 482 | } 483 | }, 484 | "node_modules/@typescript-eslint/parser": { 485 | "version": "5.60.1", 486 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.60.1.tgz", 487 | "integrity": "sha512-pHWlc3alg2oSMGwsU/Is8hbm3XFbcrb6P5wIxcQW9NsYBfnrubl/GhVVD/Jm/t8HXhA2WncoIRfBtnCgRGV96Q==", 488 | "dependencies": { 489 | "@typescript-eslint/scope-manager": "5.60.1", 490 | "@typescript-eslint/types": "5.60.1", 491 | "@typescript-eslint/typescript-estree": "5.60.1", 492 | "debug": "^4.3.4" 493 | }, 494 | "engines": { 495 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 496 | }, 497 | "funding": { 498 | "type": "opencollective", 499 | "url": "https://opencollective.com/typescript-eslint" 500 | }, 501 | "peerDependencies": { 502 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 503 | }, 504 | "peerDependenciesMeta": { 505 | "typescript": { 506 | "optional": true 507 | } 508 | } 509 | }, 510 | "node_modules/@typescript-eslint/scope-manager": { 511 | "version": "5.60.1", 512 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.60.1.tgz", 513 | "integrity": "sha512-Dn/LnN7fEoRD+KspEOV0xDMynEmR3iSHdgNsarlXNLGGtcUok8L4N71dxUgt3YvlO8si7E+BJ5Fe3wb5yUw7DQ==", 514 | "dependencies": { 515 | "@typescript-eslint/types": "5.60.1", 516 | "@typescript-eslint/visitor-keys": "5.60.1" 517 | }, 518 | "engines": { 519 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 520 | }, 521 | "funding": { 522 | "type": "opencollective", 523 | "url": "https://opencollective.com/typescript-eslint" 524 | } 525 | }, 526 | "node_modules/@typescript-eslint/types": { 527 | "version": "5.60.1", 528 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.60.1.tgz", 529 | "integrity": "sha512-zDcDx5fccU8BA0IDZc71bAtYIcG9PowaOwaD8rjYbqwK7dpe/UMQl3inJ4UtUK42nOCT41jTSCwg76E62JpMcg==", 530 | "engines": { 531 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 532 | }, 533 | "funding": { 534 | "type": "opencollective", 535 | "url": "https://opencollective.com/typescript-eslint" 536 | } 537 | }, 538 | "node_modules/@typescript-eslint/typescript-estree": { 539 | "version": "5.60.1", 540 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.60.1.tgz", 541 | "integrity": "sha512-hkX70J9+2M2ZT6fhti5Q2FoU9zb+GeZK2SLP1WZlvUDqdMbEKhexZODD1WodNRyO8eS+4nScvT0dts8IdaBzfw==", 542 | "dependencies": { 543 | "@typescript-eslint/types": "5.60.1", 544 | "@typescript-eslint/visitor-keys": "5.60.1", 545 | "debug": "^4.3.4", 546 | "globby": "^11.1.0", 547 | "is-glob": "^4.0.3", 548 | "semver": "^7.3.7", 549 | "tsutils": "^3.21.0" 550 | }, 551 | "engines": { 552 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 553 | }, 554 | "funding": { 555 | "type": "opencollective", 556 | "url": "https://opencollective.com/typescript-eslint" 557 | }, 558 | "peerDependenciesMeta": { 559 | "typescript": { 560 | "optional": true 561 | } 562 | } 563 | }, 564 | "node_modules/@typescript-eslint/visitor-keys": { 565 | "version": "5.60.1", 566 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.60.1.tgz", 567 | "integrity": "sha512-xEYIxKcultP6E/RMKqube11pGjXH1DCo60mQoWhVYyKfLkwbIVVjYxmOenNMxILx0TjCujPTjjnTIVzm09TXIw==", 568 | "dependencies": { 569 | "@typescript-eslint/types": "5.60.1", 570 | "eslint-visitor-keys": "^3.3.0" 571 | }, 572 | "engines": { 573 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 574 | }, 575 | "funding": { 576 | "type": "opencollective", 577 | "url": "https://opencollective.com/typescript-eslint" 578 | } 579 | }, 580 | "node_modules/acorn": { 581 | "version": "8.9.0", 582 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", 583 | "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", 584 | "bin": { 585 | "acorn": "bin/acorn" 586 | }, 587 | "engines": { 588 | "node": ">=0.4.0" 589 | } 590 | }, 591 | "node_modules/acorn-jsx": { 592 | "version": "5.3.2", 593 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 594 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 595 | "peerDependencies": { 596 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 597 | } 598 | }, 599 | "node_modules/ajv": { 600 | "version": "6.12.6", 601 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 602 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 603 | "dependencies": { 604 | "fast-deep-equal": "^3.1.1", 605 | "fast-json-stable-stringify": "^2.0.0", 606 | "json-schema-traverse": "^0.4.1", 607 | "uri-js": "^4.2.2" 608 | }, 609 | "funding": { 610 | "type": "github", 611 | "url": "https://github.com/sponsors/epoberezkin" 612 | } 613 | }, 614 | "node_modules/ansi-regex": { 615 | "version": "5.0.1", 616 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 617 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 618 | "engines": { 619 | "node": ">=8" 620 | } 621 | }, 622 | "node_modules/ansi-styles": { 623 | "version": "4.3.0", 624 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 625 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 626 | "dependencies": { 627 | "color-convert": "^2.0.1" 628 | }, 629 | "engines": { 630 | "node": ">=8" 631 | }, 632 | "funding": { 633 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 634 | } 635 | }, 636 | "node_modules/any-promise": { 637 | "version": "1.3.0", 638 | "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", 639 | "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" 640 | }, 641 | "node_modules/anymatch": { 642 | "version": "3.1.3", 643 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 644 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 645 | "dependencies": { 646 | "normalize-path": "^3.0.0", 647 | "picomatch": "^2.0.4" 648 | }, 649 | "engines": { 650 | "node": ">= 8" 651 | } 652 | }, 653 | "node_modules/arg": { 654 | "version": "5.0.2", 655 | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", 656 | "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" 657 | }, 658 | "node_modules/argparse": { 659 | "version": "2.0.1", 660 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 661 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" 662 | }, 663 | "node_modules/aria-query": { 664 | "version": "5.3.0", 665 | "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", 666 | "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", 667 | "dependencies": { 668 | "dequal": "^2.0.3" 669 | } 670 | }, 671 | "node_modules/array-buffer-byte-length": { 672 | "version": "1.0.0", 673 | "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", 674 | "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", 675 | "dependencies": { 676 | "call-bind": "^1.0.2", 677 | "is-array-buffer": "^3.0.1" 678 | }, 679 | "funding": { 680 | "url": "https://github.com/sponsors/ljharb" 681 | } 682 | }, 683 | "node_modules/array-includes": { 684 | "version": "3.1.6", 685 | "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", 686 | "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", 687 | "dependencies": { 688 | "call-bind": "^1.0.2", 689 | "define-properties": "^1.1.4", 690 | "es-abstract": "^1.20.4", 691 | "get-intrinsic": "^1.1.3", 692 | "is-string": "^1.0.7" 693 | }, 694 | "engines": { 695 | "node": ">= 0.4" 696 | }, 697 | "funding": { 698 | "url": "https://github.com/sponsors/ljharb" 699 | } 700 | }, 701 | "node_modules/array-union": { 702 | "version": "2.1.0", 703 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 704 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 705 | "engines": { 706 | "node": ">=8" 707 | } 708 | }, 709 | "node_modules/array.prototype.flat": { 710 | "version": "1.3.1", 711 | "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", 712 | "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", 713 | "dependencies": { 714 | "call-bind": "^1.0.2", 715 | "define-properties": "^1.1.4", 716 | "es-abstract": "^1.20.4", 717 | "es-shim-unscopables": "^1.0.0" 718 | }, 719 | "engines": { 720 | "node": ">= 0.4" 721 | }, 722 | "funding": { 723 | "url": "https://github.com/sponsors/ljharb" 724 | } 725 | }, 726 | "node_modules/array.prototype.flatmap": { 727 | "version": "1.3.1", 728 | "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", 729 | "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", 730 | "dependencies": { 731 | "call-bind": "^1.0.2", 732 | "define-properties": "^1.1.4", 733 | "es-abstract": "^1.20.4", 734 | "es-shim-unscopables": "^1.0.0" 735 | }, 736 | "engines": { 737 | "node": ">= 0.4" 738 | }, 739 | "funding": { 740 | "url": "https://github.com/sponsors/ljharb" 741 | } 742 | }, 743 | "node_modules/array.prototype.tosorted": { 744 | "version": "1.1.1", 745 | "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", 746 | "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", 747 | "dependencies": { 748 | "call-bind": "^1.0.2", 749 | "define-properties": "^1.1.4", 750 | "es-abstract": "^1.20.4", 751 | "es-shim-unscopables": "^1.0.0", 752 | "get-intrinsic": "^1.1.3" 753 | } 754 | }, 755 | "node_modules/ast-types-flow": { 756 | "version": "0.0.7", 757 | "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", 758 | "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" 759 | }, 760 | "node_modules/asynckit": { 761 | "version": "0.4.0", 762 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 763 | "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" 764 | }, 765 | "node_modules/autoprefixer": { 766 | "version": "10.4.14", 767 | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", 768 | "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", 769 | "funding": [ 770 | { 771 | "type": "opencollective", 772 | "url": "https://opencollective.com/postcss/" 773 | }, 774 | { 775 | "type": "tidelift", 776 | "url": "https://tidelift.com/funding/github/npm/autoprefixer" 777 | } 778 | ], 779 | "dependencies": { 780 | "browserslist": "^4.21.5", 781 | "caniuse-lite": "^1.0.30001464", 782 | "fraction.js": "^4.2.0", 783 | "normalize-range": "^0.1.2", 784 | "picocolors": "^1.0.0", 785 | "postcss-value-parser": "^4.2.0" 786 | }, 787 | "bin": { 788 | "autoprefixer": "bin/autoprefixer" 789 | }, 790 | "engines": { 791 | "node": "^10 || ^12 || >=14" 792 | }, 793 | "peerDependencies": { 794 | "postcss": "^8.1.0" 795 | } 796 | }, 797 | "node_modules/available-typed-arrays": { 798 | "version": "1.0.5", 799 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", 800 | "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", 801 | "engines": { 802 | "node": ">= 0.4" 803 | }, 804 | "funding": { 805 | "url": "https://github.com/sponsors/ljharb" 806 | } 807 | }, 808 | "node_modules/axe-core": { 809 | "version": "4.7.2", 810 | "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.2.tgz", 811 | "integrity": "sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==", 812 | "engines": { 813 | "node": ">=4" 814 | } 815 | }, 816 | "node_modules/axios": { 817 | "version": "1.4.0", 818 | "resolved": "https://registry.npmjs.org/axios/-/axios-1.4.0.tgz", 819 | "integrity": "sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==", 820 | "dependencies": { 821 | "follow-redirects": "^1.15.0", 822 | "form-data": "^4.0.0", 823 | "proxy-from-env": "^1.1.0" 824 | } 825 | }, 826 | "node_modules/axobject-query": { 827 | "version": "3.2.1", 828 | "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", 829 | "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", 830 | "dependencies": { 831 | "dequal": "^2.0.3" 832 | } 833 | }, 834 | "node_modules/balanced-match": { 835 | "version": "1.0.2", 836 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 837 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 838 | }, 839 | "node_modules/bcryptjs": { 840 | "version": "2.4.3", 841 | "resolved": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz", 842 | "integrity": "sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==" 843 | }, 844 | "node_modules/big-integer": { 845 | "version": "1.6.51", 846 | "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", 847 | "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", 848 | "engines": { 849 | "node": ">=0.6" 850 | } 851 | }, 852 | "node_modules/binary-extensions": { 853 | "version": "2.2.0", 854 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", 855 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", 856 | "engines": { 857 | "node": ">=8" 858 | } 859 | }, 860 | "node_modules/bplist-parser": { 861 | "version": "0.2.0", 862 | "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", 863 | "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", 864 | "dependencies": { 865 | "big-integer": "^1.6.44" 866 | }, 867 | "engines": { 868 | "node": ">= 5.10.0" 869 | } 870 | }, 871 | "node_modules/brace-expansion": { 872 | "version": "1.1.11", 873 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 874 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 875 | "dependencies": { 876 | "balanced-match": "^1.0.0", 877 | "concat-map": "0.0.1" 878 | } 879 | }, 880 | "node_modules/braces": { 881 | "version": "3.0.2", 882 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 883 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 884 | "dependencies": { 885 | "fill-range": "^7.0.1" 886 | }, 887 | "engines": { 888 | "node": ">=8" 889 | } 890 | }, 891 | "node_modules/browserslist": { 892 | "version": "4.21.9", 893 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz", 894 | "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==", 895 | "funding": [ 896 | { 897 | "type": "opencollective", 898 | "url": "https://opencollective.com/browserslist" 899 | }, 900 | { 901 | "type": "tidelift", 902 | "url": "https://tidelift.com/funding/github/npm/browserslist" 903 | }, 904 | { 905 | "type": "github", 906 | "url": "https://github.com/sponsors/ai" 907 | } 908 | ], 909 | "dependencies": { 910 | "caniuse-lite": "^1.0.30001503", 911 | "electron-to-chromium": "^1.4.431", 912 | "node-releases": "^2.0.12", 913 | "update-browserslist-db": "^1.0.11" 914 | }, 915 | "bin": { 916 | "browserslist": "cli.js" 917 | }, 918 | "engines": { 919 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 920 | } 921 | }, 922 | "node_modules/bson": { 923 | "version": "5.3.0", 924 | "resolved": "https://registry.npmjs.org/bson/-/bson-5.3.0.tgz", 925 | "integrity": "sha512-ukmCZMneMlaC5ebPHXIkP8YJzNl5DC41N5MAIvKDqLggdao342t4McltoJBQfQya/nHBWAcSsYRqlXPoQkTJag==", 926 | "engines": { 927 | "node": ">=14.20.1" 928 | } 929 | }, 930 | "node_modules/buffer-equal-constant-time": { 931 | "version": "1.0.1", 932 | "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", 933 | "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==" 934 | }, 935 | "node_modules/bundle-name": { 936 | "version": "3.0.0", 937 | "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz", 938 | "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", 939 | "dependencies": { 940 | "run-applescript": "^5.0.0" 941 | }, 942 | "engines": { 943 | "node": ">=12" 944 | }, 945 | "funding": { 946 | "url": "https://github.com/sponsors/sindresorhus" 947 | } 948 | }, 949 | "node_modules/busboy": { 950 | "version": "1.6.0", 951 | "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", 952 | "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", 953 | "dependencies": { 954 | "streamsearch": "^1.1.0" 955 | }, 956 | "engines": { 957 | "node": ">=10.16.0" 958 | } 959 | }, 960 | "node_modules/call-bind": { 961 | "version": "1.0.2", 962 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", 963 | "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", 964 | "dependencies": { 965 | "function-bind": "^1.1.1", 966 | "get-intrinsic": "^1.0.2" 967 | }, 968 | "funding": { 969 | "url": "https://github.com/sponsors/ljharb" 970 | } 971 | }, 972 | "node_modules/callsites": { 973 | "version": "3.1.0", 974 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 975 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 976 | "engines": { 977 | "node": ">=6" 978 | } 979 | }, 980 | "node_modules/camelcase-css": { 981 | "version": "2.0.1", 982 | "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", 983 | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", 984 | "engines": { 985 | "node": ">= 6" 986 | } 987 | }, 988 | "node_modules/caniuse-lite": { 989 | "version": "1.0.30001509", 990 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001509.tgz", 991 | "integrity": "sha512-2uDDk+TRiTX5hMcUYT/7CSyzMZxjfGu0vAUjS2g0LSD8UoXOv0LtpH4LxGMemsiPq6LCVIUjNwVM0erkOkGCDA==", 992 | "funding": [ 993 | { 994 | "type": "opencollective", 995 | "url": "https://opencollective.com/browserslist" 996 | }, 997 | { 998 | "type": "tidelift", 999 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 1000 | }, 1001 | { 1002 | "type": "github", 1003 | "url": "https://github.com/sponsors/ai" 1004 | } 1005 | ] 1006 | }, 1007 | "node_modules/chalk": { 1008 | "version": "4.1.2", 1009 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1010 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1011 | "dependencies": { 1012 | "ansi-styles": "^4.1.0", 1013 | "supports-color": "^7.1.0" 1014 | }, 1015 | "engines": { 1016 | "node": ">=10" 1017 | }, 1018 | "funding": { 1019 | "url": "https://github.com/chalk/chalk?sponsor=1" 1020 | } 1021 | }, 1022 | "node_modules/chokidar": { 1023 | "version": "3.5.3", 1024 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", 1025 | "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", 1026 | "funding": [ 1027 | { 1028 | "type": "individual", 1029 | "url": "https://paulmillr.com/funding/" 1030 | } 1031 | ], 1032 | "dependencies": { 1033 | "anymatch": "~3.1.2", 1034 | "braces": "~3.0.2", 1035 | "glob-parent": "~5.1.2", 1036 | "is-binary-path": "~2.1.0", 1037 | "is-glob": "~4.0.1", 1038 | "normalize-path": "~3.0.0", 1039 | "readdirp": "~3.6.0" 1040 | }, 1041 | "engines": { 1042 | "node": ">= 8.10.0" 1043 | }, 1044 | "optionalDependencies": { 1045 | "fsevents": "~2.3.2" 1046 | } 1047 | }, 1048 | "node_modules/chokidar/node_modules/glob-parent": { 1049 | "version": "5.1.2", 1050 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1051 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1052 | "dependencies": { 1053 | "is-glob": "^4.0.1" 1054 | }, 1055 | "engines": { 1056 | "node": ">= 6" 1057 | } 1058 | }, 1059 | "node_modules/client-only": { 1060 | "version": "0.0.1", 1061 | "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", 1062 | "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" 1063 | }, 1064 | "node_modules/color-convert": { 1065 | "version": "2.0.1", 1066 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1067 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1068 | "dependencies": { 1069 | "color-name": "~1.1.4" 1070 | }, 1071 | "engines": { 1072 | "node": ">=7.0.0" 1073 | } 1074 | }, 1075 | "node_modules/color-name": { 1076 | "version": "1.1.4", 1077 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1078 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 1079 | }, 1080 | "node_modules/combined-stream": { 1081 | "version": "1.0.8", 1082 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 1083 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 1084 | "dependencies": { 1085 | "delayed-stream": "~1.0.0" 1086 | }, 1087 | "engines": { 1088 | "node": ">= 0.8" 1089 | } 1090 | }, 1091 | "node_modules/commander": { 1092 | "version": "4.1.1", 1093 | "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", 1094 | "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", 1095 | "engines": { 1096 | "node": ">= 6" 1097 | } 1098 | }, 1099 | "node_modules/concat-map": { 1100 | "version": "0.0.1", 1101 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1102 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" 1103 | }, 1104 | "node_modules/cross-spawn": { 1105 | "version": "7.0.3", 1106 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 1107 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 1108 | "dependencies": { 1109 | "path-key": "^3.1.0", 1110 | "shebang-command": "^2.0.0", 1111 | "which": "^2.0.1" 1112 | }, 1113 | "engines": { 1114 | "node": ">= 8" 1115 | } 1116 | }, 1117 | "node_modules/cssesc": { 1118 | "version": "3.0.0", 1119 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 1120 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 1121 | "bin": { 1122 | "cssesc": "bin/cssesc" 1123 | }, 1124 | "engines": { 1125 | "node": ">=4" 1126 | } 1127 | }, 1128 | "node_modules/csstype": { 1129 | "version": "3.1.2", 1130 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", 1131 | "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" 1132 | }, 1133 | "node_modules/damerau-levenshtein": { 1134 | "version": "1.0.8", 1135 | "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", 1136 | "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" 1137 | }, 1138 | "node_modules/debug": { 1139 | "version": "4.3.4", 1140 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 1141 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 1142 | "dependencies": { 1143 | "ms": "2.1.2" 1144 | }, 1145 | "engines": { 1146 | "node": ">=6.0" 1147 | }, 1148 | "peerDependenciesMeta": { 1149 | "supports-color": { 1150 | "optional": true 1151 | } 1152 | } 1153 | }, 1154 | "node_modules/deep-is": { 1155 | "version": "0.1.4", 1156 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1157 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" 1158 | }, 1159 | "node_modules/default-browser": { 1160 | "version": "4.0.0", 1161 | "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz", 1162 | "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", 1163 | "dependencies": { 1164 | "bundle-name": "^3.0.0", 1165 | "default-browser-id": "^3.0.0", 1166 | "execa": "^7.1.1", 1167 | "titleize": "^3.0.0" 1168 | }, 1169 | "engines": { 1170 | "node": ">=14.16" 1171 | }, 1172 | "funding": { 1173 | "url": "https://github.com/sponsors/sindresorhus" 1174 | } 1175 | }, 1176 | "node_modules/default-browser-id": { 1177 | "version": "3.0.0", 1178 | "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", 1179 | "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", 1180 | "dependencies": { 1181 | "bplist-parser": "^0.2.0", 1182 | "untildify": "^4.0.0" 1183 | }, 1184 | "engines": { 1185 | "node": ">=12" 1186 | }, 1187 | "funding": { 1188 | "url": "https://github.com/sponsors/sindresorhus" 1189 | } 1190 | }, 1191 | "node_modules/define-lazy-prop": { 1192 | "version": "3.0.0", 1193 | "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", 1194 | "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", 1195 | "engines": { 1196 | "node": ">=12" 1197 | }, 1198 | "funding": { 1199 | "url": "https://github.com/sponsors/sindresorhus" 1200 | } 1201 | }, 1202 | "node_modules/define-properties": { 1203 | "version": "1.2.0", 1204 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", 1205 | "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", 1206 | "dependencies": { 1207 | "has-property-descriptors": "^1.0.0", 1208 | "object-keys": "^1.1.1" 1209 | }, 1210 | "engines": { 1211 | "node": ">= 0.4" 1212 | }, 1213 | "funding": { 1214 | "url": "https://github.com/sponsors/ljharb" 1215 | } 1216 | }, 1217 | "node_modules/delayed-stream": { 1218 | "version": "1.0.0", 1219 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 1220 | "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", 1221 | "engines": { 1222 | "node": ">=0.4.0" 1223 | } 1224 | }, 1225 | "node_modules/dequal": { 1226 | "version": "2.0.3", 1227 | "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", 1228 | "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", 1229 | "engines": { 1230 | "node": ">=6" 1231 | } 1232 | }, 1233 | "node_modules/didyoumean": { 1234 | "version": "1.2.2", 1235 | "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", 1236 | "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" 1237 | }, 1238 | "node_modules/dir-glob": { 1239 | "version": "3.0.1", 1240 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 1241 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 1242 | "dependencies": { 1243 | "path-type": "^4.0.0" 1244 | }, 1245 | "engines": { 1246 | "node": ">=8" 1247 | } 1248 | }, 1249 | "node_modules/dlv": { 1250 | "version": "1.1.3", 1251 | "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", 1252 | "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" 1253 | }, 1254 | "node_modules/doctrine": { 1255 | "version": "3.0.0", 1256 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 1257 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 1258 | "dependencies": { 1259 | "esutils": "^2.0.2" 1260 | }, 1261 | "engines": { 1262 | "node": ">=6.0.0" 1263 | } 1264 | }, 1265 | "node_modules/ecdsa-sig-formatter": { 1266 | "version": "1.0.11", 1267 | "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", 1268 | "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", 1269 | "dependencies": { 1270 | "safe-buffer": "^5.0.1" 1271 | } 1272 | }, 1273 | "node_modules/electron-to-chromium": { 1274 | "version": "1.4.445", 1275 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.445.tgz", 1276 | "integrity": "sha512-++DB+9VK8SBJwC+X1zlMfJ1tMA3F0ipi39GdEp+x3cV2TyBihqAgad8cNMWtLDEkbH39nlDQP7PfGrDr3Dr7HA==" 1277 | }, 1278 | "node_modules/emoji-regex": { 1279 | "version": "9.2.2", 1280 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 1281 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" 1282 | }, 1283 | "node_modules/enhanced-resolve": { 1284 | "version": "5.15.0", 1285 | "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", 1286 | "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", 1287 | "dependencies": { 1288 | "graceful-fs": "^4.2.4", 1289 | "tapable": "^2.2.0" 1290 | }, 1291 | "engines": { 1292 | "node": ">=10.13.0" 1293 | } 1294 | }, 1295 | "node_modules/es-abstract": { 1296 | "version": "1.21.2", 1297 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", 1298 | "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", 1299 | "dependencies": { 1300 | "array-buffer-byte-length": "^1.0.0", 1301 | "available-typed-arrays": "^1.0.5", 1302 | "call-bind": "^1.0.2", 1303 | "es-set-tostringtag": "^2.0.1", 1304 | "es-to-primitive": "^1.2.1", 1305 | "function.prototype.name": "^1.1.5", 1306 | "get-intrinsic": "^1.2.0", 1307 | "get-symbol-description": "^1.0.0", 1308 | "globalthis": "^1.0.3", 1309 | "gopd": "^1.0.1", 1310 | "has": "^1.0.3", 1311 | "has-property-descriptors": "^1.0.0", 1312 | "has-proto": "^1.0.1", 1313 | "has-symbols": "^1.0.3", 1314 | "internal-slot": "^1.0.5", 1315 | "is-array-buffer": "^3.0.2", 1316 | "is-callable": "^1.2.7", 1317 | "is-negative-zero": "^2.0.2", 1318 | "is-regex": "^1.1.4", 1319 | "is-shared-array-buffer": "^1.0.2", 1320 | "is-string": "^1.0.7", 1321 | "is-typed-array": "^1.1.10", 1322 | "is-weakref": "^1.0.2", 1323 | "object-inspect": "^1.12.3", 1324 | "object-keys": "^1.1.1", 1325 | "object.assign": "^4.1.4", 1326 | "regexp.prototype.flags": "^1.4.3", 1327 | "safe-regex-test": "^1.0.0", 1328 | "string.prototype.trim": "^1.2.7", 1329 | "string.prototype.trimend": "^1.0.6", 1330 | "string.prototype.trimstart": "^1.0.6", 1331 | "typed-array-length": "^1.0.4", 1332 | "unbox-primitive": "^1.0.2", 1333 | "which-typed-array": "^1.1.9" 1334 | }, 1335 | "engines": { 1336 | "node": ">= 0.4" 1337 | }, 1338 | "funding": { 1339 | "url": "https://github.com/sponsors/ljharb" 1340 | } 1341 | }, 1342 | "node_modules/es-set-tostringtag": { 1343 | "version": "2.0.1", 1344 | "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", 1345 | "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", 1346 | "dependencies": { 1347 | "get-intrinsic": "^1.1.3", 1348 | "has": "^1.0.3", 1349 | "has-tostringtag": "^1.0.0" 1350 | }, 1351 | "engines": { 1352 | "node": ">= 0.4" 1353 | } 1354 | }, 1355 | "node_modules/es-shim-unscopables": { 1356 | "version": "1.0.0", 1357 | "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", 1358 | "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", 1359 | "dependencies": { 1360 | "has": "^1.0.3" 1361 | } 1362 | }, 1363 | "node_modules/es-to-primitive": { 1364 | "version": "1.2.1", 1365 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", 1366 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", 1367 | "dependencies": { 1368 | "is-callable": "^1.1.4", 1369 | "is-date-object": "^1.0.1", 1370 | "is-symbol": "^1.0.2" 1371 | }, 1372 | "engines": { 1373 | "node": ">= 0.4" 1374 | }, 1375 | "funding": { 1376 | "url": "https://github.com/sponsors/ljharb" 1377 | } 1378 | }, 1379 | "node_modules/escalade": { 1380 | "version": "3.1.1", 1381 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", 1382 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", 1383 | "engines": { 1384 | "node": ">=6" 1385 | } 1386 | }, 1387 | "node_modules/escape-string-regexp": { 1388 | "version": "4.0.0", 1389 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1390 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1391 | "engines": { 1392 | "node": ">=10" 1393 | }, 1394 | "funding": { 1395 | "url": "https://github.com/sponsors/sindresorhus" 1396 | } 1397 | }, 1398 | "node_modules/eslint": { 1399 | "version": "8.43.0", 1400 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.43.0.tgz", 1401 | "integrity": "sha512-aaCpf2JqqKesMFGgmRPessmVKjcGXqdlAYLLC3THM8t5nBRZRQ+st5WM/hoJXkdioEXLLbXgclUpM0TXo5HX5Q==", 1402 | "dependencies": { 1403 | "@eslint-community/eslint-utils": "^4.2.0", 1404 | "@eslint-community/regexpp": "^4.4.0", 1405 | "@eslint/eslintrc": "^2.0.3", 1406 | "@eslint/js": "8.43.0", 1407 | "@humanwhocodes/config-array": "^0.11.10", 1408 | "@humanwhocodes/module-importer": "^1.0.1", 1409 | "@nodelib/fs.walk": "^1.2.8", 1410 | "ajv": "^6.10.0", 1411 | "chalk": "^4.0.0", 1412 | "cross-spawn": "^7.0.2", 1413 | "debug": "^4.3.2", 1414 | "doctrine": "^3.0.0", 1415 | "escape-string-regexp": "^4.0.0", 1416 | "eslint-scope": "^7.2.0", 1417 | "eslint-visitor-keys": "^3.4.1", 1418 | "espree": "^9.5.2", 1419 | "esquery": "^1.4.2", 1420 | "esutils": "^2.0.2", 1421 | "fast-deep-equal": "^3.1.3", 1422 | "file-entry-cache": "^6.0.1", 1423 | "find-up": "^5.0.0", 1424 | "glob-parent": "^6.0.2", 1425 | "globals": "^13.19.0", 1426 | "graphemer": "^1.4.0", 1427 | "ignore": "^5.2.0", 1428 | "import-fresh": "^3.0.0", 1429 | "imurmurhash": "^0.1.4", 1430 | "is-glob": "^4.0.0", 1431 | "is-path-inside": "^3.0.3", 1432 | "js-yaml": "^4.1.0", 1433 | "json-stable-stringify-without-jsonify": "^1.0.1", 1434 | "levn": "^0.4.1", 1435 | "lodash.merge": "^4.6.2", 1436 | "minimatch": "^3.1.2", 1437 | "natural-compare": "^1.4.0", 1438 | "optionator": "^0.9.1", 1439 | "strip-ansi": "^6.0.1", 1440 | "strip-json-comments": "^3.1.0", 1441 | "text-table": "^0.2.0" 1442 | }, 1443 | "bin": { 1444 | "eslint": "bin/eslint.js" 1445 | }, 1446 | "engines": { 1447 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1448 | }, 1449 | "funding": { 1450 | "url": "https://opencollective.com/eslint" 1451 | } 1452 | }, 1453 | "node_modules/eslint-config-next": { 1454 | "version": "13.4.7", 1455 | "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.4.7.tgz", 1456 | "integrity": "sha512-+IRAyD0+J1MZaTi9RQMPUfr6Q+GCZ1wOkK6XM52Vokh7VI4R6YFGOFzdkEFHl4ZyIX4FKa5vcwUP2WscSFNjNQ==", 1457 | "dependencies": { 1458 | "@next/eslint-plugin-next": "13.4.7", 1459 | "@rushstack/eslint-patch": "^1.1.3", 1460 | "@typescript-eslint/parser": "^5.42.0", 1461 | "eslint-import-resolver-node": "^0.3.6", 1462 | "eslint-import-resolver-typescript": "^3.5.2", 1463 | "eslint-plugin-import": "^2.26.0", 1464 | "eslint-plugin-jsx-a11y": "^6.5.1", 1465 | "eslint-plugin-react": "^7.31.7", 1466 | "eslint-plugin-react-hooks": "^4.5.0" 1467 | }, 1468 | "peerDependencies": { 1469 | "eslint": "^7.23.0 || ^8.0.0", 1470 | "typescript": ">=3.3.1" 1471 | }, 1472 | "peerDependenciesMeta": { 1473 | "typescript": { 1474 | "optional": true 1475 | } 1476 | } 1477 | }, 1478 | "node_modules/eslint-import-resolver-node": { 1479 | "version": "0.3.7", 1480 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", 1481 | "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", 1482 | "dependencies": { 1483 | "debug": "^3.2.7", 1484 | "is-core-module": "^2.11.0", 1485 | "resolve": "^1.22.1" 1486 | } 1487 | }, 1488 | "node_modules/eslint-import-resolver-node/node_modules/debug": { 1489 | "version": "3.2.7", 1490 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1491 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1492 | "dependencies": { 1493 | "ms": "^2.1.1" 1494 | } 1495 | }, 1496 | "node_modules/eslint-import-resolver-typescript": { 1497 | "version": "3.5.5", 1498 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.5.tgz", 1499 | "integrity": "sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==", 1500 | "dependencies": { 1501 | "debug": "^4.3.4", 1502 | "enhanced-resolve": "^5.12.0", 1503 | "eslint-module-utils": "^2.7.4", 1504 | "get-tsconfig": "^4.5.0", 1505 | "globby": "^13.1.3", 1506 | "is-core-module": "^2.11.0", 1507 | "is-glob": "^4.0.3", 1508 | "synckit": "^0.8.5" 1509 | }, 1510 | "engines": { 1511 | "node": "^14.18.0 || >=16.0.0" 1512 | }, 1513 | "funding": { 1514 | "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" 1515 | }, 1516 | "peerDependencies": { 1517 | "eslint": "*", 1518 | "eslint-plugin-import": "*" 1519 | } 1520 | }, 1521 | "node_modules/eslint-import-resolver-typescript/node_modules/globby": { 1522 | "version": "13.2.0", 1523 | "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.0.tgz", 1524 | "integrity": "sha512-jWsQfayf13NvqKUIL3Ta+CIqMnvlaIDFveWE/dpOZ9+3AMEJozsxDvKA02zync9UuvOM8rOXzsD5GqKP4OnWPQ==", 1525 | "dependencies": { 1526 | "dir-glob": "^3.0.1", 1527 | "fast-glob": "^3.2.11", 1528 | "ignore": "^5.2.0", 1529 | "merge2": "^1.4.1", 1530 | "slash": "^4.0.0" 1531 | }, 1532 | "engines": { 1533 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 1534 | }, 1535 | "funding": { 1536 | "url": "https://github.com/sponsors/sindresorhus" 1537 | } 1538 | }, 1539 | "node_modules/eslint-import-resolver-typescript/node_modules/slash": { 1540 | "version": "4.0.0", 1541 | "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", 1542 | "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", 1543 | "engines": { 1544 | "node": ">=12" 1545 | }, 1546 | "funding": { 1547 | "url": "https://github.com/sponsors/sindresorhus" 1548 | } 1549 | }, 1550 | "node_modules/eslint-module-utils": { 1551 | "version": "2.8.0", 1552 | "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", 1553 | "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", 1554 | "dependencies": { 1555 | "debug": "^3.2.7" 1556 | }, 1557 | "engines": { 1558 | "node": ">=4" 1559 | }, 1560 | "peerDependenciesMeta": { 1561 | "eslint": { 1562 | "optional": true 1563 | } 1564 | } 1565 | }, 1566 | "node_modules/eslint-module-utils/node_modules/debug": { 1567 | "version": "3.2.7", 1568 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1569 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1570 | "dependencies": { 1571 | "ms": "^2.1.1" 1572 | } 1573 | }, 1574 | "node_modules/eslint-plugin-import": { 1575 | "version": "2.27.5", 1576 | "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", 1577 | "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", 1578 | "dependencies": { 1579 | "array-includes": "^3.1.6", 1580 | "array.prototype.flat": "^1.3.1", 1581 | "array.prototype.flatmap": "^1.3.1", 1582 | "debug": "^3.2.7", 1583 | "doctrine": "^2.1.0", 1584 | "eslint-import-resolver-node": "^0.3.7", 1585 | "eslint-module-utils": "^2.7.4", 1586 | "has": "^1.0.3", 1587 | "is-core-module": "^2.11.0", 1588 | "is-glob": "^4.0.3", 1589 | "minimatch": "^3.1.2", 1590 | "object.values": "^1.1.6", 1591 | "resolve": "^1.22.1", 1592 | "semver": "^6.3.0", 1593 | "tsconfig-paths": "^3.14.1" 1594 | }, 1595 | "engines": { 1596 | "node": ">=4" 1597 | }, 1598 | "peerDependencies": { 1599 | "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" 1600 | } 1601 | }, 1602 | "node_modules/eslint-plugin-import/node_modules/debug": { 1603 | "version": "3.2.7", 1604 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1605 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1606 | "dependencies": { 1607 | "ms": "^2.1.1" 1608 | } 1609 | }, 1610 | "node_modules/eslint-plugin-import/node_modules/doctrine": { 1611 | "version": "2.1.0", 1612 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1613 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1614 | "dependencies": { 1615 | "esutils": "^2.0.2" 1616 | }, 1617 | "engines": { 1618 | "node": ">=0.10.0" 1619 | } 1620 | }, 1621 | "node_modules/eslint-plugin-import/node_modules/semver": { 1622 | "version": "6.3.0", 1623 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1624 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1625 | "bin": { 1626 | "semver": "bin/semver.js" 1627 | } 1628 | }, 1629 | "node_modules/eslint-plugin-jsx-a11y": { 1630 | "version": "6.7.1", 1631 | "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", 1632 | "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", 1633 | "dependencies": { 1634 | "@babel/runtime": "^7.20.7", 1635 | "aria-query": "^5.1.3", 1636 | "array-includes": "^3.1.6", 1637 | "array.prototype.flatmap": "^1.3.1", 1638 | "ast-types-flow": "^0.0.7", 1639 | "axe-core": "^4.6.2", 1640 | "axobject-query": "^3.1.1", 1641 | "damerau-levenshtein": "^1.0.8", 1642 | "emoji-regex": "^9.2.2", 1643 | "has": "^1.0.3", 1644 | "jsx-ast-utils": "^3.3.3", 1645 | "language-tags": "=1.0.5", 1646 | "minimatch": "^3.1.2", 1647 | "object.entries": "^1.1.6", 1648 | "object.fromentries": "^2.0.6", 1649 | "semver": "^6.3.0" 1650 | }, 1651 | "engines": { 1652 | "node": ">=4.0" 1653 | }, 1654 | "peerDependencies": { 1655 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" 1656 | } 1657 | }, 1658 | "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { 1659 | "version": "6.3.0", 1660 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1661 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1662 | "bin": { 1663 | "semver": "bin/semver.js" 1664 | } 1665 | }, 1666 | "node_modules/eslint-plugin-react": { 1667 | "version": "7.32.2", 1668 | "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", 1669 | "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", 1670 | "dependencies": { 1671 | "array-includes": "^3.1.6", 1672 | "array.prototype.flatmap": "^1.3.1", 1673 | "array.prototype.tosorted": "^1.1.1", 1674 | "doctrine": "^2.1.0", 1675 | "estraverse": "^5.3.0", 1676 | "jsx-ast-utils": "^2.4.1 || ^3.0.0", 1677 | "minimatch": "^3.1.2", 1678 | "object.entries": "^1.1.6", 1679 | "object.fromentries": "^2.0.6", 1680 | "object.hasown": "^1.1.2", 1681 | "object.values": "^1.1.6", 1682 | "prop-types": "^15.8.1", 1683 | "resolve": "^2.0.0-next.4", 1684 | "semver": "^6.3.0", 1685 | "string.prototype.matchall": "^4.0.8" 1686 | }, 1687 | "engines": { 1688 | "node": ">=4" 1689 | }, 1690 | "peerDependencies": { 1691 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" 1692 | } 1693 | }, 1694 | "node_modules/eslint-plugin-react-hooks": { 1695 | "version": "4.6.0", 1696 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", 1697 | "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", 1698 | "engines": { 1699 | "node": ">=10" 1700 | }, 1701 | "peerDependencies": { 1702 | "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" 1703 | } 1704 | }, 1705 | "node_modules/eslint-plugin-react/node_modules/doctrine": { 1706 | "version": "2.1.0", 1707 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1708 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1709 | "dependencies": { 1710 | "esutils": "^2.0.2" 1711 | }, 1712 | "engines": { 1713 | "node": ">=0.10.0" 1714 | } 1715 | }, 1716 | "node_modules/eslint-plugin-react/node_modules/resolve": { 1717 | "version": "2.0.0-next.4", 1718 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", 1719 | "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", 1720 | "dependencies": { 1721 | "is-core-module": "^2.9.0", 1722 | "path-parse": "^1.0.7", 1723 | "supports-preserve-symlinks-flag": "^1.0.0" 1724 | }, 1725 | "bin": { 1726 | "resolve": "bin/resolve" 1727 | }, 1728 | "funding": { 1729 | "url": "https://github.com/sponsors/ljharb" 1730 | } 1731 | }, 1732 | "node_modules/eslint-plugin-react/node_modules/semver": { 1733 | "version": "6.3.0", 1734 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1735 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1736 | "bin": { 1737 | "semver": "bin/semver.js" 1738 | } 1739 | }, 1740 | "node_modules/eslint-scope": { 1741 | "version": "7.2.0", 1742 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", 1743 | "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", 1744 | "dependencies": { 1745 | "esrecurse": "^4.3.0", 1746 | "estraverse": "^5.2.0" 1747 | }, 1748 | "engines": { 1749 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1750 | }, 1751 | "funding": { 1752 | "url": "https://opencollective.com/eslint" 1753 | } 1754 | }, 1755 | "node_modules/eslint-visitor-keys": { 1756 | "version": "3.4.1", 1757 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", 1758 | "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", 1759 | "engines": { 1760 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1761 | }, 1762 | "funding": { 1763 | "url": "https://opencollective.com/eslint" 1764 | } 1765 | }, 1766 | "node_modules/espree": { 1767 | "version": "9.5.2", 1768 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.2.tgz", 1769 | "integrity": "sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==", 1770 | "dependencies": { 1771 | "acorn": "^8.8.0", 1772 | "acorn-jsx": "^5.3.2", 1773 | "eslint-visitor-keys": "^3.4.1" 1774 | }, 1775 | "engines": { 1776 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1777 | }, 1778 | "funding": { 1779 | "url": "https://opencollective.com/eslint" 1780 | } 1781 | }, 1782 | "node_modules/esquery": { 1783 | "version": "1.5.0", 1784 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 1785 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 1786 | "dependencies": { 1787 | "estraverse": "^5.1.0" 1788 | }, 1789 | "engines": { 1790 | "node": ">=0.10" 1791 | } 1792 | }, 1793 | "node_modules/esrecurse": { 1794 | "version": "4.3.0", 1795 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1796 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1797 | "dependencies": { 1798 | "estraverse": "^5.2.0" 1799 | }, 1800 | "engines": { 1801 | "node": ">=4.0" 1802 | } 1803 | }, 1804 | "node_modules/estraverse": { 1805 | "version": "5.3.0", 1806 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1807 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1808 | "engines": { 1809 | "node": ">=4.0" 1810 | } 1811 | }, 1812 | "node_modules/esutils": { 1813 | "version": "2.0.3", 1814 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1815 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1816 | "engines": { 1817 | "node": ">=0.10.0" 1818 | } 1819 | }, 1820 | "node_modules/execa": { 1821 | "version": "7.1.1", 1822 | "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", 1823 | "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", 1824 | "dependencies": { 1825 | "cross-spawn": "^7.0.3", 1826 | "get-stream": "^6.0.1", 1827 | "human-signals": "^4.3.0", 1828 | "is-stream": "^3.0.0", 1829 | "merge-stream": "^2.0.0", 1830 | "npm-run-path": "^5.1.0", 1831 | "onetime": "^6.0.0", 1832 | "signal-exit": "^3.0.7", 1833 | "strip-final-newline": "^3.0.0" 1834 | }, 1835 | "engines": { 1836 | "node": "^14.18.0 || ^16.14.0 || >=18.0.0" 1837 | }, 1838 | "funding": { 1839 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 1840 | } 1841 | }, 1842 | "node_modules/fast-deep-equal": { 1843 | "version": "3.1.3", 1844 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1845 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" 1846 | }, 1847 | "node_modules/fast-glob": { 1848 | "version": "3.2.12", 1849 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", 1850 | "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", 1851 | "dependencies": { 1852 | "@nodelib/fs.stat": "^2.0.2", 1853 | "@nodelib/fs.walk": "^1.2.3", 1854 | "glob-parent": "^5.1.2", 1855 | "merge2": "^1.3.0", 1856 | "micromatch": "^4.0.4" 1857 | }, 1858 | "engines": { 1859 | "node": ">=8.6.0" 1860 | } 1861 | }, 1862 | "node_modules/fast-glob/node_modules/glob-parent": { 1863 | "version": "5.1.2", 1864 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1865 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1866 | "dependencies": { 1867 | "is-glob": "^4.0.1" 1868 | }, 1869 | "engines": { 1870 | "node": ">= 6" 1871 | } 1872 | }, 1873 | "node_modules/fast-json-stable-stringify": { 1874 | "version": "2.1.0", 1875 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1876 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" 1877 | }, 1878 | "node_modules/fast-levenshtein": { 1879 | "version": "2.0.6", 1880 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1881 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" 1882 | }, 1883 | "node_modules/fastq": { 1884 | "version": "1.15.0", 1885 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", 1886 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", 1887 | "dependencies": { 1888 | "reusify": "^1.0.4" 1889 | } 1890 | }, 1891 | "node_modules/file-entry-cache": { 1892 | "version": "6.0.1", 1893 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1894 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1895 | "dependencies": { 1896 | "flat-cache": "^3.0.4" 1897 | }, 1898 | "engines": { 1899 | "node": "^10.12.0 || >=12.0.0" 1900 | } 1901 | }, 1902 | "node_modules/fill-range": { 1903 | "version": "7.0.1", 1904 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 1905 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 1906 | "dependencies": { 1907 | "to-regex-range": "^5.0.1" 1908 | }, 1909 | "engines": { 1910 | "node": ">=8" 1911 | } 1912 | }, 1913 | "node_modules/find-up": { 1914 | "version": "5.0.0", 1915 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1916 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1917 | "dependencies": { 1918 | "locate-path": "^6.0.0", 1919 | "path-exists": "^4.0.0" 1920 | }, 1921 | "engines": { 1922 | "node": ">=10" 1923 | }, 1924 | "funding": { 1925 | "url": "https://github.com/sponsors/sindresorhus" 1926 | } 1927 | }, 1928 | "node_modules/flat-cache": { 1929 | "version": "3.0.4", 1930 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", 1931 | "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", 1932 | "dependencies": { 1933 | "flatted": "^3.1.0", 1934 | "rimraf": "^3.0.2" 1935 | }, 1936 | "engines": { 1937 | "node": "^10.12.0 || >=12.0.0" 1938 | } 1939 | }, 1940 | "node_modules/flatted": { 1941 | "version": "3.2.7", 1942 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", 1943 | "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" 1944 | }, 1945 | "node_modules/follow-redirects": { 1946 | "version": "1.15.2", 1947 | "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", 1948 | "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", 1949 | "funding": [ 1950 | { 1951 | "type": "individual", 1952 | "url": "https://github.com/sponsors/RubenVerborgh" 1953 | } 1954 | ], 1955 | "engines": { 1956 | "node": ">=4.0" 1957 | }, 1958 | "peerDependenciesMeta": { 1959 | "debug": { 1960 | "optional": true 1961 | } 1962 | } 1963 | }, 1964 | "node_modules/for-each": { 1965 | "version": "0.3.3", 1966 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", 1967 | "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", 1968 | "dependencies": { 1969 | "is-callable": "^1.1.3" 1970 | } 1971 | }, 1972 | "node_modules/form-data": { 1973 | "version": "4.0.0", 1974 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", 1975 | "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", 1976 | "dependencies": { 1977 | "asynckit": "^0.4.0", 1978 | "combined-stream": "^1.0.8", 1979 | "mime-types": "^2.1.12" 1980 | }, 1981 | "engines": { 1982 | "node": ">= 6" 1983 | } 1984 | }, 1985 | "node_modules/fraction.js": { 1986 | "version": "4.2.0", 1987 | "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", 1988 | "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", 1989 | "engines": { 1990 | "node": "*" 1991 | }, 1992 | "funding": { 1993 | "type": "patreon", 1994 | "url": "https://www.patreon.com/infusion" 1995 | } 1996 | }, 1997 | "node_modules/fs.realpath": { 1998 | "version": "1.0.0", 1999 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 2000 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" 2001 | }, 2002 | "node_modules/fsevents": { 2003 | "version": "2.3.2", 2004 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", 2005 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", 2006 | "hasInstallScript": true, 2007 | "optional": true, 2008 | "os": [ 2009 | "darwin" 2010 | ], 2011 | "engines": { 2012 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 2013 | } 2014 | }, 2015 | "node_modules/function-bind": { 2016 | "version": "1.1.1", 2017 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 2018 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" 2019 | }, 2020 | "node_modules/function.prototype.name": { 2021 | "version": "1.1.5", 2022 | "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", 2023 | "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", 2024 | "dependencies": { 2025 | "call-bind": "^1.0.2", 2026 | "define-properties": "^1.1.3", 2027 | "es-abstract": "^1.19.0", 2028 | "functions-have-names": "^1.2.2" 2029 | }, 2030 | "engines": { 2031 | "node": ">= 0.4" 2032 | }, 2033 | "funding": { 2034 | "url": "https://github.com/sponsors/ljharb" 2035 | } 2036 | }, 2037 | "node_modules/functions-have-names": { 2038 | "version": "1.2.3", 2039 | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", 2040 | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", 2041 | "funding": { 2042 | "url": "https://github.com/sponsors/ljharb" 2043 | } 2044 | }, 2045 | "node_modules/get-intrinsic": { 2046 | "version": "1.2.1", 2047 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", 2048 | "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", 2049 | "dependencies": { 2050 | "function-bind": "^1.1.1", 2051 | "has": "^1.0.3", 2052 | "has-proto": "^1.0.1", 2053 | "has-symbols": "^1.0.3" 2054 | }, 2055 | "funding": { 2056 | "url": "https://github.com/sponsors/ljharb" 2057 | } 2058 | }, 2059 | "node_modules/get-stream": { 2060 | "version": "6.0.1", 2061 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", 2062 | "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", 2063 | "engines": { 2064 | "node": ">=10" 2065 | }, 2066 | "funding": { 2067 | "url": "https://github.com/sponsors/sindresorhus" 2068 | } 2069 | }, 2070 | "node_modules/get-symbol-description": { 2071 | "version": "1.0.0", 2072 | "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", 2073 | "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", 2074 | "dependencies": { 2075 | "call-bind": "^1.0.2", 2076 | "get-intrinsic": "^1.1.1" 2077 | }, 2078 | "engines": { 2079 | "node": ">= 0.4" 2080 | }, 2081 | "funding": { 2082 | "url": "https://github.com/sponsors/ljharb" 2083 | } 2084 | }, 2085 | "node_modules/get-tsconfig": { 2086 | "version": "4.6.2", 2087 | "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.6.2.tgz", 2088 | "integrity": "sha512-E5XrT4CbbXcXWy+1jChlZmrmCwd5KGx502kDCXJJ7y898TtWW9FwoG5HfOLVRKmlmDGkWN2HM9Ho+/Y8F0sJDg==", 2089 | "dependencies": { 2090 | "resolve-pkg-maps": "^1.0.0" 2091 | }, 2092 | "funding": { 2093 | "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" 2094 | } 2095 | }, 2096 | "node_modules/glob": { 2097 | "version": "7.1.7", 2098 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", 2099 | "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", 2100 | "dependencies": { 2101 | "fs.realpath": "^1.0.0", 2102 | "inflight": "^1.0.4", 2103 | "inherits": "2", 2104 | "minimatch": "^3.0.4", 2105 | "once": "^1.3.0", 2106 | "path-is-absolute": "^1.0.0" 2107 | }, 2108 | "engines": { 2109 | "node": "*" 2110 | }, 2111 | "funding": { 2112 | "url": "https://github.com/sponsors/isaacs" 2113 | } 2114 | }, 2115 | "node_modules/glob-parent": { 2116 | "version": "6.0.2", 2117 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 2118 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 2119 | "dependencies": { 2120 | "is-glob": "^4.0.3" 2121 | }, 2122 | "engines": { 2123 | "node": ">=10.13.0" 2124 | } 2125 | }, 2126 | "node_modules/glob-to-regexp": { 2127 | "version": "0.4.1", 2128 | "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", 2129 | "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" 2130 | }, 2131 | "node_modules/globals": { 2132 | "version": "13.20.0", 2133 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", 2134 | "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", 2135 | "dependencies": { 2136 | "type-fest": "^0.20.2" 2137 | }, 2138 | "engines": { 2139 | "node": ">=8" 2140 | }, 2141 | "funding": { 2142 | "url": "https://github.com/sponsors/sindresorhus" 2143 | } 2144 | }, 2145 | "node_modules/globalthis": { 2146 | "version": "1.0.3", 2147 | "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", 2148 | "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", 2149 | "dependencies": { 2150 | "define-properties": "^1.1.3" 2151 | }, 2152 | "engines": { 2153 | "node": ">= 0.4" 2154 | }, 2155 | "funding": { 2156 | "url": "https://github.com/sponsors/ljharb" 2157 | } 2158 | }, 2159 | "node_modules/globby": { 2160 | "version": "11.1.0", 2161 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 2162 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 2163 | "dependencies": { 2164 | "array-union": "^2.1.0", 2165 | "dir-glob": "^3.0.1", 2166 | "fast-glob": "^3.2.9", 2167 | "ignore": "^5.2.0", 2168 | "merge2": "^1.4.1", 2169 | "slash": "^3.0.0" 2170 | }, 2171 | "engines": { 2172 | "node": ">=10" 2173 | }, 2174 | "funding": { 2175 | "url": "https://github.com/sponsors/sindresorhus" 2176 | } 2177 | }, 2178 | "node_modules/goober": { 2179 | "version": "2.1.13", 2180 | "resolved": "https://registry.npmjs.org/goober/-/goober-2.1.13.tgz", 2181 | "integrity": "sha512-jFj3BQeleOoy7t93E9rZ2de+ScC4lQICLwiAQmKMg9F6roKGaLSHoCDYKkWlSafg138jejvq/mTdvmnwDQgqoQ==", 2182 | "peerDependencies": { 2183 | "csstype": "^3.0.10" 2184 | } 2185 | }, 2186 | "node_modules/gopd": { 2187 | "version": "1.0.1", 2188 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", 2189 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", 2190 | "dependencies": { 2191 | "get-intrinsic": "^1.1.3" 2192 | }, 2193 | "funding": { 2194 | "url": "https://github.com/sponsors/ljharb" 2195 | } 2196 | }, 2197 | "node_modules/graceful-fs": { 2198 | "version": "4.2.11", 2199 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 2200 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" 2201 | }, 2202 | "node_modules/graphemer": { 2203 | "version": "1.4.0", 2204 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 2205 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" 2206 | }, 2207 | "node_modules/has": { 2208 | "version": "1.0.3", 2209 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 2210 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 2211 | "dependencies": { 2212 | "function-bind": "^1.1.1" 2213 | }, 2214 | "engines": { 2215 | "node": ">= 0.4.0" 2216 | } 2217 | }, 2218 | "node_modules/has-bigints": { 2219 | "version": "1.0.2", 2220 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", 2221 | "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", 2222 | "funding": { 2223 | "url": "https://github.com/sponsors/ljharb" 2224 | } 2225 | }, 2226 | "node_modules/has-flag": { 2227 | "version": "4.0.0", 2228 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2229 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2230 | "engines": { 2231 | "node": ">=8" 2232 | } 2233 | }, 2234 | "node_modules/has-property-descriptors": { 2235 | "version": "1.0.0", 2236 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", 2237 | "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", 2238 | "dependencies": { 2239 | "get-intrinsic": "^1.1.1" 2240 | }, 2241 | "funding": { 2242 | "url": "https://github.com/sponsors/ljharb" 2243 | } 2244 | }, 2245 | "node_modules/has-proto": { 2246 | "version": "1.0.1", 2247 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", 2248 | "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", 2249 | "engines": { 2250 | "node": ">= 0.4" 2251 | }, 2252 | "funding": { 2253 | "url": "https://github.com/sponsors/ljharb" 2254 | } 2255 | }, 2256 | "node_modules/has-symbols": { 2257 | "version": "1.0.3", 2258 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 2259 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 2260 | "engines": { 2261 | "node": ">= 0.4" 2262 | }, 2263 | "funding": { 2264 | "url": "https://github.com/sponsors/ljharb" 2265 | } 2266 | }, 2267 | "node_modules/has-tostringtag": { 2268 | "version": "1.0.0", 2269 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", 2270 | "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", 2271 | "dependencies": { 2272 | "has-symbols": "^1.0.2" 2273 | }, 2274 | "engines": { 2275 | "node": ">= 0.4" 2276 | }, 2277 | "funding": { 2278 | "url": "https://github.com/sponsors/ljharb" 2279 | } 2280 | }, 2281 | "node_modules/human-signals": { 2282 | "version": "4.3.1", 2283 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", 2284 | "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", 2285 | "engines": { 2286 | "node": ">=14.18.0" 2287 | } 2288 | }, 2289 | "node_modules/ignore": { 2290 | "version": "5.2.4", 2291 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", 2292 | "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", 2293 | "engines": { 2294 | "node": ">= 4" 2295 | } 2296 | }, 2297 | "node_modules/import-fresh": { 2298 | "version": "3.3.0", 2299 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 2300 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 2301 | "dependencies": { 2302 | "parent-module": "^1.0.0", 2303 | "resolve-from": "^4.0.0" 2304 | }, 2305 | "engines": { 2306 | "node": ">=6" 2307 | }, 2308 | "funding": { 2309 | "url": "https://github.com/sponsors/sindresorhus" 2310 | } 2311 | }, 2312 | "node_modules/imurmurhash": { 2313 | "version": "0.1.4", 2314 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2315 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2316 | "engines": { 2317 | "node": ">=0.8.19" 2318 | } 2319 | }, 2320 | "node_modules/inflight": { 2321 | "version": "1.0.6", 2322 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 2323 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 2324 | "dependencies": { 2325 | "once": "^1.3.0", 2326 | "wrappy": "1" 2327 | } 2328 | }, 2329 | "node_modules/inherits": { 2330 | "version": "2.0.4", 2331 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2332 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 2333 | }, 2334 | "node_modules/internal-slot": { 2335 | "version": "1.0.5", 2336 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", 2337 | "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", 2338 | "dependencies": { 2339 | "get-intrinsic": "^1.2.0", 2340 | "has": "^1.0.3", 2341 | "side-channel": "^1.0.4" 2342 | }, 2343 | "engines": { 2344 | "node": ">= 0.4" 2345 | } 2346 | }, 2347 | "node_modules/ip": { 2348 | "version": "2.0.0", 2349 | "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", 2350 | "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" 2351 | }, 2352 | "node_modules/is-array-buffer": { 2353 | "version": "3.0.2", 2354 | "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", 2355 | "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", 2356 | "dependencies": { 2357 | "call-bind": "^1.0.2", 2358 | "get-intrinsic": "^1.2.0", 2359 | "is-typed-array": "^1.1.10" 2360 | }, 2361 | "funding": { 2362 | "url": "https://github.com/sponsors/ljharb" 2363 | } 2364 | }, 2365 | "node_modules/is-bigint": { 2366 | "version": "1.0.4", 2367 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", 2368 | "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", 2369 | "dependencies": { 2370 | "has-bigints": "^1.0.1" 2371 | }, 2372 | "funding": { 2373 | "url": "https://github.com/sponsors/ljharb" 2374 | } 2375 | }, 2376 | "node_modules/is-binary-path": { 2377 | "version": "2.1.0", 2378 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 2379 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 2380 | "dependencies": { 2381 | "binary-extensions": "^2.0.0" 2382 | }, 2383 | "engines": { 2384 | "node": ">=8" 2385 | } 2386 | }, 2387 | "node_modules/is-boolean-object": { 2388 | "version": "1.1.2", 2389 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", 2390 | "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", 2391 | "dependencies": { 2392 | "call-bind": "^1.0.2", 2393 | "has-tostringtag": "^1.0.0" 2394 | }, 2395 | "engines": { 2396 | "node": ">= 0.4" 2397 | }, 2398 | "funding": { 2399 | "url": "https://github.com/sponsors/ljharb" 2400 | } 2401 | }, 2402 | "node_modules/is-callable": { 2403 | "version": "1.2.7", 2404 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", 2405 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", 2406 | "engines": { 2407 | "node": ">= 0.4" 2408 | }, 2409 | "funding": { 2410 | "url": "https://github.com/sponsors/ljharb" 2411 | } 2412 | }, 2413 | "node_modules/is-core-module": { 2414 | "version": "2.12.1", 2415 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", 2416 | "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", 2417 | "dependencies": { 2418 | "has": "^1.0.3" 2419 | }, 2420 | "funding": { 2421 | "url": "https://github.com/sponsors/ljharb" 2422 | } 2423 | }, 2424 | "node_modules/is-date-object": { 2425 | "version": "1.0.5", 2426 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", 2427 | "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", 2428 | "dependencies": { 2429 | "has-tostringtag": "^1.0.0" 2430 | }, 2431 | "engines": { 2432 | "node": ">= 0.4" 2433 | }, 2434 | "funding": { 2435 | "url": "https://github.com/sponsors/ljharb" 2436 | } 2437 | }, 2438 | "node_modules/is-docker": { 2439 | "version": "3.0.0", 2440 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", 2441 | "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", 2442 | "bin": { 2443 | "is-docker": "cli.js" 2444 | }, 2445 | "engines": { 2446 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2447 | }, 2448 | "funding": { 2449 | "url": "https://github.com/sponsors/sindresorhus" 2450 | } 2451 | }, 2452 | "node_modules/is-extglob": { 2453 | "version": "2.1.1", 2454 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2455 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2456 | "engines": { 2457 | "node": ">=0.10.0" 2458 | } 2459 | }, 2460 | "node_modules/is-glob": { 2461 | "version": "4.0.3", 2462 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2463 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2464 | "dependencies": { 2465 | "is-extglob": "^2.1.1" 2466 | }, 2467 | "engines": { 2468 | "node": ">=0.10.0" 2469 | } 2470 | }, 2471 | "node_modules/is-inside-container": { 2472 | "version": "1.0.0", 2473 | "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", 2474 | "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", 2475 | "dependencies": { 2476 | "is-docker": "^3.0.0" 2477 | }, 2478 | "bin": { 2479 | "is-inside-container": "cli.js" 2480 | }, 2481 | "engines": { 2482 | "node": ">=14.16" 2483 | }, 2484 | "funding": { 2485 | "url": "https://github.com/sponsors/sindresorhus" 2486 | } 2487 | }, 2488 | "node_modules/is-negative-zero": { 2489 | "version": "2.0.2", 2490 | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", 2491 | "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", 2492 | "engines": { 2493 | "node": ">= 0.4" 2494 | }, 2495 | "funding": { 2496 | "url": "https://github.com/sponsors/ljharb" 2497 | } 2498 | }, 2499 | "node_modules/is-number": { 2500 | "version": "7.0.0", 2501 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2502 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2503 | "engines": { 2504 | "node": ">=0.12.0" 2505 | } 2506 | }, 2507 | "node_modules/is-number-object": { 2508 | "version": "1.0.7", 2509 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", 2510 | "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", 2511 | "dependencies": { 2512 | "has-tostringtag": "^1.0.0" 2513 | }, 2514 | "engines": { 2515 | "node": ">= 0.4" 2516 | }, 2517 | "funding": { 2518 | "url": "https://github.com/sponsors/ljharb" 2519 | } 2520 | }, 2521 | "node_modules/is-path-inside": { 2522 | "version": "3.0.3", 2523 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 2524 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 2525 | "engines": { 2526 | "node": ">=8" 2527 | } 2528 | }, 2529 | "node_modules/is-regex": { 2530 | "version": "1.1.4", 2531 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", 2532 | "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", 2533 | "dependencies": { 2534 | "call-bind": "^1.0.2", 2535 | "has-tostringtag": "^1.0.0" 2536 | }, 2537 | "engines": { 2538 | "node": ">= 0.4" 2539 | }, 2540 | "funding": { 2541 | "url": "https://github.com/sponsors/ljharb" 2542 | } 2543 | }, 2544 | "node_modules/is-shared-array-buffer": { 2545 | "version": "1.0.2", 2546 | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", 2547 | "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", 2548 | "dependencies": { 2549 | "call-bind": "^1.0.2" 2550 | }, 2551 | "funding": { 2552 | "url": "https://github.com/sponsors/ljharb" 2553 | } 2554 | }, 2555 | "node_modules/is-stream": { 2556 | "version": "3.0.0", 2557 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", 2558 | "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", 2559 | "engines": { 2560 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2561 | }, 2562 | "funding": { 2563 | "url": "https://github.com/sponsors/sindresorhus" 2564 | } 2565 | }, 2566 | "node_modules/is-string": { 2567 | "version": "1.0.7", 2568 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", 2569 | "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", 2570 | "dependencies": { 2571 | "has-tostringtag": "^1.0.0" 2572 | }, 2573 | "engines": { 2574 | "node": ">= 0.4" 2575 | }, 2576 | "funding": { 2577 | "url": "https://github.com/sponsors/ljharb" 2578 | } 2579 | }, 2580 | "node_modules/is-symbol": { 2581 | "version": "1.0.4", 2582 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", 2583 | "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", 2584 | "dependencies": { 2585 | "has-symbols": "^1.0.2" 2586 | }, 2587 | "engines": { 2588 | "node": ">= 0.4" 2589 | }, 2590 | "funding": { 2591 | "url": "https://github.com/sponsors/ljharb" 2592 | } 2593 | }, 2594 | "node_modules/is-typed-array": { 2595 | "version": "1.1.10", 2596 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", 2597 | "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", 2598 | "dependencies": { 2599 | "available-typed-arrays": "^1.0.5", 2600 | "call-bind": "^1.0.2", 2601 | "for-each": "^0.3.3", 2602 | "gopd": "^1.0.1", 2603 | "has-tostringtag": "^1.0.0" 2604 | }, 2605 | "engines": { 2606 | "node": ">= 0.4" 2607 | }, 2608 | "funding": { 2609 | "url": "https://github.com/sponsors/ljharb" 2610 | } 2611 | }, 2612 | "node_modules/is-weakref": { 2613 | "version": "1.0.2", 2614 | "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", 2615 | "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", 2616 | "dependencies": { 2617 | "call-bind": "^1.0.2" 2618 | }, 2619 | "funding": { 2620 | "url": "https://github.com/sponsors/ljharb" 2621 | } 2622 | }, 2623 | "node_modules/is-wsl": { 2624 | "version": "2.2.0", 2625 | "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", 2626 | "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", 2627 | "dependencies": { 2628 | "is-docker": "^2.0.0" 2629 | }, 2630 | "engines": { 2631 | "node": ">=8" 2632 | } 2633 | }, 2634 | "node_modules/is-wsl/node_modules/is-docker": { 2635 | "version": "2.2.1", 2636 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", 2637 | "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", 2638 | "bin": { 2639 | "is-docker": "cli.js" 2640 | }, 2641 | "engines": { 2642 | "node": ">=8" 2643 | }, 2644 | "funding": { 2645 | "url": "https://github.com/sponsors/sindresorhus" 2646 | } 2647 | }, 2648 | "node_modules/isexe": { 2649 | "version": "2.0.0", 2650 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2651 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" 2652 | }, 2653 | "node_modules/jiti": { 2654 | "version": "1.18.2", 2655 | "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.18.2.tgz", 2656 | "integrity": "sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==", 2657 | "bin": { 2658 | "jiti": "bin/jiti.js" 2659 | } 2660 | }, 2661 | "node_modules/js-tokens": { 2662 | "version": "4.0.0", 2663 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2664 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" 2665 | }, 2666 | "node_modules/js-yaml": { 2667 | "version": "4.1.0", 2668 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2669 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2670 | "dependencies": { 2671 | "argparse": "^2.0.1" 2672 | }, 2673 | "bin": { 2674 | "js-yaml": "bin/js-yaml.js" 2675 | } 2676 | }, 2677 | "node_modules/json-schema-traverse": { 2678 | "version": "0.4.1", 2679 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2680 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" 2681 | }, 2682 | "node_modules/json-stable-stringify-without-jsonify": { 2683 | "version": "1.0.1", 2684 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2685 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" 2686 | }, 2687 | "node_modules/json5": { 2688 | "version": "1.0.2", 2689 | "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", 2690 | "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", 2691 | "dependencies": { 2692 | "minimist": "^1.2.0" 2693 | }, 2694 | "bin": { 2695 | "json5": "lib/cli.js" 2696 | } 2697 | }, 2698 | "node_modules/jsonwebtoken": { 2699 | "version": "9.0.0", 2700 | "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.0.tgz", 2701 | "integrity": "sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==", 2702 | "dependencies": { 2703 | "jws": "^3.2.2", 2704 | "lodash": "^4.17.21", 2705 | "ms": "^2.1.1", 2706 | "semver": "^7.3.8" 2707 | }, 2708 | "engines": { 2709 | "node": ">=12", 2710 | "npm": ">=6" 2711 | } 2712 | }, 2713 | "node_modules/jsx-ast-utils": { 2714 | "version": "3.3.4", 2715 | "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.4.tgz", 2716 | "integrity": "sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==", 2717 | "dependencies": { 2718 | "array-includes": "^3.1.6", 2719 | "array.prototype.flat": "^1.3.1", 2720 | "object.assign": "^4.1.4", 2721 | "object.values": "^1.1.6" 2722 | }, 2723 | "engines": { 2724 | "node": ">=4.0" 2725 | } 2726 | }, 2727 | "node_modules/jwa": { 2728 | "version": "1.4.1", 2729 | "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", 2730 | "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", 2731 | "dependencies": { 2732 | "buffer-equal-constant-time": "1.0.1", 2733 | "ecdsa-sig-formatter": "1.0.11", 2734 | "safe-buffer": "^5.0.1" 2735 | } 2736 | }, 2737 | "node_modules/jws": { 2738 | "version": "3.2.2", 2739 | "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", 2740 | "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", 2741 | "dependencies": { 2742 | "jwa": "^1.4.1", 2743 | "safe-buffer": "^5.0.1" 2744 | } 2745 | }, 2746 | "node_modules/kareem": { 2747 | "version": "2.5.1", 2748 | "resolved": "https://registry.npmjs.org/kareem/-/kareem-2.5.1.tgz", 2749 | "integrity": "sha512-7jFxRVm+jD+rkq3kY0iZDJfsO2/t4BBPeEb2qKn2lR/9KhuksYk5hxzfRYWMPV8P/x2d0kHD306YyWLzjjH+uA==", 2750 | "engines": { 2751 | "node": ">=12.0.0" 2752 | } 2753 | }, 2754 | "node_modules/language-subtag-registry": { 2755 | "version": "0.3.22", 2756 | "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", 2757 | "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" 2758 | }, 2759 | "node_modules/language-tags": { 2760 | "version": "1.0.5", 2761 | "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", 2762 | "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", 2763 | "dependencies": { 2764 | "language-subtag-registry": "~0.3.2" 2765 | } 2766 | }, 2767 | "node_modules/levn": { 2768 | "version": "0.4.1", 2769 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2770 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2771 | "dependencies": { 2772 | "prelude-ls": "^1.2.1", 2773 | "type-check": "~0.4.0" 2774 | }, 2775 | "engines": { 2776 | "node": ">= 0.8.0" 2777 | } 2778 | }, 2779 | "node_modules/lilconfig": { 2780 | "version": "2.1.0", 2781 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", 2782 | "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", 2783 | "engines": { 2784 | "node": ">=10" 2785 | } 2786 | }, 2787 | "node_modules/lines-and-columns": { 2788 | "version": "1.2.4", 2789 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 2790 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" 2791 | }, 2792 | "node_modules/locate-path": { 2793 | "version": "6.0.0", 2794 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2795 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2796 | "dependencies": { 2797 | "p-locate": "^5.0.0" 2798 | }, 2799 | "engines": { 2800 | "node": ">=10" 2801 | }, 2802 | "funding": { 2803 | "url": "https://github.com/sponsors/sindresorhus" 2804 | } 2805 | }, 2806 | "node_modules/lodash": { 2807 | "version": "4.17.21", 2808 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 2809 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" 2810 | }, 2811 | "node_modules/lodash.merge": { 2812 | "version": "4.6.2", 2813 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2814 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" 2815 | }, 2816 | "node_modules/loose-envify": { 2817 | "version": "1.4.0", 2818 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", 2819 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", 2820 | "dependencies": { 2821 | "js-tokens": "^3.0.0 || ^4.0.0" 2822 | }, 2823 | "bin": { 2824 | "loose-envify": "cli.js" 2825 | } 2826 | }, 2827 | "node_modules/lru-cache": { 2828 | "version": "6.0.0", 2829 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 2830 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 2831 | "dependencies": { 2832 | "yallist": "^4.0.0" 2833 | }, 2834 | "engines": { 2835 | "node": ">=10" 2836 | } 2837 | }, 2838 | "node_modules/memory-pager": { 2839 | "version": "1.5.0", 2840 | "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz", 2841 | "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==", 2842 | "optional": true 2843 | }, 2844 | "node_modules/merge-stream": { 2845 | "version": "2.0.0", 2846 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", 2847 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" 2848 | }, 2849 | "node_modules/merge2": { 2850 | "version": "1.4.1", 2851 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2852 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2853 | "engines": { 2854 | "node": ">= 8" 2855 | } 2856 | }, 2857 | "node_modules/micromatch": { 2858 | "version": "4.0.5", 2859 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 2860 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 2861 | "dependencies": { 2862 | "braces": "^3.0.2", 2863 | "picomatch": "^2.3.1" 2864 | }, 2865 | "engines": { 2866 | "node": ">=8.6" 2867 | } 2868 | }, 2869 | "node_modules/mime-db": { 2870 | "version": "1.52.0", 2871 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 2872 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 2873 | "engines": { 2874 | "node": ">= 0.6" 2875 | } 2876 | }, 2877 | "node_modules/mime-types": { 2878 | "version": "2.1.35", 2879 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 2880 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 2881 | "dependencies": { 2882 | "mime-db": "1.52.0" 2883 | }, 2884 | "engines": { 2885 | "node": ">= 0.6" 2886 | } 2887 | }, 2888 | "node_modules/mimic-fn": { 2889 | "version": "4.0.0", 2890 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", 2891 | "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", 2892 | "engines": { 2893 | "node": ">=12" 2894 | }, 2895 | "funding": { 2896 | "url": "https://github.com/sponsors/sindresorhus" 2897 | } 2898 | }, 2899 | "node_modules/minimatch": { 2900 | "version": "3.1.2", 2901 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2902 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2903 | "dependencies": { 2904 | "brace-expansion": "^1.1.7" 2905 | }, 2906 | "engines": { 2907 | "node": "*" 2908 | } 2909 | }, 2910 | "node_modules/minimist": { 2911 | "version": "1.2.8", 2912 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 2913 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", 2914 | "funding": { 2915 | "url": "https://github.com/sponsors/ljharb" 2916 | } 2917 | }, 2918 | "node_modules/mongodb": { 2919 | "version": "5.6.0", 2920 | "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-5.6.0.tgz", 2921 | "integrity": "sha512-z8qVs9NfobHJm6uzK56XBZF8XwM9H294iRnB7wNjF0SnY93si5HPziIJn+qqvUR5QOff/4L0gCD6SShdR/GtVQ==", 2922 | "dependencies": { 2923 | "bson": "^5.3.0", 2924 | "mongodb-connection-string-url": "^2.6.0", 2925 | "socks": "^2.7.1" 2926 | }, 2927 | "engines": { 2928 | "node": ">=14.20.1" 2929 | }, 2930 | "optionalDependencies": { 2931 | "saslprep": "^1.0.3" 2932 | }, 2933 | "peerDependencies": { 2934 | "@aws-sdk/credential-providers": "^3.201.0", 2935 | "mongodb-client-encryption": ">=2.3.0 <3", 2936 | "snappy": "^7.2.2" 2937 | }, 2938 | "peerDependenciesMeta": { 2939 | "@aws-sdk/credential-providers": { 2940 | "optional": true 2941 | }, 2942 | "mongodb-client-encryption": { 2943 | "optional": true 2944 | }, 2945 | "snappy": { 2946 | "optional": true 2947 | } 2948 | } 2949 | }, 2950 | "node_modules/mongodb-connection-string-url": { 2951 | "version": "2.6.0", 2952 | "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-2.6.0.tgz", 2953 | "integrity": "sha512-WvTZlI9ab0QYtTYnuMLgobULWhokRjtC7db9LtcVfJ+Hsnyr5eo6ZtNAt3Ly24XZScGMelOcGtm7lSn0332tPQ==", 2954 | "dependencies": { 2955 | "@types/whatwg-url": "^8.2.1", 2956 | "whatwg-url": "^11.0.0" 2957 | } 2958 | }, 2959 | "node_modules/mongoose": { 2960 | "version": "7.3.1", 2961 | "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-7.3.1.tgz", 2962 | "integrity": "sha512-6289bmSIhvR8xMHsYe2/CuzN7wHK+2RHcK7idDdzniCPC5zix5JH0Hc4k3CmXlr/9zQ2250gUQiUWtvDB0vF1Q==", 2963 | "dependencies": { 2964 | "bson": "^5.3.0", 2965 | "kareem": "2.5.1", 2966 | "mongodb": "5.6.0", 2967 | "mpath": "0.9.0", 2968 | "mquery": "5.0.0", 2969 | "ms": "2.1.3", 2970 | "sift": "16.0.1" 2971 | }, 2972 | "engines": { 2973 | "node": ">=14.20.1" 2974 | }, 2975 | "funding": { 2976 | "type": "opencollective", 2977 | "url": "https://opencollective.com/mongoose" 2978 | } 2979 | }, 2980 | "node_modules/mongoose/node_modules/ms": { 2981 | "version": "2.1.3", 2982 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2983 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" 2984 | }, 2985 | "node_modules/mpath": { 2986 | "version": "0.9.0", 2987 | "resolved": "https://registry.npmjs.org/mpath/-/mpath-0.9.0.tgz", 2988 | "integrity": "sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew==", 2989 | "engines": { 2990 | "node": ">=4.0.0" 2991 | } 2992 | }, 2993 | "node_modules/mquery": { 2994 | "version": "5.0.0", 2995 | "resolved": "https://registry.npmjs.org/mquery/-/mquery-5.0.0.tgz", 2996 | "integrity": "sha512-iQMncpmEK8R8ncT8HJGsGc9Dsp8xcgYMVSbs5jgnm1lFHTZqMJTUWTDx1LBO8+mK3tPNZWFLBghQEIOULSTHZg==", 2997 | "dependencies": { 2998 | "debug": "4.x" 2999 | }, 3000 | "engines": { 3001 | "node": ">=14.0.0" 3002 | } 3003 | }, 3004 | "node_modules/ms": { 3005 | "version": "2.1.2", 3006 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 3007 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 3008 | }, 3009 | "node_modules/mz": { 3010 | "version": "2.7.0", 3011 | "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", 3012 | "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", 3013 | "dependencies": { 3014 | "any-promise": "^1.0.0", 3015 | "object-assign": "^4.0.1", 3016 | "thenify-all": "^1.0.0" 3017 | } 3018 | }, 3019 | "node_modules/nanoid": { 3020 | "version": "3.3.6", 3021 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", 3022 | "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", 3023 | "funding": [ 3024 | { 3025 | "type": "github", 3026 | "url": "https://github.com/sponsors/ai" 3027 | } 3028 | ], 3029 | "bin": { 3030 | "nanoid": "bin/nanoid.cjs" 3031 | }, 3032 | "engines": { 3033 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 3034 | } 3035 | }, 3036 | "node_modules/natural-compare": { 3037 | "version": "1.4.0", 3038 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 3039 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" 3040 | }, 3041 | "node_modules/next": { 3042 | "version": "13.4.7", 3043 | "resolved": "https://registry.npmjs.org/next/-/next-13.4.7.tgz", 3044 | "integrity": "sha512-M8z3k9VmG51SRT6v5uDKdJXcAqLzP3C+vaKfLIAM0Mhx1um1G7MDnO63+m52qPdZfrTFzMZNzfsgvm3ghuVHIQ==", 3045 | "dependencies": { 3046 | "@next/env": "13.4.7", 3047 | "@swc/helpers": "0.5.1", 3048 | "busboy": "1.6.0", 3049 | "caniuse-lite": "^1.0.30001406", 3050 | "postcss": "8.4.14", 3051 | "styled-jsx": "5.1.1", 3052 | "watchpack": "2.4.0", 3053 | "zod": "3.21.4" 3054 | }, 3055 | "bin": { 3056 | "next": "dist/bin/next" 3057 | }, 3058 | "engines": { 3059 | "node": ">=16.8.0" 3060 | }, 3061 | "optionalDependencies": { 3062 | "@next/swc-darwin-arm64": "13.4.7", 3063 | "@next/swc-darwin-x64": "13.4.7", 3064 | "@next/swc-linux-arm64-gnu": "13.4.7", 3065 | "@next/swc-linux-arm64-musl": "13.4.7", 3066 | "@next/swc-linux-x64-gnu": "13.4.7", 3067 | "@next/swc-linux-x64-musl": "13.4.7", 3068 | "@next/swc-win32-arm64-msvc": "13.4.7", 3069 | "@next/swc-win32-ia32-msvc": "13.4.7", 3070 | "@next/swc-win32-x64-msvc": "13.4.7" 3071 | }, 3072 | "peerDependencies": { 3073 | "@opentelemetry/api": "^1.1.0", 3074 | "fibers": ">= 3.1.0", 3075 | "react": "^18.2.0", 3076 | "react-dom": "^18.2.0", 3077 | "sass": "^1.3.0" 3078 | }, 3079 | "peerDependenciesMeta": { 3080 | "@opentelemetry/api": { 3081 | "optional": true 3082 | }, 3083 | "fibers": { 3084 | "optional": true 3085 | }, 3086 | "sass": { 3087 | "optional": true 3088 | } 3089 | } 3090 | }, 3091 | "node_modules/next/node_modules/postcss": { 3092 | "version": "8.4.14", 3093 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", 3094 | "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", 3095 | "funding": [ 3096 | { 3097 | "type": "opencollective", 3098 | "url": "https://opencollective.com/postcss/" 3099 | }, 3100 | { 3101 | "type": "tidelift", 3102 | "url": "https://tidelift.com/funding/github/npm/postcss" 3103 | } 3104 | ], 3105 | "dependencies": { 3106 | "nanoid": "^3.3.4", 3107 | "picocolors": "^1.0.0", 3108 | "source-map-js": "^1.0.2" 3109 | }, 3110 | "engines": { 3111 | "node": "^10 || ^12 || >=14" 3112 | } 3113 | }, 3114 | "node_modules/node-releases": { 3115 | "version": "2.0.12", 3116 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", 3117 | "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==" 3118 | }, 3119 | "node_modules/nodemailer": { 3120 | "version": "6.9.3", 3121 | "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-6.9.3.tgz", 3122 | "integrity": "sha512-fy9v3NgTzBngrMFkDsKEj0r02U7jm6XfC3b52eoNV+GCrGj+s8pt5OqhiJdWKuw51zCTdiNR/IUD1z33LIIGpg==", 3123 | "engines": { 3124 | "node": ">=6.0.0" 3125 | } 3126 | }, 3127 | "node_modules/normalize-path": { 3128 | "version": "3.0.0", 3129 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 3130 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 3131 | "engines": { 3132 | "node": ">=0.10.0" 3133 | } 3134 | }, 3135 | "node_modules/normalize-range": { 3136 | "version": "0.1.2", 3137 | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", 3138 | "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", 3139 | "engines": { 3140 | "node": ">=0.10.0" 3141 | } 3142 | }, 3143 | "node_modules/npm-run-path": { 3144 | "version": "5.1.0", 3145 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", 3146 | "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", 3147 | "dependencies": { 3148 | "path-key": "^4.0.0" 3149 | }, 3150 | "engines": { 3151 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 3152 | }, 3153 | "funding": { 3154 | "url": "https://github.com/sponsors/sindresorhus" 3155 | } 3156 | }, 3157 | "node_modules/npm-run-path/node_modules/path-key": { 3158 | "version": "4.0.0", 3159 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", 3160 | "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", 3161 | "engines": { 3162 | "node": ">=12" 3163 | }, 3164 | "funding": { 3165 | "url": "https://github.com/sponsors/sindresorhus" 3166 | } 3167 | }, 3168 | "node_modules/object-assign": { 3169 | "version": "4.1.1", 3170 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 3171 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 3172 | "engines": { 3173 | "node": ">=0.10.0" 3174 | } 3175 | }, 3176 | "node_modules/object-hash": { 3177 | "version": "3.0.0", 3178 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", 3179 | "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", 3180 | "engines": { 3181 | "node": ">= 6" 3182 | } 3183 | }, 3184 | "node_modules/object-inspect": { 3185 | "version": "1.12.3", 3186 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", 3187 | "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", 3188 | "funding": { 3189 | "url": "https://github.com/sponsors/ljharb" 3190 | } 3191 | }, 3192 | "node_modules/object-keys": { 3193 | "version": "1.1.1", 3194 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 3195 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 3196 | "engines": { 3197 | "node": ">= 0.4" 3198 | } 3199 | }, 3200 | "node_modules/object.assign": { 3201 | "version": "4.1.4", 3202 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", 3203 | "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", 3204 | "dependencies": { 3205 | "call-bind": "^1.0.2", 3206 | "define-properties": "^1.1.4", 3207 | "has-symbols": "^1.0.3", 3208 | "object-keys": "^1.1.1" 3209 | }, 3210 | "engines": { 3211 | "node": ">= 0.4" 3212 | }, 3213 | "funding": { 3214 | "url": "https://github.com/sponsors/ljharb" 3215 | } 3216 | }, 3217 | "node_modules/object.entries": { 3218 | "version": "1.1.6", 3219 | "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", 3220 | "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", 3221 | "dependencies": { 3222 | "call-bind": "^1.0.2", 3223 | "define-properties": "^1.1.4", 3224 | "es-abstract": "^1.20.4" 3225 | }, 3226 | "engines": { 3227 | "node": ">= 0.4" 3228 | } 3229 | }, 3230 | "node_modules/object.fromentries": { 3231 | "version": "2.0.6", 3232 | "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", 3233 | "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", 3234 | "dependencies": { 3235 | "call-bind": "^1.0.2", 3236 | "define-properties": "^1.1.4", 3237 | "es-abstract": "^1.20.4" 3238 | }, 3239 | "engines": { 3240 | "node": ">= 0.4" 3241 | }, 3242 | "funding": { 3243 | "url": "https://github.com/sponsors/ljharb" 3244 | } 3245 | }, 3246 | "node_modules/object.hasown": { 3247 | "version": "1.1.2", 3248 | "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", 3249 | "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", 3250 | "dependencies": { 3251 | "define-properties": "^1.1.4", 3252 | "es-abstract": "^1.20.4" 3253 | }, 3254 | "funding": { 3255 | "url": "https://github.com/sponsors/ljharb" 3256 | } 3257 | }, 3258 | "node_modules/object.values": { 3259 | "version": "1.1.6", 3260 | "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", 3261 | "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", 3262 | "dependencies": { 3263 | "call-bind": "^1.0.2", 3264 | "define-properties": "^1.1.4", 3265 | "es-abstract": "^1.20.4" 3266 | }, 3267 | "engines": { 3268 | "node": ">= 0.4" 3269 | }, 3270 | "funding": { 3271 | "url": "https://github.com/sponsors/ljharb" 3272 | } 3273 | }, 3274 | "node_modules/once": { 3275 | "version": "1.4.0", 3276 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 3277 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 3278 | "dependencies": { 3279 | "wrappy": "1" 3280 | } 3281 | }, 3282 | "node_modules/onetime": { 3283 | "version": "6.0.0", 3284 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", 3285 | "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", 3286 | "dependencies": { 3287 | "mimic-fn": "^4.0.0" 3288 | }, 3289 | "engines": { 3290 | "node": ">=12" 3291 | }, 3292 | "funding": { 3293 | "url": "https://github.com/sponsors/sindresorhus" 3294 | } 3295 | }, 3296 | "node_modules/open": { 3297 | "version": "9.1.0", 3298 | "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz", 3299 | "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", 3300 | "dependencies": { 3301 | "default-browser": "^4.0.0", 3302 | "define-lazy-prop": "^3.0.0", 3303 | "is-inside-container": "^1.0.0", 3304 | "is-wsl": "^2.2.0" 3305 | }, 3306 | "engines": { 3307 | "node": ">=14.16" 3308 | }, 3309 | "funding": { 3310 | "url": "https://github.com/sponsors/sindresorhus" 3311 | } 3312 | }, 3313 | "node_modules/optionator": { 3314 | "version": "0.9.3", 3315 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", 3316 | "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", 3317 | "dependencies": { 3318 | "@aashutoshrathi/word-wrap": "^1.2.3", 3319 | "deep-is": "^0.1.3", 3320 | "fast-levenshtein": "^2.0.6", 3321 | "levn": "^0.4.1", 3322 | "prelude-ls": "^1.2.1", 3323 | "type-check": "^0.4.0" 3324 | }, 3325 | "engines": { 3326 | "node": ">= 0.8.0" 3327 | } 3328 | }, 3329 | "node_modules/p-limit": { 3330 | "version": "3.1.0", 3331 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 3332 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 3333 | "dependencies": { 3334 | "yocto-queue": "^0.1.0" 3335 | }, 3336 | "engines": { 3337 | "node": ">=10" 3338 | }, 3339 | "funding": { 3340 | "url": "https://github.com/sponsors/sindresorhus" 3341 | } 3342 | }, 3343 | "node_modules/p-locate": { 3344 | "version": "5.0.0", 3345 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 3346 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 3347 | "dependencies": { 3348 | "p-limit": "^3.0.2" 3349 | }, 3350 | "engines": { 3351 | "node": ">=10" 3352 | }, 3353 | "funding": { 3354 | "url": "https://github.com/sponsors/sindresorhus" 3355 | } 3356 | }, 3357 | "node_modules/parent-module": { 3358 | "version": "1.0.1", 3359 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 3360 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 3361 | "dependencies": { 3362 | "callsites": "^3.0.0" 3363 | }, 3364 | "engines": { 3365 | "node": ">=6" 3366 | } 3367 | }, 3368 | "node_modules/path-exists": { 3369 | "version": "4.0.0", 3370 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 3371 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 3372 | "engines": { 3373 | "node": ">=8" 3374 | } 3375 | }, 3376 | "node_modules/path-is-absolute": { 3377 | "version": "1.0.1", 3378 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 3379 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 3380 | "engines": { 3381 | "node": ">=0.10.0" 3382 | } 3383 | }, 3384 | "node_modules/path-key": { 3385 | "version": "3.1.1", 3386 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3387 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3388 | "engines": { 3389 | "node": ">=8" 3390 | } 3391 | }, 3392 | "node_modules/path-parse": { 3393 | "version": "1.0.7", 3394 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 3395 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" 3396 | }, 3397 | "node_modules/path-type": { 3398 | "version": "4.0.0", 3399 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 3400 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 3401 | "engines": { 3402 | "node": ">=8" 3403 | } 3404 | }, 3405 | "node_modules/picocolors": { 3406 | "version": "1.0.0", 3407 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 3408 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" 3409 | }, 3410 | "node_modules/picomatch": { 3411 | "version": "2.3.1", 3412 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3413 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3414 | "engines": { 3415 | "node": ">=8.6" 3416 | }, 3417 | "funding": { 3418 | "url": "https://github.com/sponsors/jonschlinkert" 3419 | } 3420 | }, 3421 | "node_modules/pify": { 3422 | "version": "2.3.0", 3423 | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", 3424 | "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", 3425 | "engines": { 3426 | "node": ">=0.10.0" 3427 | } 3428 | }, 3429 | "node_modules/pirates": { 3430 | "version": "4.0.6", 3431 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", 3432 | "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", 3433 | "engines": { 3434 | "node": ">= 6" 3435 | } 3436 | }, 3437 | "node_modules/postcss": { 3438 | "version": "8.4.24", 3439 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", 3440 | "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", 3441 | "funding": [ 3442 | { 3443 | "type": "opencollective", 3444 | "url": "https://opencollective.com/postcss/" 3445 | }, 3446 | { 3447 | "type": "tidelift", 3448 | "url": "https://tidelift.com/funding/github/npm/postcss" 3449 | }, 3450 | { 3451 | "type": "github", 3452 | "url": "https://github.com/sponsors/ai" 3453 | } 3454 | ], 3455 | "dependencies": { 3456 | "nanoid": "^3.3.6", 3457 | "picocolors": "^1.0.0", 3458 | "source-map-js": "^1.0.2" 3459 | }, 3460 | "engines": { 3461 | "node": "^10 || ^12 || >=14" 3462 | } 3463 | }, 3464 | "node_modules/postcss-import": { 3465 | "version": "15.1.0", 3466 | "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", 3467 | "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", 3468 | "dependencies": { 3469 | "postcss-value-parser": "^4.0.0", 3470 | "read-cache": "^1.0.0", 3471 | "resolve": "^1.1.7" 3472 | }, 3473 | "engines": { 3474 | "node": ">=14.0.0" 3475 | }, 3476 | "peerDependencies": { 3477 | "postcss": "^8.0.0" 3478 | } 3479 | }, 3480 | "node_modules/postcss-js": { 3481 | "version": "4.0.1", 3482 | "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", 3483 | "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", 3484 | "dependencies": { 3485 | "camelcase-css": "^2.0.1" 3486 | }, 3487 | "engines": { 3488 | "node": "^12 || ^14 || >= 16" 3489 | }, 3490 | "funding": { 3491 | "type": "opencollective", 3492 | "url": "https://opencollective.com/postcss/" 3493 | }, 3494 | "peerDependencies": { 3495 | "postcss": "^8.4.21" 3496 | } 3497 | }, 3498 | "node_modules/postcss-load-config": { 3499 | "version": "4.0.1", 3500 | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", 3501 | "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", 3502 | "dependencies": { 3503 | "lilconfig": "^2.0.5", 3504 | "yaml": "^2.1.1" 3505 | }, 3506 | "engines": { 3507 | "node": ">= 14" 3508 | }, 3509 | "funding": { 3510 | "type": "opencollective", 3511 | "url": "https://opencollective.com/postcss/" 3512 | }, 3513 | "peerDependencies": { 3514 | "postcss": ">=8.0.9", 3515 | "ts-node": ">=9.0.0" 3516 | }, 3517 | "peerDependenciesMeta": { 3518 | "postcss": { 3519 | "optional": true 3520 | }, 3521 | "ts-node": { 3522 | "optional": true 3523 | } 3524 | } 3525 | }, 3526 | "node_modules/postcss-nested": { 3527 | "version": "6.0.1", 3528 | "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", 3529 | "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", 3530 | "dependencies": { 3531 | "postcss-selector-parser": "^6.0.11" 3532 | }, 3533 | "engines": { 3534 | "node": ">=12.0" 3535 | }, 3536 | "funding": { 3537 | "type": "opencollective", 3538 | "url": "https://opencollective.com/postcss/" 3539 | }, 3540 | "peerDependencies": { 3541 | "postcss": "^8.2.14" 3542 | } 3543 | }, 3544 | "node_modules/postcss-selector-parser": { 3545 | "version": "6.0.13", 3546 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", 3547 | "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", 3548 | "dependencies": { 3549 | "cssesc": "^3.0.0", 3550 | "util-deprecate": "^1.0.2" 3551 | }, 3552 | "engines": { 3553 | "node": ">=4" 3554 | } 3555 | }, 3556 | "node_modules/postcss-value-parser": { 3557 | "version": "4.2.0", 3558 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", 3559 | "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" 3560 | }, 3561 | "node_modules/prelude-ls": { 3562 | "version": "1.2.1", 3563 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 3564 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 3565 | "engines": { 3566 | "node": ">= 0.8.0" 3567 | } 3568 | }, 3569 | "node_modules/prop-types": { 3570 | "version": "15.8.1", 3571 | "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", 3572 | "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", 3573 | "dependencies": { 3574 | "loose-envify": "^1.4.0", 3575 | "object-assign": "^4.1.1", 3576 | "react-is": "^16.13.1" 3577 | } 3578 | }, 3579 | "node_modules/proxy-from-env": { 3580 | "version": "1.1.0", 3581 | "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", 3582 | "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" 3583 | }, 3584 | "node_modules/punycode": { 3585 | "version": "2.3.0", 3586 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", 3587 | "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", 3588 | "engines": { 3589 | "node": ">=6" 3590 | } 3591 | }, 3592 | "node_modules/queue-microtask": { 3593 | "version": "1.2.3", 3594 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 3595 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 3596 | "funding": [ 3597 | { 3598 | "type": "github", 3599 | "url": "https://github.com/sponsors/feross" 3600 | }, 3601 | { 3602 | "type": "patreon", 3603 | "url": "https://www.patreon.com/feross" 3604 | }, 3605 | { 3606 | "type": "consulting", 3607 | "url": "https://feross.org/support" 3608 | } 3609 | ] 3610 | }, 3611 | "node_modules/react": { 3612 | "version": "18.2.0", 3613 | "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", 3614 | "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", 3615 | "dependencies": { 3616 | "loose-envify": "^1.1.0" 3617 | }, 3618 | "engines": { 3619 | "node": ">=0.10.0" 3620 | } 3621 | }, 3622 | "node_modules/react-dom": { 3623 | "version": "18.2.0", 3624 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", 3625 | "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", 3626 | "dependencies": { 3627 | "loose-envify": "^1.1.0", 3628 | "scheduler": "^0.23.0" 3629 | }, 3630 | "peerDependencies": { 3631 | "react": "^18.2.0" 3632 | } 3633 | }, 3634 | "node_modules/react-hot-toast": { 3635 | "version": "2.4.1", 3636 | "resolved": "https://registry.npmjs.org/react-hot-toast/-/react-hot-toast-2.4.1.tgz", 3637 | "integrity": "sha512-j8z+cQbWIM5LY37pR6uZR6D4LfseplqnuAO4co4u8917hBUvXlEqyP1ZzqVLcqoyUesZZv/ImreoCeHVDpE5pQ==", 3638 | "dependencies": { 3639 | "goober": "^2.1.10" 3640 | }, 3641 | "engines": { 3642 | "node": ">=10" 3643 | }, 3644 | "peerDependencies": { 3645 | "react": ">=16", 3646 | "react-dom": ">=16" 3647 | } 3648 | }, 3649 | "node_modules/react-is": { 3650 | "version": "16.13.1", 3651 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", 3652 | "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" 3653 | }, 3654 | "node_modules/read-cache": { 3655 | "version": "1.0.0", 3656 | "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", 3657 | "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", 3658 | "dependencies": { 3659 | "pify": "^2.3.0" 3660 | } 3661 | }, 3662 | "node_modules/readdirp": { 3663 | "version": "3.6.0", 3664 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 3665 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 3666 | "dependencies": { 3667 | "picomatch": "^2.2.1" 3668 | }, 3669 | "engines": { 3670 | "node": ">=8.10.0" 3671 | } 3672 | }, 3673 | "node_modules/regenerator-runtime": { 3674 | "version": "0.13.11", 3675 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", 3676 | "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" 3677 | }, 3678 | "node_modules/regexp.prototype.flags": { 3679 | "version": "1.5.0", 3680 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", 3681 | "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", 3682 | "dependencies": { 3683 | "call-bind": "^1.0.2", 3684 | "define-properties": "^1.2.0", 3685 | "functions-have-names": "^1.2.3" 3686 | }, 3687 | "engines": { 3688 | "node": ">= 0.4" 3689 | }, 3690 | "funding": { 3691 | "url": "https://github.com/sponsors/ljharb" 3692 | } 3693 | }, 3694 | "node_modules/resolve": { 3695 | "version": "1.22.2", 3696 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", 3697 | "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", 3698 | "dependencies": { 3699 | "is-core-module": "^2.11.0", 3700 | "path-parse": "^1.0.7", 3701 | "supports-preserve-symlinks-flag": "^1.0.0" 3702 | }, 3703 | "bin": { 3704 | "resolve": "bin/resolve" 3705 | }, 3706 | "funding": { 3707 | "url": "https://github.com/sponsors/ljharb" 3708 | } 3709 | }, 3710 | "node_modules/resolve-from": { 3711 | "version": "4.0.0", 3712 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3713 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3714 | "engines": { 3715 | "node": ">=4" 3716 | } 3717 | }, 3718 | "node_modules/resolve-pkg-maps": { 3719 | "version": "1.0.0", 3720 | "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", 3721 | "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", 3722 | "funding": { 3723 | "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" 3724 | } 3725 | }, 3726 | "node_modules/reusify": { 3727 | "version": "1.0.4", 3728 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 3729 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 3730 | "engines": { 3731 | "iojs": ">=1.0.0", 3732 | "node": ">=0.10.0" 3733 | } 3734 | }, 3735 | "node_modules/rimraf": { 3736 | "version": "3.0.2", 3737 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 3738 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 3739 | "dependencies": { 3740 | "glob": "^7.1.3" 3741 | }, 3742 | "bin": { 3743 | "rimraf": "bin.js" 3744 | }, 3745 | "funding": { 3746 | "url": "https://github.com/sponsors/isaacs" 3747 | } 3748 | }, 3749 | "node_modules/run-applescript": { 3750 | "version": "5.0.0", 3751 | "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz", 3752 | "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", 3753 | "dependencies": { 3754 | "execa": "^5.0.0" 3755 | }, 3756 | "engines": { 3757 | "node": ">=12" 3758 | }, 3759 | "funding": { 3760 | "url": "https://github.com/sponsors/sindresorhus" 3761 | } 3762 | }, 3763 | "node_modules/run-applescript/node_modules/execa": { 3764 | "version": "5.1.1", 3765 | "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", 3766 | "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", 3767 | "dependencies": { 3768 | "cross-spawn": "^7.0.3", 3769 | "get-stream": "^6.0.0", 3770 | "human-signals": "^2.1.0", 3771 | "is-stream": "^2.0.0", 3772 | "merge-stream": "^2.0.0", 3773 | "npm-run-path": "^4.0.1", 3774 | "onetime": "^5.1.2", 3775 | "signal-exit": "^3.0.3", 3776 | "strip-final-newline": "^2.0.0" 3777 | }, 3778 | "engines": { 3779 | "node": ">=10" 3780 | }, 3781 | "funding": { 3782 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 3783 | } 3784 | }, 3785 | "node_modules/run-applescript/node_modules/human-signals": { 3786 | "version": "2.1.0", 3787 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", 3788 | "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", 3789 | "engines": { 3790 | "node": ">=10.17.0" 3791 | } 3792 | }, 3793 | "node_modules/run-applescript/node_modules/is-stream": { 3794 | "version": "2.0.1", 3795 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", 3796 | "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", 3797 | "engines": { 3798 | "node": ">=8" 3799 | }, 3800 | "funding": { 3801 | "url": "https://github.com/sponsors/sindresorhus" 3802 | } 3803 | }, 3804 | "node_modules/run-applescript/node_modules/mimic-fn": { 3805 | "version": "2.1.0", 3806 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", 3807 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", 3808 | "engines": { 3809 | "node": ">=6" 3810 | } 3811 | }, 3812 | "node_modules/run-applescript/node_modules/npm-run-path": { 3813 | "version": "4.0.1", 3814 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", 3815 | "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", 3816 | "dependencies": { 3817 | "path-key": "^3.0.0" 3818 | }, 3819 | "engines": { 3820 | "node": ">=8" 3821 | } 3822 | }, 3823 | "node_modules/run-applescript/node_modules/onetime": { 3824 | "version": "5.1.2", 3825 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", 3826 | "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", 3827 | "dependencies": { 3828 | "mimic-fn": "^2.1.0" 3829 | }, 3830 | "engines": { 3831 | "node": ">=6" 3832 | }, 3833 | "funding": { 3834 | "url": "https://github.com/sponsors/sindresorhus" 3835 | } 3836 | }, 3837 | "node_modules/run-applescript/node_modules/strip-final-newline": { 3838 | "version": "2.0.0", 3839 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", 3840 | "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", 3841 | "engines": { 3842 | "node": ">=6" 3843 | } 3844 | }, 3845 | "node_modules/run-parallel": { 3846 | "version": "1.2.0", 3847 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 3848 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 3849 | "funding": [ 3850 | { 3851 | "type": "github", 3852 | "url": "https://github.com/sponsors/feross" 3853 | }, 3854 | { 3855 | "type": "patreon", 3856 | "url": "https://www.patreon.com/feross" 3857 | }, 3858 | { 3859 | "type": "consulting", 3860 | "url": "https://feross.org/support" 3861 | } 3862 | ], 3863 | "dependencies": { 3864 | "queue-microtask": "^1.2.2" 3865 | } 3866 | }, 3867 | "node_modules/safe-buffer": { 3868 | "version": "5.2.1", 3869 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 3870 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 3871 | "funding": [ 3872 | { 3873 | "type": "github", 3874 | "url": "https://github.com/sponsors/feross" 3875 | }, 3876 | { 3877 | "type": "patreon", 3878 | "url": "https://www.patreon.com/feross" 3879 | }, 3880 | { 3881 | "type": "consulting", 3882 | "url": "https://feross.org/support" 3883 | } 3884 | ] 3885 | }, 3886 | "node_modules/safe-regex-test": { 3887 | "version": "1.0.0", 3888 | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", 3889 | "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", 3890 | "dependencies": { 3891 | "call-bind": "^1.0.2", 3892 | "get-intrinsic": "^1.1.3", 3893 | "is-regex": "^1.1.4" 3894 | }, 3895 | "funding": { 3896 | "url": "https://github.com/sponsors/ljharb" 3897 | } 3898 | }, 3899 | "node_modules/saslprep": { 3900 | "version": "1.0.3", 3901 | "resolved": "https://registry.npmjs.org/saslprep/-/saslprep-1.0.3.tgz", 3902 | "integrity": "sha512-/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag==", 3903 | "optional": true, 3904 | "dependencies": { 3905 | "sparse-bitfield": "^3.0.3" 3906 | }, 3907 | "engines": { 3908 | "node": ">=6" 3909 | } 3910 | }, 3911 | "node_modules/scheduler": { 3912 | "version": "0.23.0", 3913 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", 3914 | "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", 3915 | "dependencies": { 3916 | "loose-envify": "^1.1.0" 3917 | } 3918 | }, 3919 | "node_modules/semver": { 3920 | "version": "7.5.3", 3921 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.3.tgz", 3922 | "integrity": "sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==", 3923 | "dependencies": { 3924 | "lru-cache": "^6.0.0" 3925 | }, 3926 | "bin": { 3927 | "semver": "bin/semver.js" 3928 | }, 3929 | "engines": { 3930 | "node": ">=10" 3931 | } 3932 | }, 3933 | "node_modules/shebang-command": { 3934 | "version": "2.0.0", 3935 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3936 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3937 | "dependencies": { 3938 | "shebang-regex": "^3.0.0" 3939 | }, 3940 | "engines": { 3941 | "node": ">=8" 3942 | } 3943 | }, 3944 | "node_modules/shebang-regex": { 3945 | "version": "3.0.0", 3946 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3947 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3948 | "engines": { 3949 | "node": ">=8" 3950 | } 3951 | }, 3952 | "node_modules/side-channel": { 3953 | "version": "1.0.4", 3954 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", 3955 | "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", 3956 | "dependencies": { 3957 | "call-bind": "^1.0.0", 3958 | "get-intrinsic": "^1.0.2", 3959 | "object-inspect": "^1.9.0" 3960 | }, 3961 | "funding": { 3962 | "url": "https://github.com/sponsors/ljharb" 3963 | } 3964 | }, 3965 | "node_modules/sift": { 3966 | "version": "16.0.1", 3967 | "resolved": "https://registry.npmjs.org/sift/-/sift-16.0.1.tgz", 3968 | "integrity": "sha512-Wv6BjQ5zbhW7VFefWusVP33T/EM0vYikCaQ2qR8yULbsilAT8/wQaXvuQ3ptGLpoKx+lihJE3y2UTgKDyyNHZQ==" 3969 | }, 3970 | "node_modules/signal-exit": { 3971 | "version": "3.0.7", 3972 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 3973 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" 3974 | }, 3975 | "node_modules/slash": { 3976 | "version": "3.0.0", 3977 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 3978 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 3979 | "engines": { 3980 | "node": ">=8" 3981 | } 3982 | }, 3983 | "node_modules/smart-buffer": { 3984 | "version": "4.2.0", 3985 | "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", 3986 | "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", 3987 | "engines": { 3988 | "node": ">= 6.0.0", 3989 | "npm": ">= 3.0.0" 3990 | } 3991 | }, 3992 | "node_modules/socks": { 3993 | "version": "2.7.1", 3994 | "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", 3995 | "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", 3996 | "dependencies": { 3997 | "ip": "^2.0.0", 3998 | "smart-buffer": "^4.2.0" 3999 | }, 4000 | "engines": { 4001 | "node": ">= 10.13.0", 4002 | "npm": ">= 3.0.0" 4003 | } 4004 | }, 4005 | "node_modules/source-map-js": { 4006 | "version": "1.0.2", 4007 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", 4008 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", 4009 | "engines": { 4010 | "node": ">=0.10.0" 4011 | } 4012 | }, 4013 | "node_modules/sparse-bitfield": { 4014 | "version": "3.0.3", 4015 | "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", 4016 | "integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==", 4017 | "optional": true, 4018 | "dependencies": { 4019 | "memory-pager": "^1.0.2" 4020 | } 4021 | }, 4022 | "node_modules/streamsearch": { 4023 | "version": "1.1.0", 4024 | "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", 4025 | "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", 4026 | "engines": { 4027 | "node": ">=10.0.0" 4028 | } 4029 | }, 4030 | "node_modules/string.prototype.matchall": { 4031 | "version": "4.0.8", 4032 | "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", 4033 | "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", 4034 | "dependencies": { 4035 | "call-bind": "^1.0.2", 4036 | "define-properties": "^1.1.4", 4037 | "es-abstract": "^1.20.4", 4038 | "get-intrinsic": "^1.1.3", 4039 | "has-symbols": "^1.0.3", 4040 | "internal-slot": "^1.0.3", 4041 | "regexp.prototype.flags": "^1.4.3", 4042 | "side-channel": "^1.0.4" 4043 | }, 4044 | "funding": { 4045 | "url": "https://github.com/sponsors/ljharb" 4046 | } 4047 | }, 4048 | "node_modules/string.prototype.trim": { 4049 | "version": "1.2.7", 4050 | "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", 4051 | "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", 4052 | "dependencies": { 4053 | "call-bind": "^1.0.2", 4054 | "define-properties": "^1.1.4", 4055 | "es-abstract": "^1.20.4" 4056 | }, 4057 | "engines": { 4058 | "node": ">= 0.4" 4059 | }, 4060 | "funding": { 4061 | "url": "https://github.com/sponsors/ljharb" 4062 | } 4063 | }, 4064 | "node_modules/string.prototype.trimend": { 4065 | "version": "1.0.6", 4066 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", 4067 | "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", 4068 | "dependencies": { 4069 | "call-bind": "^1.0.2", 4070 | "define-properties": "^1.1.4", 4071 | "es-abstract": "^1.20.4" 4072 | }, 4073 | "funding": { 4074 | "url": "https://github.com/sponsors/ljharb" 4075 | } 4076 | }, 4077 | "node_modules/string.prototype.trimstart": { 4078 | "version": "1.0.6", 4079 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", 4080 | "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", 4081 | "dependencies": { 4082 | "call-bind": "^1.0.2", 4083 | "define-properties": "^1.1.4", 4084 | "es-abstract": "^1.20.4" 4085 | }, 4086 | "funding": { 4087 | "url": "https://github.com/sponsors/ljharb" 4088 | } 4089 | }, 4090 | "node_modules/strip-ansi": { 4091 | "version": "6.0.1", 4092 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 4093 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 4094 | "dependencies": { 4095 | "ansi-regex": "^5.0.1" 4096 | }, 4097 | "engines": { 4098 | "node": ">=8" 4099 | } 4100 | }, 4101 | "node_modules/strip-bom": { 4102 | "version": "3.0.0", 4103 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", 4104 | "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", 4105 | "engines": { 4106 | "node": ">=4" 4107 | } 4108 | }, 4109 | "node_modules/strip-final-newline": { 4110 | "version": "3.0.0", 4111 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", 4112 | "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", 4113 | "engines": { 4114 | "node": ">=12" 4115 | }, 4116 | "funding": { 4117 | "url": "https://github.com/sponsors/sindresorhus" 4118 | } 4119 | }, 4120 | "node_modules/strip-json-comments": { 4121 | "version": "3.1.1", 4122 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 4123 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 4124 | "engines": { 4125 | "node": ">=8" 4126 | }, 4127 | "funding": { 4128 | "url": "https://github.com/sponsors/sindresorhus" 4129 | } 4130 | }, 4131 | "node_modules/styled-jsx": { 4132 | "version": "5.1.1", 4133 | "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", 4134 | "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", 4135 | "dependencies": { 4136 | "client-only": "0.0.1" 4137 | }, 4138 | "engines": { 4139 | "node": ">= 12.0.0" 4140 | }, 4141 | "peerDependencies": { 4142 | "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" 4143 | }, 4144 | "peerDependenciesMeta": { 4145 | "@babel/core": { 4146 | "optional": true 4147 | }, 4148 | "babel-plugin-macros": { 4149 | "optional": true 4150 | } 4151 | } 4152 | }, 4153 | "node_modules/sucrase": { 4154 | "version": "3.32.0", 4155 | "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.32.0.tgz", 4156 | "integrity": "sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==", 4157 | "dependencies": { 4158 | "@jridgewell/gen-mapping": "^0.3.2", 4159 | "commander": "^4.0.0", 4160 | "glob": "7.1.6", 4161 | "lines-and-columns": "^1.1.6", 4162 | "mz": "^2.7.0", 4163 | "pirates": "^4.0.1", 4164 | "ts-interface-checker": "^0.1.9" 4165 | }, 4166 | "bin": { 4167 | "sucrase": "bin/sucrase", 4168 | "sucrase-node": "bin/sucrase-node" 4169 | }, 4170 | "engines": { 4171 | "node": ">=8" 4172 | } 4173 | }, 4174 | "node_modules/sucrase/node_modules/glob": { 4175 | "version": "7.1.6", 4176 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", 4177 | "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", 4178 | "dependencies": { 4179 | "fs.realpath": "^1.0.0", 4180 | "inflight": "^1.0.4", 4181 | "inherits": "2", 4182 | "minimatch": "^3.0.4", 4183 | "once": "^1.3.0", 4184 | "path-is-absolute": "^1.0.0" 4185 | }, 4186 | "engines": { 4187 | "node": "*" 4188 | }, 4189 | "funding": { 4190 | "url": "https://github.com/sponsors/isaacs" 4191 | } 4192 | }, 4193 | "node_modules/supports-color": { 4194 | "version": "7.2.0", 4195 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 4196 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 4197 | "dependencies": { 4198 | "has-flag": "^4.0.0" 4199 | }, 4200 | "engines": { 4201 | "node": ">=8" 4202 | } 4203 | }, 4204 | "node_modules/supports-preserve-symlinks-flag": { 4205 | "version": "1.0.0", 4206 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 4207 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 4208 | "engines": { 4209 | "node": ">= 0.4" 4210 | }, 4211 | "funding": { 4212 | "url": "https://github.com/sponsors/ljharb" 4213 | } 4214 | }, 4215 | "node_modules/synckit": { 4216 | "version": "0.8.5", 4217 | "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", 4218 | "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", 4219 | "dependencies": { 4220 | "@pkgr/utils": "^2.3.1", 4221 | "tslib": "^2.5.0" 4222 | }, 4223 | "engines": { 4224 | "node": "^14.18.0 || >=16.0.0" 4225 | }, 4226 | "funding": { 4227 | "url": "https://opencollective.com/unts" 4228 | } 4229 | }, 4230 | "node_modules/tailwindcss": { 4231 | "version": "3.3.2", 4232 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.2.tgz", 4233 | "integrity": "sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==", 4234 | "dependencies": { 4235 | "@alloc/quick-lru": "^5.2.0", 4236 | "arg": "^5.0.2", 4237 | "chokidar": "^3.5.3", 4238 | "didyoumean": "^1.2.2", 4239 | "dlv": "^1.1.3", 4240 | "fast-glob": "^3.2.12", 4241 | "glob-parent": "^6.0.2", 4242 | "is-glob": "^4.0.3", 4243 | "jiti": "^1.18.2", 4244 | "lilconfig": "^2.1.0", 4245 | "micromatch": "^4.0.5", 4246 | "normalize-path": "^3.0.0", 4247 | "object-hash": "^3.0.0", 4248 | "picocolors": "^1.0.0", 4249 | "postcss": "^8.4.23", 4250 | "postcss-import": "^15.1.0", 4251 | "postcss-js": "^4.0.1", 4252 | "postcss-load-config": "^4.0.1", 4253 | "postcss-nested": "^6.0.1", 4254 | "postcss-selector-parser": "^6.0.11", 4255 | "postcss-value-parser": "^4.2.0", 4256 | "resolve": "^1.22.2", 4257 | "sucrase": "^3.32.0" 4258 | }, 4259 | "bin": { 4260 | "tailwind": "lib/cli.js", 4261 | "tailwindcss": "lib/cli.js" 4262 | }, 4263 | "engines": { 4264 | "node": ">=14.0.0" 4265 | } 4266 | }, 4267 | "node_modules/tapable": { 4268 | "version": "2.2.1", 4269 | "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", 4270 | "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", 4271 | "engines": { 4272 | "node": ">=6" 4273 | } 4274 | }, 4275 | "node_modules/text-table": { 4276 | "version": "0.2.0", 4277 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 4278 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" 4279 | }, 4280 | "node_modules/thenify": { 4281 | "version": "3.3.1", 4282 | "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", 4283 | "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", 4284 | "dependencies": { 4285 | "any-promise": "^1.0.0" 4286 | } 4287 | }, 4288 | "node_modules/thenify-all": { 4289 | "version": "1.6.0", 4290 | "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", 4291 | "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", 4292 | "dependencies": { 4293 | "thenify": ">= 3.1.0 < 4" 4294 | }, 4295 | "engines": { 4296 | "node": ">=0.8" 4297 | } 4298 | }, 4299 | "node_modules/titleize": { 4300 | "version": "3.0.0", 4301 | "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", 4302 | "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==", 4303 | "engines": { 4304 | "node": ">=12" 4305 | }, 4306 | "funding": { 4307 | "url": "https://github.com/sponsors/sindresorhus" 4308 | } 4309 | }, 4310 | "node_modules/to-regex-range": { 4311 | "version": "5.0.1", 4312 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 4313 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 4314 | "dependencies": { 4315 | "is-number": "^7.0.0" 4316 | }, 4317 | "engines": { 4318 | "node": ">=8.0" 4319 | } 4320 | }, 4321 | "node_modules/tr46": { 4322 | "version": "3.0.0", 4323 | "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", 4324 | "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", 4325 | "dependencies": { 4326 | "punycode": "^2.1.1" 4327 | }, 4328 | "engines": { 4329 | "node": ">=12" 4330 | } 4331 | }, 4332 | "node_modules/ts-interface-checker": { 4333 | "version": "0.1.13", 4334 | "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", 4335 | "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" 4336 | }, 4337 | "node_modules/tsconfig-paths": { 4338 | "version": "3.14.2", 4339 | "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", 4340 | "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", 4341 | "dependencies": { 4342 | "@types/json5": "^0.0.29", 4343 | "json5": "^1.0.2", 4344 | "minimist": "^1.2.6", 4345 | "strip-bom": "^3.0.0" 4346 | } 4347 | }, 4348 | "node_modules/tslib": { 4349 | "version": "2.6.0", 4350 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.0.tgz", 4351 | "integrity": "sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==" 4352 | }, 4353 | "node_modules/tsutils": { 4354 | "version": "3.21.0", 4355 | "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", 4356 | "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", 4357 | "dependencies": { 4358 | "tslib": "^1.8.1" 4359 | }, 4360 | "engines": { 4361 | "node": ">= 6" 4362 | }, 4363 | "peerDependencies": { 4364 | "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" 4365 | } 4366 | }, 4367 | "node_modules/tsutils/node_modules/tslib": { 4368 | "version": "1.14.1", 4369 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", 4370 | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" 4371 | }, 4372 | "node_modules/type-check": { 4373 | "version": "0.4.0", 4374 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 4375 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 4376 | "dependencies": { 4377 | "prelude-ls": "^1.2.1" 4378 | }, 4379 | "engines": { 4380 | "node": ">= 0.8.0" 4381 | } 4382 | }, 4383 | "node_modules/type-fest": { 4384 | "version": "0.20.2", 4385 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 4386 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 4387 | "engines": { 4388 | "node": ">=10" 4389 | }, 4390 | "funding": { 4391 | "url": "https://github.com/sponsors/sindresorhus" 4392 | } 4393 | }, 4394 | "node_modules/typed-array-length": { 4395 | "version": "1.0.4", 4396 | "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", 4397 | "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", 4398 | "dependencies": { 4399 | "call-bind": "^1.0.2", 4400 | "for-each": "^0.3.3", 4401 | "is-typed-array": "^1.1.9" 4402 | }, 4403 | "funding": { 4404 | "url": "https://github.com/sponsors/ljharb" 4405 | } 4406 | }, 4407 | "node_modules/typescript": { 4408 | "version": "5.1.6", 4409 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz", 4410 | "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==", 4411 | "bin": { 4412 | "tsc": "bin/tsc", 4413 | "tsserver": "bin/tsserver" 4414 | }, 4415 | "engines": { 4416 | "node": ">=14.17" 4417 | } 4418 | }, 4419 | "node_modules/unbox-primitive": { 4420 | "version": "1.0.2", 4421 | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", 4422 | "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", 4423 | "dependencies": { 4424 | "call-bind": "^1.0.2", 4425 | "has-bigints": "^1.0.2", 4426 | "has-symbols": "^1.0.3", 4427 | "which-boxed-primitive": "^1.0.2" 4428 | }, 4429 | "funding": { 4430 | "url": "https://github.com/sponsors/ljharb" 4431 | } 4432 | }, 4433 | "node_modules/untildify": { 4434 | "version": "4.0.0", 4435 | "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", 4436 | "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", 4437 | "engines": { 4438 | "node": ">=8" 4439 | } 4440 | }, 4441 | "node_modules/update-browserslist-db": { 4442 | "version": "1.0.11", 4443 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", 4444 | "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", 4445 | "funding": [ 4446 | { 4447 | "type": "opencollective", 4448 | "url": "https://opencollective.com/browserslist" 4449 | }, 4450 | { 4451 | "type": "tidelift", 4452 | "url": "https://tidelift.com/funding/github/npm/browserslist" 4453 | }, 4454 | { 4455 | "type": "github", 4456 | "url": "https://github.com/sponsors/ai" 4457 | } 4458 | ], 4459 | "dependencies": { 4460 | "escalade": "^3.1.1", 4461 | "picocolors": "^1.0.0" 4462 | }, 4463 | "bin": { 4464 | "update-browserslist-db": "cli.js" 4465 | }, 4466 | "peerDependencies": { 4467 | "browserslist": ">= 4.21.0" 4468 | } 4469 | }, 4470 | "node_modules/uri-js": { 4471 | "version": "4.4.1", 4472 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 4473 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 4474 | "dependencies": { 4475 | "punycode": "^2.1.0" 4476 | } 4477 | }, 4478 | "node_modules/util-deprecate": { 4479 | "version": "1.0.2", 4480 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 4481 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" 4482 | }, 4483 | "node_modules/watchpack": { 4484 | "version": "2.4.0", 4485 | "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", 4486 | "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", 4487 | "dependencies": { 4488 | "glob-to-regexp": "^0.4.1", 4489 | "graceful-fs": "^4.1.2" 4490 | }, 4491 | "engines": { 4492 | "node": ">=10.13.0" 4493 | } 4494 | }, 4495 | "node_modules/webidl-conversions": { 4496 | "version": "7.0.0", 4497 | "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", 4498 | "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", 4499 | "engines": { 4500 | "node": ">=12" 4501 | } 4502 | }, 4503 | "node_modules/whatwg-url": { 4504 | "version": "11.0.0", 4505 | "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", 4506 | "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", 4507 | "dependencies": { 4508 | "tr46": "^3.0.0", 4509 | "webidl-conversions": "^7.0.0" 4510 | }, 4511 | "engines": { 4512 | "node": ">=12" 4513 | } 4514 | }, 4515 | "node_modules/which": { 4516 | "version": "2.0.2", 4517 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 4518 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 4519 | "dependencies": { 4520 | "isexe": "^2.0.0" 4521 | }, 4522 | "bin": { 4523 | "node-which": "bin/node-which" 4524 | }, 4525 | "engines": { 4526 | "node": ">= 8" 4527 | } 4528 | }, 4529 | "node_modules/which-boxed-primitive": { 4530 | "version": "1.0.2", 4531 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", 4532 | "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", 4533 | "dependencies": { 4534 | "is-bigint": "^1.0.1", 4535 | "is-boolean-object": "^1.1.0", 4536 | "is-number-object": "^1.0.4", 4537 | "is-string": "^1.0.5", 4538 | "is-symbol": "^1.0.3" 4539 | }, 4540 | "funding": { 4541 | "url": "https://github.com/sponsors/ljharb" 4542 | } 4543 | }, 4544 | "node_modules/which-typed-array": { 4545 | "version": "1.1.9", 4546 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", 4547 | "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", 4548 | "dependencies": { 4549 | "available-typed-arrays": "^1.0.5", 4550 | "call-bind": "^1.0.2", 4551 | "for-each": "^0.3.3", 4552 | "gopd": "^1.0.1", 4553 | "has-tostringtag": "^1.0.0", 4554 | "is-typed-array": "^1.1.10" 4555 | }, 4556 | "engines": { 4557 | "node": ">= 0.4" 4558 | }, 4559 | "funding": { 4560 | "url": "https://github.com/sponsors/ljharb" 4561 | } 4562 | }, 4563 | "node_modules/wrappy": { 4564 | "version": "1.0.2", 4565 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 4566 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" 4567 | }, 4568 | "node_modules/yallist": { 4569 | "version": "4.0.0", 4570 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 4571 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" 4572 | }, 4573 | "node_modules/yaml": { 4574 | "version": "2.3.1", 4575 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", 4576 | "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", 4577 | "engines": { 4578 | "node": ">= 14" 4579 | } 4580 | }, 4581 | "node_modules/yocto-queue": { 4582 | "version": "0.1.0", 4583 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 4584 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 4585 | "engines": { 4586 | "node": ">=10" 4587 | }, 4588 | "funding": { 4589 | "url": "https://github.com/sponsors/sindresorhus" 4590 | } 4591 | }, 4592 | "node_modules/zod": { 4593 | "version": "3.21.4", 4594 | "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", 4595 | "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==", 4596 | "funding": { 4597 | "url": "https://github.com/sponsors/colinhacks" 4598 | } 4599 | } 4600 | } 4601 | } 4602 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "auth-nextjs-youtube", 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 | "@types/node": "20.3.2", 13 | "@types/react": "18.2.14", 14 | "@types/react-dom": "18.2.6", 15 | "autoprefixer": "10.4.14", 16 | "axios": "^1.4.0", 17 | "bcryptjs": "^2.4.3", 18 | "eslint": "8.43.0", 19 | "eslint-config-next": "13.4.7", 20 | "jsonwebtoken": "^9.0.0", 21 | "mongoose": "^7.3.1", 22 | "next": "13.4.7", 23 | "nodemailer": "^6.9.3", 24 | "postcss": "8.4.24", 25 | "react": "18.2.0", 26 | "react-dom": "18.2.0", 27 | "react-hot-toast": "^2.4.1", 28 | "tailwindcss": "3.3.2", 29 | "typescript": "5.1.6" 30 | }, 31 | "devDependencies": { 32 | "@types/bcryptjs": "^2.4.2", 33 | "@types/jsonwebtoken": "^9.0.2", 34 | "@types/nodemailer": "^6.4.8" 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample.env: -------------------------------------------------------------------------------- 1 | MONGO_URI=mongodb+srv://hitesh:subscribe@cluster0.nwxsjhi.mongodb.net/ 2 | TOKEN_SECRET=nextjsyoutube 3 | DOMAIN=http://localhost:3000 -------------------------------------------------------------------------------- /src/app/api/users/login/route.ts: -------------------------------------------------------------------------------- 1 | import {connect} from "@/dbConfig/dbConfig"; 2 | import User from "@/models/userModel"; 3 | import { NextRequest, NextResponse } from "next/server"; 4 | import bcryptjs from "bcryptjs"; 5 | import jwt from "jsonwebtoken"; 6 | 7 | connect() 8 | 9 | export async function POST(request: NextRequest){ 10 | try { 11 | 12 | const reqBody = await request.json() 13 | const {email, password} = reqBody; 14 | console.log(reqBody); 15 | 16 | //check if user exists 17 | const user = await User.findOne({email}) 18 | if(!user){ 19 | return NextResponse.json({error: "User does not exist"}, {status: 400}) 20 | } 21 | console.log("user exists"); 22 | 23 | 24 | //check if password is correct 25 | const validPassword = await bcryptjs.compare(password, user.password) 26 | if(!validPassword){ 27 | return NextResponse.json({error: "Invalid password"}, {status: 400}) 28 | } 29 | console.log(user); 30 | 31 | //create token data 32 | const tokenData = { 33 | id: user._id, 34 | username: user.username, 35 | email: user.email 36 | } 37 | //create token 38 | const token = await jwt.sign(tokenData, process.env.TOKEN_SECRET!, {expiresIn: "1d"}) 39 | 40 | const response = NextResponse.json({ 41 | message: "Login successful", 42 | success: true, 43 | }) 44 | response.cookies.set("token", token, { 45 | httpOnly: true, 46 | 47 | }) 48 | return response; 49 | 50 | } catch (error: any) { 51 | return NextResponse.json({error: error.message}, {status: 500}) 52 | } 53 | } -------------------------------------------------------------------------------- /src/app/api/users/logout/route.ts: -------------------------------------------------------------------------------- 1 | import { NextResponse } from "next/server"; 2 | 3 | 4 | export async function GET() { 5 | try { 6 | const response = NextResponse.json( 7 | { 8 | message: "Logout successful", 9 | success: true, 10 | } 11 | ) 12 | response.cookies.set("token", "", 13 | { httpOnly: true, expires: new Date(0) 14 | }); 15 | return response; 16 | } catch (error: any) { 17 | return NextResponse.json({ error: error.message }, { status: 500 }); 18 | } 19 | 20 | } 21 | 22 | -------------------------------------------------------------------------------- /src/app/api/users/me/route.ts: -------------------------------------------------------------------------------- 1 | import { getDataFromToken } from "@/helpers/getDataFromToken"; 2 | 3 | import { NextRequest, NextResponse } from "next/server"; 4 | import User from "@/models/userModel"; 5 | import { connect } from "@/dbConfig/dbConfig"; 6 | 7 | connect(); 8 | 9 | export async function GET(request:NextRequest){ 10 | 11 | try { 12 | const userId = await getDataFromToken(request); 13 | const user = await User.findOne({_id: userId}).select("-password"); 14 | return NextResponse.json({ 15 | mesaaage: "User found", 16 | data: user 17 | }) 18 | } catch (error:any) { 19 | return NextResponse.json({error: error.message}, {status: 400}); 20 | } 21 | 22 | } -------------------------------------------------------------------------------- /src/app/api/users/signup/route.ts: -------------------------------------------------------------------------------- 1 | import {connect} from "@/dbConfig/dbConfig"; 2 | import User from "@/models/userModel"; 3 | import { NextRequest, NextResponse } from "next/server"; 4 | import bcryptjs from "bcryptjs"; 5 | import { sendEmail } from "@/helpers/mailer"; 6 | 7 | 8 | connect() 9 | 10 | 11 | export async function POST(request: NextRequest){ 12 | try { 13 | const reqBody = await request.json() 14 | const {username, email, password} = reqBody 15 | 16 | console.log(reqBody); 17 | 18 | //check if user already exists 19 | const user = await User.findOne({email}) 20 | 21 | if(user){ 22 | return NextResponse.json({error: "User already exists"}, {status: 400}) 23 | } 24 | 25 | //hash password 26 | const salt = await bcryptjs.genSalt(10) 27 | const hashedPassword = await bcryptjs.hash(password, salt) 28 | 29 | const newUser = new User({ 30 | username, 31 | email, 32 | password: hashedPassword 33 | }) 34 | 35 | const savedUser = await newUser.save() 36 | console.log(savedUser); 37 | 38 | //send verification email 39 | 40 | await sendEmail({email, emailType: "VERIFY", userId: savedUser._id}) 41 | 42 | return NextResponse.json({ 43 | message: "User created successfully", 44 | success: true, 45 | savedUser 46 | }) 47 | 48 | 49 | 50 | 51 | } catch (error: any) { 52 | return NextResponse.json({error: error.message}, {status: 500}) 53 | 54 | } 55 | } -------------------------------------------------------------------------------- /src/app/api/users/verifyemail/route.ts: -------------------------------------------------------------------------------- 1 | import {connect} from "@/dbConfig/dbConfig"; 2 | import { NextRequest, NextResponse } from "next/server"; 3 | import User from "@/models/userModel"; 4 | 5 | 6 | 7 | connect() 8 | 9 | 10 | export async function POST(request: NextRequest){ 11 | 12 | try { 13 | const reqBody = await request.json() 14 | const {token} = reqBody 15 | console.log(token); 16 | 17 | const user = await User.findOne({verifyToken: token, verifyTokenExpiry: {$gt: Date.now()}}); 18 | 19 | if (!user) { 20 | return NextResponse.json({error: "Invalid token"}, {status: 400}) 21 | } 22 | console.log(user); 23 | 24 | user.isVerfied = true; 25 | user.verifyToken = undefined; 26 | user.verifyTokenExpiry = undefined; 27 | await user.save(); 28 | 29 | return NextResponse.json({ 30 | message: "Email verified successfully", 31 | success: true 32 | }) 33 | 34 | 35 | } catch (error:any) { 36 | return NextResponse.json({error: error.message}, {status: 500}) 37 | } 38 | 39 | } -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/nextjs-fullstack-auth/9f2cd9fea4569f91344038f52ece1f286567f3a5/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | :root { 6 | --foreground-rgb: 0, 0, 0; 7 | --background-start-rgb: 214, 219, 220; 8 | --background-end-rgb: 255, 255, 255; 9 | } 10 | 11 | @media (prefers-color-scheme: dark) { 12 | :root { 13 | --foreground-rgb: 255, 255, 255; 14 | --background-start-rgb: 0, 0, 0; 15 | --background-end-rgb: 0, 0, 0; 16 | } 17 | } 18 | 19 | body { 20 | color: rgb(var(--foreground-rgb)); 21 | background: linear-gradient( 22 | to bottom, 23 | transparent, 24 | rgb(var(--background-end-rgb)) 25 | ) 26 | rgb(var(--background-start-rgb)); 27 | } 28 | -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- 1 | import './globals.css' 2 | import { Inter } from 'next/font/google' 3 | 4 | const inter = Inter({ subsets: ['latin'] }) 5 | 6 | export const metadata = { 7 | title: 'Create Next App', 8 | description: 'Generated by create next app', 9 | } 10 | 11 | export default function RootLayout({ 12 | children, 13 | }: { 14 | children: React.ReactNode 15 | }) { 16 | return ( 17 | 18 | 19 | {children} 20 | 21 | 22 | ) 23 | } 24 | -------------------------------------------------------------------------------- /src/app/login/page.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | import Link from "next/link"; 3 | import React, {useEffect} from "react"; 4 | import {useRouter} from "next/navigation"; 5 | import axios from "axios"; 6 | import { toast } from "react-hot-toast"; 7 | 8 | 9 | 10 | 11 | 12 | export default function LoginPage() { 13 | const router = useRouter(); 14 | const [user, setUser] = React.useState({ 15 | email: "", 16 | password: "", 17 | 18 | }) 19 | const [buttonDisabled, setButtonDisabled] = React.useState(false); 20 | const [loading, setLoading] = React.useState(false); 21 | 22 | 23 | const onLogin = async () => { 24 | try { 25 | setLoading(true); 26 | const response = await axios.post("/api/users/login", user); 27 | console.log("Login success", response.data); 28 | toast.success("Login success"); 29 | router.push("/profile"); 30 | } catch (error:any) { 31 | console.log("Login failed", error.message); 32 | toast.error(error.message); 33 | } finally{ 34 | setLoading(false); 35 | } 36 | } 37 | 38 | useEffect(() => { 39 | if(user.email.length > 0 && user.password.length > 0) { 40 | setButtonDisabled(false); 41 | } else{ 42 | setButtonDisabled(true); 43 | } 44 | }, [user]); 45 | 46 | return ( 47 |
48 |

{loading ? "Processing" : "Login"}

49 |
50 | 51 | 52 | setUser({...user, email: e.target.value})} 58 | placeholder="email" 59 | /> 60 | 61 | setUser({...user, password: e.target.value})} 67 | placeholder="password" 68 | /> 69 | 72 | Visit Signup page 73 |
74 | ) 75 | 76 | } -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- 1 | import Image from 'next/image' 2 | 3 | export default function Home() { 4 | return ( 5 |
6 |
7 |

8 | Get started by editing  9 | src/app/page.tsx 10 |

11 |
12 | 18 | By{' '} 19 | Vercel Logo 27 | 28 |
29 |
30 | 31 |
32 | Next.js Logo 40 |
41 | 42 |
43 | 49 |

50 | Docs{' '} 51 | 52 | -> 53 | 54 |

55 |

56 | Find in-depth information about Next.js features and API. 57 |

58 |
59 | 60 | 66 |

67 | Learn{' '} 68 | 69 | -> 70 | 71 |

72 |

73 | Learn about Next.js in an interactive course with quizzes! 74 |

75 |
76 | 77 | 83 |

84 | Templates{' '} 85 | 86 | -> 87 | 88 |

89 |

90 | Explore the Next.js 13 playground. 91 |

92 |
93 | 94 | 100 |

101 | Deploy{' '} 102 | 103 | -> 104 | 105 |

106 |

107 | Instantly deploy your Next.js site to a shareable URL with Vercel. 108 |

109 |
110 |
111 |
112 | ) 113 | } 114 | -------------------------------------------------------------------------------- /src/app/profile/[id]/page.tsx: -------------------------------------------------------------------------------- 1 | export default function UserProfile({params}: any) { 2 | return ( 3 |
4 |

Profile

5 |
6 |

Profile page 7 | {params.id} 8 |

9 | 10 |
11 | ) 12 | } -------------------------------------------------------------------------------- /src/app/profile/page.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | import axios from "axios"; 3 | import Link from "next/link"; 4 | import React, {useState} from "react"; 5 | import {toast} from "react-hot-toast"; 6 | import {useRouter} from "next/navigation"; 7 | 8 | 9 | export default function ProfilePage() { 10 | const router = useRouter() 11 | const [data, setData] = useState("nothing") 12 | const logout = async () => { 13 | try { 14 | await axios.get('/api/users/logout') 15 | toast.success('Logout successful') 16 | router.push('/login') 17 | } catch (error:any) { 18 | console.log(error.message); 19 | toast.error(error.message) 20 | } 21 | } 22 | 23 | const getUserDetails = async () => { 24 | const res = await axios.get('/api/users/me') 25 | console.log(res.data); 26 | setData(res.data.data._id) 27 | } 28 | 29 | return ( 30 |
31 |

Profile

32 |
33 |

Profile page

34 |

{data === 'nothing' ? "Nothing" : {data} 35 | }

36 |
37 | 41 | 42 | 46 | 47 | 48 |
49 | ) 50 | } -------------------------------------------------------------------------------- /src/app/signup/page.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | import Link from "next/link"; 3 | import React, { useEffect } from "react"; 4 | import {useRouter} from "next/navigation"; 5 | import axios from "axios"; 6 | import { toast } from "react-hot-toast"; 7 | 8 | 9 | 10 | 11 | export default function SignupPage() { 12 | const router = useRouter(); 13 | const [user, setUser] = React.useState({ 14 | email: "", 15 | password: "", 16 | username: "", 17 | }) 18 | const [buttonDisabled, setButtonDisabled] = React.useState(false); 19 | const [loading, setLoading] = React.useState(false); 20 | 21 | const onSignup = async () => { 22 | try { 23 | setLoading(true); 24 | const response = await axios.post("/api/users/signup", user); 25 | console.log("Signup success", response.data); 26 | router.push("/login"); 27 | 28 | } catch (error:any) { 29 | console.log("Signup failed", error.message); 30 | 31 | toast.error(error.message); 32 | }finally { 33 | setLoading(false); 34 | } 35 | } 36 | 37 | useEffect(() => { 38 | if(user.email.length > 0 && user.password.length > 0 && user.username.length > 0) { 39 | setButtonDisabled(false); 40 | } else { 41 | setButtonDisabled(true); 42 | } 43 | }, [user]); 44 | 45 | 46 | return ( 47 |
48 |

{loading ? "Processing" : "Signup"}

49 |
50 | 51 | setUser({...user, username: e.target.value})} 57 | placeholder="username" 58 | /> 59 | 60 | setUser({...user, email: e.target.value})} 66 | placeholder="email" 67 | /> 68 | 69 | setUser({...user, password: e.target.value})} 75 | placeholder="password" 76 | /> 77 | 80 | Visit login page 81 |
82 | ) 83 | 84 | } -------------------------------------------------------------------------------- /src/app/verifyemail/page.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | 3 | import axios from "axios"; 4 | import Link from "next/link"; 5 | import React, { useEffect, useState } from "react"; 6 | 7 | 8 | export default function VerifyEmailPage() { 9 | 10 | const [token, setToken] = useState(""); 11 | const [verified, setVerified] = useState(false); 12 | const [error, setError] = useState(false); 13 | 14 | const verifyUserEmail = async () => { 15 | try { 16 | await axios.post('/api/users/verifyemail', {token}) 17 | setVerified(true); 18 | } catch (error:any) { 19 | setError(true); 20 | console.log(error.reponse.data); 21 | 22 | } 23 | 24 | } 25 | 26 | useEffect(() => { 27 | const urlToken = window.location.search.split("=")[1]; 28 | setToken(urlToken || ""); 29 | }, []); 30 | 31 | 32 | useEffect(() => { 33 | if(token.length > 0) { 34 | verifyUserEmail(); 35 | } 36 | }, [token]); 37 | 38 | return( 39 |
40 | 41 |

Verify Email

42 |

{token ? `${token}` : "no token"}

43 | 44 | {verified && ( 45 |
46 |

Email Verified

47 | 48 | Login 49 | 50 |
51 | )} 52 | {error && ( 53 |
54 |

Error

55 | 56 |
57 | )} 58 |
59 | ) 60 | 61 | } -------------------------------------------------------------------------------- /src/dbConfig/dbConfig.ts: -------------------------------------------------------------------------------- 1 | import mongoose from 'mongoose'; 2 | 3 | export async function connect() { 4 | try { 5 | mongoose.connect(process.env.MONGO_URI!); 6 | const connection = mongoose.connection; 7 | 8 | connection.on('connected', () => { 9 | console.log('MongoDB connected successfully'); 10 | }) 11 | 12 | connection.on('error', (err) => { 13 | console.log('MongoDB connection error. Please make sure MongoDB is running. ' + err); 14 | process.exit(); 15 | }) 16 | 17 | } catch (error) { 18 | console.log('Something goes wrong!'); 19 | console.log(error); 20 | 21 | } 22 | 23 | 24 | } -------------------------------------------------------------------------------- /src/helpers/getDataFromToken.ts: -------------------------------------------------------------------------------- 1 | import { NextRequest } from "next/server"; 2 | import jwt from "jsonwebtoken"; 3 | 4 | export const getDataFromToken = (request: NextRequest) => { 5 | try { 6 | const token = request.cookies.get("token")?.value || ''; 7 | const decodedToken:any = jwt.verify(token, process.env.TOKEN_SECRET!); 8 | return decodedToken.id; 9 | } catch (error: any) { 10 | throw new Error(error.message); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /src/helpers/mailer.ts: -------------------------------------------------------------------------------- 1 | import nodemailer from 'nodemailer'; 2 | import User from "@/models/userModel"; 3 | import bcryptjs from 'bcryptjs'; 4 | 5 | 6 | export const sendEmail = async({email, emailType, userId}:any) => { 7 | try { 8 | // create a hased token 9 | const hashedToken = await bcryptjs.hash(userId.toString(), 10) 10 | 11 | if (emailType === "VERIFY") { 12 | await User.findByIdAndUpdate(userId, 13 | {verifyToken: hashedToken, verifyTokenExpiry: Date.now() + 3600000}) 14 | } else if (emailType === "RESET"){ 15 | await User.findByIdAndUpdate(userId, 16 | {forgotPasswordToken: hashedToken, forgotPasswordTokenExpiry: Date.now() + 3600000}) 17 | } 18 | 19 | var transport = nodemailer.createTransport({ 20 | host: "sandbox.smtp.mailtrap.io", 21 | port: 2525, 22 | auth: { 23 | user: "3fd364695517df", 24 | pass: "7383d58fd399cf" 25 | //TODO: add these credentials to .env file 26 | } 27 | }); 28 | 29 | 30 | const mailOptions = { 31 | from: 'hitesh@gmail.com', 32 | to: email, 33 | subject: emailType === "VERIFY" ? "Verify your email" : "Reset your password", 34 | html: `

Click here to ${emailType === "VERIFY" ? "verify your email" : "reset your password"} 35 | or copy and paste the link below in your browser.
${process.env.DOMAIN}/verifyemail?token=${hashedToken} 36 |

` 37 | } 38 | 39 | const mailresponse = await transport.sendMail 40 | (mailOptions); 41 | return mailresponse; 42 | 43 | } catch (error:any) { 44 | throw new Error(error.message); 45 | } 46 | } -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- 1 | import { NextResponse } from 'next/server' 2 | import type { NextRequest } from 'next/server' 3 | 4 | 5 | export function middleware(request: NextRequest) { 6 | const path = request.nextUrl.pathname 7 | 8 | const isPublicPath = path === '/login' || path === '/signup' || path === '/verifyemail' 9 | 10 | const token = request.cookies.get('token')?.value || '' 11 | 12 | if(isPublicPath && token) { 13 | return NextResponse.redirect(new URL('/', request.nextUrl)) 14 | } 15 | 16 | if (!isPublicPath && !token) { 17 | return NextResponse.redirect(new URL('/login', request.nextUrl)) 18 | } 19 | 20 | } 21 | 22 | 23 | // See "Matching Paths" below to learn more 24 | export const config = { 25 | matcher: [ 26 | '/', 27 | '/profile', 28 | '/login', 29 | '/signup', 30 | '/verifyemail' 31 | ] 32 | } -------------------------------------------------------------------------------- /src/models/userModel.js: -------------------------------------------------------------------------------- 1 | import mongoose from "mongoose"; 2 | 3 | const userSchema = new mongoose.Schema({ 4 | username: { 5 | type: String, 6 | required: [true, "Please provide a username"], 7 | unique: true, 8 | }, 9 | email: { 10 | type: String, 11 | required: [true, "Please provide a email"], 12 | unique: true, 13 | }, 14 | password: { 15 | type: String, 16 | required: [true, "Please provide a password"], 17 | }, 18 | isVerfied: { 19 | type: Boolean, 20 | default: false, 21 | }, 22 | isAdmin: { 23 | type: Boolean, 24 | default: false, 25 | }, 26 | forgotPasswordToken: String, 27 | forgotPasswordTokenExpiry: Date, 28 | verifyToken: String, 29 | verifyTokenExpiry: Date, 30 | }) 31 | 32 | const User = mongoose.models.users || mongoose.model("users", userSchema); 33 | 34 | export default User; -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: [ 4 | './src/pages/**/*.{js,ts,jsx,tsx,mdx}', 5 | './src/components/**/*.{js,ts,jsx,tsx,mdx}', 6 | './src/app/**/*.{js,ts,jsx,tsx,mdx}', 7 | ], 8 | theme: { 9 | extend: { 10 | backgroundImage: { 11 | 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', 12 | 'gradient-conic': 13 | 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', 14 | }, 15 | }, 16 | }, 17 | plugins: [], 18 | } 19 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 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 | --------------------------------------------------------------------------------