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