diff --git a/client/package-lock.json b/client/package-lock.json index 1267baa..f0d25db 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -10,6 +10,7 @@ "dependencies": { "@canvasjs/react-charts": "^1.0.2", "axios": "^1.6.8", + "html2canvas": "^1.4.1", "font-awesome": "^4.7.0", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -1813,6 +1814,14 @@ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, + "node_modules/base64-arraybuffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz", + "integrity": "sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==", + "engines": { + "node": ">= 0.6.0" + } + }, "node_modules/big.js": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", @@ -2088,6 +2097,14 @@ "node": ">= 8" } }, + "node_modules/css-line-break": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-line-break/-/css-line-break-2.1.0.tgz", + "integrity": "sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==", + "dependencies": { + "utrie": "^1.0.2" + } + }, "node_modules/css-loader": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-7.1.1.tgz", @@ -3313,6 +3330,18 @@ "node": ">= 0.4" } }, + "node_modules/html2canvas": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/html2canvas/-/html2canvas-1.4.1.tgz", + "integrity": "sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==", + "dependencies": { + "css-line-break": "^2.1.0", + "text-segmentation": "^1.0.3" + }, + "engines": { + "node": ">=8.0.0" + } + }, "node_modules/icss-utils": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", @@ -5627,6 +5656,14 @@ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, + "node_modules/text-segmentation": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/text-segmentation/-/text-segmentation-1.0.3.tgz", + "integrity": "sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==", + "dependencies": { + "utrie": "^1.0.2" + } + }, "node_modules/text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", @@ -5839,6 +5876,14 @@ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" }, + "node_modules/utrie": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/utrie/-/utrie-1.0.2.tgz", + "integrity": "sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==", + "dependencies": { + "base64-arraybuffer": "^1.0.2" + } + }, "node_modules/vite": { "version": "5.2.10", "resolved": "https://registry.npmjs.org/vite/-/vite-5.2.10.tgz", diff --git a/client/package.json b/client/package.json index 92b1c2b..8717b85 100644 --- a/client/package.json +++ b/client/package.json @@ -14,6 +14,7 @@ "@canvasjs/react-charts": "^1.0.2", "aos": "^2.3.4", "axios": "^1.6.8", + "html2canvas": "^1.4.1", "font-awesome": "^4.7.0", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/client/src/components/HouseholdResult.jsx b/client/src/components/HouseholdResult.jsx index 2076002..4de5b9f 100644 --- a/client/src/components/HouseholdResult.jsx +++ b/client/src/components/HouseholdResult.jsx @@ -1,7 +1,39 @@ import React from 'react'; import DoughnutChart from './DoughnutChart'; +import html2canvas from 'html2canvas'; + const HouseholdResult = ({ totalCarbonFootprint, contributions, Recommendation }) => { + const ToCaptureRef = React.useRef(); + + function captureScreenshot() { + var canvasPromise = html2canvas(ToCaptureRef.current, { + useCORS: true, + width: document.documentElement.scrollWidth, // Full page width + height: document.documentElement.scrollHeight // Full page height + }); + canvasPromise.then((canvas)=> { + var dataURL = canvas.toDataURL("image/png"); + // Create an image element from the data URL + var img = new Image(); + img.src = dataURL; + img.download = dataURL; + // Create a link element + var a = document.createElement("a"); + a.innerHTML = "DOWNLOAD"; + a.target = "_blank"; + // Set the href of the link to the data URL of the image + a.href = img.src; + // Set the download attribute of the link + a.download = img.download; + // Append the link to the page + document.body.appendChild(a); + // Click the link to trigger the download + a.click(); + }); + + } + function formatRecommendations(data) { return data .replace(/## (.*?):/g, '

$1

') @@ -15,7 +47,7 @@ const HouseholdResult = ({ totalCarbonFootprint, contributions, Recommendation } const formattedRecommendations = formatRecommendations(Recommendation); return ( -
+
{totalCarbonFootprint !== null && (

Total Carbon Footprint

@@ -23,6 +55,12 @@ const HouseholdResult = ({ totalCarbonFootprint, contributions, Recommendation } {Math.round(totalCarbonFootprint * 100) / 100} KgCO2

+
)} {/* Render Doughnut Chart */} diff --git a/package-lock.json b/package-lock.json index 2c3367e..d7c23a0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,41957 +1,40149 @@ -{ -<<<<<<< HEAD -======= -<<<<<<< HEAD ->>>>>>> bf1c289df12cc931efc536050a6a1c00970ac373 - - "name": "server", - - "version": "1.0.0", - - "lockfileVersion": 3, - - "requires": true, - - "packages": { - - - "": { - - - - "name": "server", - - - - "version": "1.0.0", - - - - "license": "ISC", - - - - "dependencies": { - - - - - "@google/generative-ai": "^0.12.0", - - - - - "@heroicons/react": "^1.0.6", - - - - - "axios": "^1.6.8", - - - - - "bcrypt": "^5.1.1", - - - - - "body-parser": "^1.20.2", - - - - - "cookie-parser": "^1.4.6", - - - - - "cors": "^2.8.5", - - - - - "dotenv": "^16.4.5", - - - - - "express": "^4.19.2", - - - - - "express-session": "^1.18.0", - - - - - "memorystore": "^1.6.7", - - - - - "nodemailer": "^6.9.13", - - - - - "passport": "^0.7.0", - - - - - "passport-local": "^1.0.0", - - - - - "pg": "^8.11.5", - - - - - "react-hook-form": "^7.51.5", - - - - - "react-router-dom": "^6.23.0" - - - - } - - - }, - - - "node_modules/@google/generative-ai": { - - - - "version": "0.12.0", - - - - "resolved": "https://registry.npmjs.org/@google/generative-ai/-/generative-ai-0.12.0.tgz", - - - - "integrity": "sha512-krWjurjEUHSFhCX4lGHMOhbnpBfYZGU31mpHpPBQwcfWm0T+/+wxC4UCAJfkxxc3/HvGJVG8r4AqrffaeDHDlA==", - - - - "engines": { - - - - - "node": ">=18.0.0" - - - - } - - - }, - - - "node_modules/@heroicons/react": { - - - - "version": "1.0.6", - - - - "resolved": "https://registry.npmjs.org/@heroicons/react/-/react-1.0.6.tgz", - - - - "integrity": "sha512-JJCXydOFWMDpCP4q13iEplA503MQO3xLoZiKum+955ZCtHINWnx26CUxVxxFQu/uLb4LW3ge15ZpzIkXKkJ8oQ==", - - - - "peerDependencies": { - - - - - "react": ">= 16" - - - - } - - - }, - - - "node_modules/@mapbox/node-pre-gyp": { - - - - "version": "1.0.11", - - - - "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz", - - - - "integrity": "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==", - - - - "dependencies": { - - - - - "detect-libc": "^2.0.0", - - - - - "https-proxy-agent": "^5.0.0", - - - - - "make-dir": "^3.1.0", - - - - - "node-fetch": "^2.6.7", - - - - - "nopt": "^5.0.0", - - - - - "npmlog": "^5.0.1", - - - - - "rimraf": "^3.0.2", - - - - - "semver": "^7.3.5", - - - - - "tar": "^6.1.11" - - - - }, - - - - "bin": { - - - - - "node-pre-gyp": "bin/node-pre-gyp" - - - - } - - - }, - - - "node_modules/@remix-run/router": { - - - - "version": "1.16.0", - - - - "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.16.0.tgz", - - - - "integrity": "sha512-Quz1KOffeEf/zwkCBM3kBtH4ZoZ+pT3xIXBG4PPW/XFtDP7EGhtTiC2+gpL9GnR7+Qdet5Oa6cYSvwKYg6kN9Q==", - - - - "engines": { - - - - - "node": ">=14.0.0" - - - - } - - - }, - - - "node_modules/abbrev": { - - - - "version": "1.1.1", - - - - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - - - - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" - - - }, - - - "node_modules/accepts": { - - - - "version": "1.3.8", - - - - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - - - - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - - - - "dependencies": { - - - - - "mime-types": "~2.1.34", - - - - - "negotiator": "0.6.3" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.6" - - - - } - - - }, - - - "node_modules/agent-base": { - - - - "version": "6.0.2", - - - - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - - - - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - - - - "dependencies": { - - - - - "debug": "4" - - - - }, - - - - "engines": { - - - - - "node": ">= 6.0.0" - - - - } - - - }, - - - "node_modules/agent-base/node_modules/debug": { - - - - "version": "4.3.4", - - - - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - - - - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - - - - "dependencies": { - - - - - "ms": "2.1.2" - - - - }, - - - - "engines": { - - - - - "node": ">=6.0" - - - - }, - - - - "peerDependenciesMeta": { - - - - - "supports-color": { - - - - - - "optional": true - - - - - } - - - - } - - - }, - - - "node_modules/agent-base/node_modules/ms": { - - - - "version": "2.1.2", - - - - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - - - - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - - - }, - - - "node_modules/ansi-regex": { - - - - "version": "5.0.1", - - - - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - - - - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - - - - "engines": { - - - - - "node": ">=8" - - - - } - - - }, - - - "node_modules/aproba": { - - - - "version": "2.0.0", - - - - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - - - - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" - - - }, - - - "node_modules/are-we-there-yet": { - - - - "version": "2.0.0", - - - - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", - - - - "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", - - - - "dependencies": { - - - - - "delegates": "^1.0.0", - - - - - "readable-stream": "^3.6.0" - - - - }, - - - - "engines": { - - - - - "node": ">=10" - - - - } - - - }, - - - "node_modules/array-flatten": { - - - - "version": "1.1.1", - - - - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - - - - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" - - - }, - - - "node_modules/asynckit": { - - - - "version": "0.4.0", - - - - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - - - - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - - - }, - - - "node_modules/axios": { - - - - "version": "1.6.8", - - - - "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.8.tgz", - - - - "integrity": "sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==", - - - - "dependencies": { - - - - - "follow-redirects": "^1.15.6", - - - - - "form-data": "^4.0.0", - - - - - "proxy-from-env": "^1.1.0" - - - - } - - - }, - - - "node_modules/balanced-match": { - - - - "version": "1.0.2", - - - - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - - - - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - - - }, - - - "node_modules/bcrypt": { - - - - "version": "5.1.1", - - - - "resolved": "https://registry.npmjs.org/bcrypt/-/bcrypt-5.1.1.tgz", - - - - "integrity": "sha512-AGBHOG5hPYZ5Xl9KXzU5iKq9516yEmvCKDg3ecP5kX2aB6UqTeXZxk2ELnDgDm6BQSMlLt9rDB4LoSMx0rYwww==", - - - - "hasInstallScript": true, - - - - "dependencies": { - - - - - "@mapbox/node-pre-gyp": "^1.0.11", - - - - - "node-addon-api": "^5.0.0" - - - - }, - - - - "engines": { - - - - - "node": ">= 10.0.0" - - - - } - - - }, - - - "node_modules/body-parser": { - - - - "version": "1.20.2", - - - - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", - - - - "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", - - - - "dependencies": { - - - - - "bytes": "3.1.2", - - - - - "content-type": "~1.0.5", - - - - - "debug": "2.6.9", - - - - - "depd": "2.0.0", - - - - - "destroy": "1.2.0", - - - - - "http-errors": "2.0.0", - - - - - "iconv-lite": "0.4.24", - - - - - "on-finished": "2.4.1", - - - - - "qs": "6.11.0", - - - - - "raw-body": "2.5.2", - - - - - "type-is": "~1.6.18", - - - - - "unpipe": "1.0.0" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.8", - - - - - "npm": "1.2.8000 || >= 1.4.16" - - - - } - - - }, - - - "node_modules/brace-expansion": { - - - - "version": "1.1.11", - - - - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - - - - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - - - - "dependencies": { - - - - - "balanced-match": "^1.0.0", - - - - - "concat-map": "0.0.1" - - - - } - - - }, - - - "node_modules/bytes": { - - - - "version": "3.1.2", - - - - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - - - - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - - - - "engines": { - - - - - "node": ">= 0.8" - - - - } - - - }, - - - "node_modules/call-bind": { - - - - "version": "1.0.7", - - - - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - - - - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", - - - - "dependencies": { - - - - - "es-define-property": "^1.0.0", - - - - - "es-errors": "^1.3.0", - - - - - "function-bind": "^1.1.2", - - - - - "get-intrinsic": "^1.2.4", - - - - - "set-function-length": "^1.2.1" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.4" - - - - }, - - - - "funding": { - - - - - "url": "https://github.com/sponsors/ljharb" - - - - } - - - }, - - - "node_modules/chownr": { - - - - "version": "2.0.0", - - - - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - - - - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - - - - "engines": { - - - - - "node": ">=10" - - - - } - - - }, - - - "node_modules/color-support": { - - - - "version": "1.1.3", - - - - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - - - - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - - - - "bin": { - - - - - "color-support": "bin.js" - - - - } - - - }, - - - "node_modules/combined-stream": { - - - - "version": "1.0.8", - - - - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - - - - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - - - - "dependencies": { - - - - - "delayed-stream": "~1.0.0" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.8" - - - - } - - - }, - - - "node_modules/concat-map": { - - - - "version": "0.0.1", - - - - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - - - - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - - - }, - - - "node_modules/console-control-strings": { - - - - "version": "1.1.0", - - - - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - - - - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==" - - - }, - - - "node_modules/content-disposition": { - - - - "version": "0.5.4", - - - - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - - - - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - - - - "dependencies": { - - - - - "safe-buffer": "5.2.1" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.6" - - - - } - - - }, - - - "node_modules/content-type": { - - - - "version": "1.0.5", - - - - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - - - - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - - - - "engines": { - - - - - "node": ">= 0.6" - - - - } - - - }, - - - "node_modules/cookie": { - - - - "version": "0.6.0", - - - - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", - - - - "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", - - - - "engines": { - - - - - "node": ">= 0.6" - - - - } - - - }, - - - "node_modules/cookie-parser": { - - - - "version": "1.4.6", - - - - "resolved": "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.6.tgz", - - - - "integrity": "sha512-z3IzaNjdwUC2olLIB5/ITd0/setiaFMLYiZJle7xg5Fe9KWAceil7xszYfHHBtDFYLSgJduS2Ty0P1uJdPDJeA==", - - - - "dependencies": { - - - - - "cookie": "0.4.1", - - - - - "cookie-signature": "1.0.6" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.8.0" - - - - } - - - }, - - - "node_modules/cookie-parser/node_modules/cookie": { - - - - "version": "0.4.1", - - - - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz", - - - - "integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==", - - - - "engines": { - - - - - "node": ">= 0.6" - - - - } - - - }, - - - "node_modules/cookie-signature": { - - - - "version": "1.0.6", - - - - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - - - - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" - - - }, - - - "node_modules/cors": { - - - - "version": "2.8.5", - - - - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - - - - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", - - - - "dependencies": { - - - - - "object-assign": "^4", - - - - - "vary": "^1" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.10" - - - - } - - - }, - - - "node_modules/debug": { - - - - "version": "2.6.9", - - - - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - - - - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - - - - "dependencies": { - - - - - "ms": "2.0.0" - - - - } - - - }, - - - "node_modules/define-data-property": { - - - - "version": "1.1.4", - - - - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - - - - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", - - - - "dependencies": { - - - - - "es-define-property": "^1.0.0", - - - - - "es-errors": "^1.3.0", - - - - - "gopd": "^1.0.1" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.4" - - - - }, - - - - "funding": { - - - - - "url": "https://github.com/sponsors/ljharb" - - - - } - - - }, - - - "node_modules/delayed-stream": { - - - - "version": "1.0.0", - - - - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - - - - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - - - - "engines": { - - - - - "node": ">=0.4.0" - - - - } - - - }, - - - "node_modules/delegates": { - - - - "version": "1.0.0", - - - - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - - - - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" - - - }, - - - "node_modules/depd": { - - - - "version": "2.0.0", - - - - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - - - - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - - - - "engines": { - - - - - "node": ">= 0.8" - - - - } - - - }, - - - "node_modules/destroy": { - - - - "version": "1.2.0", - - - - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - - - - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - - - - "engines": { - - - - - "node": ">= 0.8", - - - - - "npm": "1.2.8000 || >= 1.4.16" - - - - } - - - }, - - - "node_modules/detect-libc": { - - - - "version": "2.0.3", - - - - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", - - - - "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", - - - - "engines": { - - - - - "node": ">=8" - - - - } - - - }, - - - "node_modules/dotenv": { - - - - "version": "16.4.5", - - - - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", - - - - "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", - - - - "engines": { - - - - - "node": ">=12" - - - - }, - - - - "funding": { - - - - - "url": "https://dotenvx.com" - - - - } - - - }, - - - "node_modules/ee-first": { - - - - "version": "1.1.1", - - - - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - - - - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - - - }, - - - "node_modules/emoji-regex": { - - - - "version": "8.0.0", - - - - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - - - - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - - - }, - - - "node_modules/encodeurl": { - - - - "version": "1.0.2", - - - - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - - - - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - - - - "engines": { - - - - - "node": ">= 0.8" - - - - } - - - }, - - - "node_modules/es-define-property": { - - - - "version": "1.0.0", - - - - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - - - - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", - - - - "dependencies": { - - - - - "get-intrinsic": "^1.2.4" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.4" - - - - } - - - }, - - - "node_modules/es-errors": { - - - - "version": "1.3.0", - - - - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - - - - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", - - - - "engines": { - - - - - "node": ">= 0.4" - - - - } - - - }, - - - "node_modules/escape-html": { - - - - "version": "1.0.3", - - - - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - - - - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - - - }, - - - "node_modules/etag": { - - - - "version": "1.8.1", - - - - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - - - - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - - - - "engines": { - - - - - "node": ">= 0.6" - - - - } - - - }, - - - "node_modules/express": { - - - - "version": "4.19.2", - - - - "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", - - - - "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", - - - - "dependencies": { - - - - - "accepts": "~1.3.8", - - - - - "array-flatten": "1.1.1", - - - - - "body-parser": "1.20.2", - - - - - "content-disposition": "0.5.4", - - - - - "content-type": "~1.0.4", - - - - - "cookie": "0.6.0", - - - - - "cookie-signature": "1.0.6", - - - - - "debug": "2.6.9", - - - - - "depd": "2.0.0", - - - - - "encodeurl": "~1.0.2", - - - - - "escape-html": "~1.0.3", - - - - - "etag": "~1.8.1", - - - - - "finalhandler": "1.2.0", - - - - - "fresh": "0.5.2", - - - - - "http-errors": "2.0.0", - - - - - "merge-descriptors": "1.0.1", - - - - - "methods": "~1.1.2", - - - - - "on-finished": "2.4.1", - - - - - "parseurl": "~1.3.3", - - - - - "path-to-regexp": "0.1.7", - - - - - "proxy-addr": "~2.0.7", - - - - - "qs": "6.11.0", - - - - - "range-parser": "~1.2.1", - - - - - "safe-buffer": "5.2.1", - - - - - "send": "0.18.0", - - - - - "serve-static": "1.15.0", - - - - - "setprototypeof": "1.2.0", - - - - - "statuses": "2.0.1", - - - - - "type-is": "~1.6.18", - - - - - "utils-merge": "1.0.1", - - - - - "vary": "~1.1.2" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.10.0" - - - - } - - - }, - - - "node_modules/express-session": { - - - - "version": "1.18.0", - - - - "resolved": "https://registry.npmjs.org/express-session/-/express-session-1.18.0.tgz", - - - - "integrity": "sha512-m93QLWr0ju+rOwApSsyso838LQwgfs44QtOP/WBiwtAgPIo/SAh1a5c6nn2BR6mFNZehTpqKDESzP+fRHVbxwQ==", - - - - "dependencies": { - - - - - "cookie": "0.6.0", - - - - - "cookie-signature": "1.0.7", - - - - - "debug": "2.6.9", - - - - - "depd": "~2.0.0", - - - - - "on-headers": "~1.0.2", - - - - - "parseurl": "~1.3.3", - - - - - "safe-buffer": "5.2.1", - - - - - "uid-safe": "~2.1.5" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.8.0" - - - - } - - - }, - - - "node_modules/express-session/node_modules/cookie-signature": { - - - - "version": "1.0.7", - - - - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz", - - - - "integrity": "sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==" - - - }, - - - "node_modules/finalhandler": { - - - - "version": "1.2.0", - - - - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - - - - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - - - - "dependencies": { - - - - - "debug": "2.6.9", - - - - - "encodeurl": "~1.0.2", - - - - - "escape-html": "~1.0.3", - - - - - "on-finished": "2.4.1", - - - - - "parseurl": "~1.3.3", - - - - - "statuses": "2.0.1", - - - - - "unpipe": "~1.0.0" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.8" - - - - } - - - }, - - - "node_modules/follow-redirects": { - - - - "version": "1.15.6", - - - - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", - - - - "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", - - - - "funding": [ - - - - - { - - - - - - "type": "individual", - - - - - - "url": "https://github.com/sponsors/RubenVerborgh" - - - - - } - - - - ], - - - - "engines": { - - - - - "node": ">=4.0" - - - - }, - - - - "peerDependenciesMeta": { - - - - - "debug": { - - - - - - "optional": true - - - - - } - - - - } - - - }, - - - "node_modules/form-data": { - - - - "version": "4.0.0", - - - - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - - - - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - - - - "dependencies": { - - - - - "asynckit": "^0.4.0", - - - - - "combined-stream": "^1.0.8", - - - - - "mime-types": "^2.1.12" - - - - }, - - - - "engines": { - - - - - "node": ">= 6" - - - - } - - - }, - - - "node_modules/forwarded": { - - - - "version": "0.2.0", - - - - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - - - - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - - - - "engines": { - - - - - "node": ">= 0.6" - - - - } - - - }, - - - "node_modules/fresh": { - - - - "version": "0.5.2", - - - - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - - - - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - - - - "engines": { - - - - - "node": ">= 0.6" - - - - } - - - }, - - - "node_modules/fs-minipass": { - - - - "version": "2.1.0", - - - - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - - - - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - - - - "dependencies": { - - - - - "minipass": "^3.0.0" - - - - }, - - - - "engines": { - - - - - "node": ">= 8" - - - - } - - - }, - - - "node_modules/fs-minipass/node_modules/minipass": { - - - - "version": "3.3.6", - - - - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - - - - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - - - - "dependencies": { - - - - - "yallist": "^4.0.0" - - - - }, - - - - "engines": { - - - - - "node": ">=8" - - - - } - - - }, - - - "node_modules/fs.realpath": { - - - - "version": "1.0.0", - - - - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - - - - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - - - }, - - - "node_modules/function-bind": { - - - - "version": "1.1.2", - - - - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - - - - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - - - - "funding": { - - - - - "url": "https://github.com/sponsors/ljharb" - - - - } - - - }, - - - "node_modules/gauge": { - - - - "version": "3.0.2", - - - - "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", - - - - "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", - - - - "dependencies": { - - - - - "aproba": "^1.0.3 || ^2.0.0", - - - - - "color-support": "^1.1.2", - - - - - "console-control-strings": "^1.0.0", - - - - - "has-unicode": "^2.0.1", - - - - - "object-assign": "^4.1.1", - - - - - "signal-exit": "^3.0.0", - - - - - "string-width": "^4.2.3", - - - - - "strip-ansi": "^6.0.1", - - - - - "wide-align": "^1.1.2" - - - - }, - - - - "engines": { - - - - - "node": ">=10" - - - - } - - - }, - - - "node_modules/get-intrinsic": { - - - - "version": "1.2.4", - - - - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - - - - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", - - - - "dependencies": { - - - - - "es-errors": "^1.3.0", - - - - - "function-bind": "^1.1.2", - - - - - "has-proto": "^1.0.1", - - - - - "has-symbols": "^1.0.3", - - - - - "hasown": "^2.0.0" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.4" - - - - }, - - - - "funding": { - - - - - "url": "https://github.com/sponsors/ljharb" - - - - } - - - }, - - - "node_modules/glob": { - - - - "version": "7.2.3", - - - - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - - - - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - - - - "dependencies": { - - - - - "fs.realpath": "^1.0.0", - - - - - "inflight": "^1.0.4", - - - - - "inherits": "2", - - - - - "minimatch": "^3.1.1", - - - - - "once": "^1.3.0", - - - - - "path-is-absolute": "^1.0.0" - - - - }, - - - - "engines": { - - - - - "node": "*" - - - - }, - - - - "funding": { - - - - - "url": "https://github.com/sponsors/isaacs" - - - - } - - - }, - - - "node_modules/gopd": { - - - - "version": "1.0.1", - - - - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - - - - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - - - - "dependencies": { - - - - - "get-intrinsic": "^1.1.3" - - - - }, - - - - "funding": { - - - - - "url": "https://github.com/sponsors/ljharb" - - - - } - - - }, - - - "node_modules/has-property-descriptors": { - - - - "version": "1.0.2", - - - - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - - - - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", - - - - "dependencies": { - - - - - "es-define-property": "^1.0.0" - - - - }, - - - - "funding": { - - - - - "url": "https://github.com/sponsors/ljharb" - - - - } - - - }, - - - "node_modules/has-proto": { - - - - "version": "1.0.3", - - - - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - - - - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", - - - - "engines": { - - - - - "node": ">= 0.4" - - - - }, - - - - "funding": { - - - - - "url": "https://github.com/sponsors/ljharb" - - - - } - - - }, - - - "node_modules/has-symbols": { - - - - "version": "1.0.3", - - - - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - - - - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - - - - "engines": { - - - - - "node": ">= 0.4" - - - - }, - - - - "funding": { - - - - - "url": "https://github.com/sponsors/ljharb" - - - - } - - - }, - - - "node_modules/has-unicode": { - - - - "version": "2.0.1", - - - - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - - - - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" - - - }, - - - "node_modules/hasown": { - - - - "version": "2.0.2", - - - - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - - - - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - - - - "dependencies": { - - - - - "function-bind": "^1.1.2" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.4" - - - - } - - - }, - - - "node_modules/http-errors": { - - - - "version": "2.0.0", - - - - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - - - - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - - - - "dependencies": { - - - - - "depd": "2.0.0", - - - - - "inherits": "2.0.4", - - - - - "setprototypeof": "1.2.0", - - - - - "statuses": "2.0.1", - - - - - "toidentifier": "1.0.1" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.8" - - - - } - - - }, - - - "node_modules/https-proxy-agent": { - - - - "version": "5.0.1", - - - - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - - - - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - - - - "dependencies": { - - - - - "agent-base": "6", - - - - - "debug": "4" - - - - }, - - - - "engines": { - - - - - "node": ">= 6" - - - - } - - - }, - - - "node_modules/https-proxy-agent/node_modules/debug": { - - - - "version": "4.3.4", - - - - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - - - - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - - - - "dependencies": { - - - - - "ms": "2.1.2" - - - - }, - - - - "engines": { - - - - - "node": ">=6.0" - - - - }, - - - - "peerDependenciesMeta": { - - - - - "supports-color": { - - - - - - "optional": true - - - - - } - - - - } - - - }, - - - "node_modules/https-proxy-agent/node_modules/ms": { - - - - "version": "2.1.2", - - - - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - - - - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - - - }, - - - "node_modules/iconv-lite": { - - - - "version": "0.4.24", - - - - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - - - - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - - - - "dependencies": { - - - - - "safer-buffer": ">= 2.1.2 < 3" - - - - }, - - - - "engines": { - - - - - "node": ">=0.10.0" - - - - } - - - }, - - - "node_modules/inflight": { - - - - "version": "1.0.6", - - - - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - - - - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - - - - "dependencies": { - - - - - "once": "^1.3.0", - - - - - "wrappy": "1" - - - - } - - - }, - - - "node_modules/inherits": { - - - - "version": "2.0.4", - - - - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - - - - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - - - }, - - - "node_modules/ipaddr.js": { - - - - "version": "1.9.1", - - - - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - - - - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - - - - "engines": { - - - - - "node": ">= 0.10" - - - - } - - - }, - - - "node_modules/is-fullwidth-code-point": { - - - - "version": "3.0.0", - - - - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - - - - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - - - - "engines": { - - - - - "node": ">=8" - - - - } - - - }, - - - "node_modules/js-tokens": { - - - - "version": "4.0.0", - - - - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - - - - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - - - - "peer": true - - - }, - - - "node_modules/loose-envify": { - - - - "version": "1.4.0", - - - - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - - - - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - - - - "peer": true, - - - - "dependencies": { - - - - - "js-tokens": "^3.0.0 || ^4.0.0" - - - - }, - - - - "bin": { - - - - - "loose-envify": "cli.js" - - - - } - - - }, - - - "node_modules/lru-cache": { - - - - "version": "6.0.0", - - - - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - - - - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - - - - "dependencies": { - - - - - "yallist": "^4.0.0" - - - - }, - - - - "engines": { - - - - - "node": ">=10" - - - - } - - - }, - - - "node_modules/make-dir": { - - - - "version": "3.1.0", - - - - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - - - - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - - - - "dependencies": { - - - - - "semver": "^6.0.0" - - - - }, - - - - "engines": { - - - - - "node": ">=8" - - - - }, - - - - "funding": { - - - - - "url": "https://github.com/sponsors/sindresorhus" - - - - } - - - }, - - - "node_modules/make-dir/node_modules/semver": { - - - - "version": "6.3.1", - - - - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - - - - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - - - - "bin": { - - - - - "semver": "bin/semver.js" - - - - } - - - }, - - - "node_modules/media-typer": { - - - - "version": "0.3.0", - - - - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - - - - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - - - - "engines": { - - - - - "node": ">= 0.6" - - - - } - - - }, - - - "node_modules/memorystore": { - - - - "version": "1.6.7", - - - - "resolved": "https://registry.npmjs.org/memorystore/-/memorystore-1.6.7.tgz", - - - - "integrity": "sha512-OZnmNY/NDrKohPQ+hxp0muBcBKrzKNtHr55DbqSx9hLsYVNnomSAMRAtI7R64t3gf3ID7tHQA7mG4oL3Hu9hdw==", - - - - "dependencies": { - - - - - "debug": "^4.3.0", - - - - - "lru-cache": "^4.0.3" - - - - }, - - - - "engines": { - - - - - "node": ">=0.10" - - - - } - - - }, - - - "node_modules/memorystore/node_modules/debug": { - - - - "version": "4.3.4", - - - - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - - - - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - - - - "dependencies": { - - - - - "ms": "2.1.2" - - - - }, - - - - "engines": { - - - - - "node": ">=6.0" - - - - }, - - - - "peerDependenciesMeta": { - - - - - "supports-color": { - - - - - - "optional": true - - - - - } - - - - } - - - }, - - - "node_modules/memorystore/node_modules/lru-cache": { - - - - "version": "4.1.5", - - - - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - - - - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", - - - - "dependencies": { - - - - - "pseudomap": "^1.0.2", - - - - - "yallist": "^2.1.2" - - - - } - - - }, - - - "node_modules/memorystore/node_modules/ms": { - - - - "version": "2.1.2", - - - - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - - - - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - - - }, - - - "node_modules/memorystore/node_modules/yallist": { - - - - "version": "2.1.2", - - - - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - - - - "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" - - - }, - - - "node_modules/merge-descriptors": { - - - - "version": "1.0.1", - - - - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - - - - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" - - - }, - - - "node_modules/methods": { - - - - "version": "1.1.2", - - - - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - - - - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - - - - "engines": { - - - - - "node": ">= 0.6" - - - - } - - - }, - - - "node_modules/mime": { - - - - "version": "1.6.0", - - - - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - - - - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - - - - "bin": { - - - - - "mime": "cli.js" - - - - }, - - - - "engines": { - - - - - "node": ">=4" - - - - } - - - }, - - - "node_modules/mime-db": { - - - - "version": "1.52.0", - - - - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - - - - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - - - - "engines": { - - - - - "node": ">= 0.6" - - - - } - - - }, - - - "node_modules/mime-types": { - - - - "version": "2.1.35", - - - - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - - - - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - - - - "dependencies": { - - - - - "mime-db": "1.52.0" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.6" - - - - } - - - }, - - - "node_modules/minimatch": { - - - - "version": "3.1.2", - - - - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - - - - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - - - - "dependencies": { - - - - - "brace-expansion": "^1.1.7" - - - - }, - - - - "engines": { - - - - - "node": "*" - - - - } - - - }, - - - "node_modules/minipass": { - - - - "version": "5.0.0", - - - - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - - - - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", - - - - "engines": { - - - - - "node": ">=8" - - - - } - - - }, - - - "node_modules/minizlib": { - - - - "version": "2.1.2", - - - - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - - - - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - - - - "dependencies": { - - - - - "minipass": "^3.0.0", - - - - - "yallist": "^4.0.0" - - - - }, - - - - "engines": { - - - - - "node": ">= 8" - - - - } - - - }, - - - "node_modules/minizlib/node_modules/minipass": { - - - - "version": "3.3.6", - - - - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - - - - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - - - - "dependencies": { - - - - - "yallist": "^4.0.0" - - - - }, - - - - "engines": { - - - - - "node": ">=8" - - - - } - - - }, - - - "node_modules/mkdirp": { - - - - "version": "1.0.4", - - - - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - - - - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - - - - "bin": { - - - - - "mkdirp": "bin/cmd.js" - - - - }, - - - - "engines": { - - - - - "node": ">=10" - - - - } - - - }, - - - "node_modules/ms": { - - - - "version": "2.0.0", - - - - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - - - - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - - - }, - - - "node_modules/negotiator": { - - - - "version": "0.6.3", - - - - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - - - - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - - - - "engines": { - - - - - "node": ">= 0.6" - - - - } - - - }, - - - "node_modules/node-addon-api": { - - - - "version": "5.1.0", - - - - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz", - - - - "integrity": "sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==" - - - }, - - - "node_modules/node-fetch": { - - - - "version": "2.7.0", - - - - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", - - - - "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", - - - - "dependencies": { - - - - - "whatwg-url": "^5.0.0" - - - - }, - - - - "engines": { - - - - - "node": "4.x || >=6.0.0" - - - - }, - - - - "peerDependencies": { - - - - - "encoding": "^0.1.0" - - - - }, - - - - "peerDependenciesMeta": { - - - - - "encoding": { - - - - - - "optional": true - - - - - } - - - - } - - - }, - - - "node_modules/nodemailer": { - - - - "version": "6.9.13", - - - - "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-6.9.13.tgz", - - - - "integrity": "sha512-7o38Yogx6krdoBf3jCAqnIN4oSQFx+fMa0I7dK1D+me9kBxx12D+/33wSb+fhOCtIxvYJ+4x4IMEhmhCKfAiOA==", - - - - "engines": { - - - - - "node": ">=6.0.0" - - - - } - - - }, - - - "node_modules/nopt": { - - - - "version": "5.0.0", - - - - "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", - - - - "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", - - - - "dependencies": { - - - - - "abbrev": "1" - - - - }, - - - - "bin": { - - - - - "nopt": "bin/nopt.js" - - - - }, - - - - "engines": { - - - - - "node": ">=6" - - - - } - - - }, - - - "node_modules/npmlog": { - - - - "version": "5.0.1", - - - - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", - - - - "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", - - - - "dependencies": { - - - - - "are-we-there-yet": "^2.0.0", - - - - - "console-control-strings": "^1.1.0", - - - - - "gauge": "^3.0.0", - - - - - "set-blocking": "^2.0.0" - - - - } - - - }, - - - "node_modules/object-assign": { - - - - "version": "4.1.1", - - - - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - - - - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - - - - "engines": { - - - - - "node": ">=0.10.0" - - - - } - - - }, - - - "node_modules/object-inspect": { - - - - "version": "1.13.1", - - - - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - - - - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", - - - - "funding": { - - - - - "url": "https://github.com/sponsors/ljharb" - - - - } - - - }, - - - "node_modules/on-finished": { - - - - "version": "2.4.1", - - - - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - - - - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - - - - "dependencies": { - - - - - "ee-first": "1.1.1" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.8" - - - - } - - - }, - - - "node_modules/on-headers": { - - - - "version": "1.0.2", - - - - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - - - - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", - - - - "engines": { - - - - - "node": ">= 0.8" - - - - } - - - }, - - - "node_modules/once": { - - - - "version": "1.4.0", - - - - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - - - - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - - - - "dependencies": { - - - - - "wrappy": "1" - - - - } - - - }, - - - "node_modules/parseurl": { - - - - "version": "1.3.3", - - - - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - - - - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - - - - "engines": { - - - - - "node": ">= 0.8" - - - - } - - - }, - - - "node_modules/passport": { - - - - "version": "0.7.0", - - - - "resolved": "https://registry.npmjs.org/passport/-/passport-0.7.0.tgz", - - - - "integrity": "sha512-cPLl+qZpSc+ireUvt+IzqbED1cHHkDoVYMo30jbJIdOOjQ1MQYZBPiNvmi8UM6lJuOpTPXJGZQk0DtC4y61MYQ==", - - - - "dependencies": { - - - - - "passport-strategy": "1.x.x", - - - - - "pause": "0.0.1", - - - - - "utils-merge": "^1.0.1" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.4.0" - - - - }, - - - - "funding": { - - - - - "type": "github", - - - - - "url": "https://github.com/sponsors/jaredhanson" - - - - } - - - }, - - - "node_modules/passport-local": { - - - - "version": "1.0.0", - - - - "resolved": "https://registry.npmjs.org/passport-local/-/passport-local-1.0.0.tgz", - - - - "integrity": "sha512-9wCE6qKznvf9mQYYbgJ3sVOHmCWoUNMVFoZzNoznmISbhnNNPhN9xfY3sLmScHMetEJeoY7CXwfhCe7argfQow==", - - - - "dependencies": { - - - - - "passport-strategy": "1.x.x" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.4.0" - - - - } - - - }, - - - "node_modules/passport-strategy": { - - - - "version": "1.0.0", - - - - "resolved": "https://registry.npmjs.org/passport-strategy/-/passport-strategy-1.0.0.tgz", - - - - "integrity": "sha512-CB97UUvDKJde2V0KDWWB3lyf6PC3FaZP7YxZ2G8OAtn9p4HI9j9JLP9qjOGZFvyl8uwNT8qM+hGnz/n16NI7oA==", - - - - "engines": { - - - - - "node": ">= 0.4.0" - - - - } - - - }, - - - "node_modules/path-is-absolute": { - - - - "version": "1.0.1", - - - - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - - - - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - - - - "engines": { - - - - - "node": ">=0.10.0" - - - - } - - - }, - - - "node_modules/path-to-regexp": { - - - - "version": "0.1.7", - - - - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - - - - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" - - - }, - - - "node_modules/pause": { - - - - "version": "0.0.1", - - - - "resolved": "https://registry.npmjs.org/pause/-/pause-0.0.1.tgz", - - - - "integrity": "sha512-KG8UEiEVkR3wGEb4m5yZkVCzigAD+cVEJck2CzYZO37ZGJfctvVptVO192MwrtPhzONn6go8ylnOdMhKqi4nfg==" - - - }, - - - "node_modules/pg": { - - - - "version": "8.11.5", - - - - "resolved": "https://registry.npmjs.org/pg/-/pg-8.11.5.tgz", - - - - "integrity": "sha512-jqgNHSKL5cbDjFlHyYsCXmQDrfIX/3RsNwYqpd4N0Kt8niLuNoRNH+aazv6cOd43gPh9Y4DjQCtb+X0MH0Hvnw==", - - - - "dependencies": { - - - - - "pg-connection-string": "^2.6.4", - - - - - "pg-pool": "^3.6.2", - - - - - "pg-protocol": "^1.6.1", - - - - - "pg-types": "^2.1.0", - - - - - "pgpass": "1.x" - - - - }, - - - - "engines": { - - - - - "node": ">= 8.0.0" - - - - }, - - - - "optionalDependencies": { - - - - - "pg-cloudflare": "^1.1.1" - - - - }, - - - - "peerDependencies": { - - - - - "pg-native": ">=3.0.1" - - - - }, - - - - "peerDependenciesMeta": { - - - - - "pg-native": { - - - - - - "optional": true - - - - - } - - - - } - - - }, - - - "node_modules/pg-cloudflare": { - - - - "version": "1.1.1", - - - - "resolved": "https://registry.npmjs.org/pg-cloudflare/-/pg-cloudflare-1.1.1.tgz", - - - - "integrity": "sha512-xWPagP/4B6BgFO+EKz3JONXv3YDgvkbVrGw2mTo3D6tVDQRh1e7cqVGvyR3BE+eQgAvx1XhW/iEASj4/jCWl3Q==", - - - - "optional": true - - - }, - - - "node_modules/pg-connection-string": { - - - - "version": "2.6.4", - - - - "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.6.4.tgz", - - - - "integrity": "sha512-v+Z7W/0EO707aNMaAEfiGnGL9sxxumwLl2fJvCQtMn9Fxsg+lPpPkdcyBSv/KFgpGdYkMfn+EI1Or2EHjpgLCA==" - - - }, - - - "node_modules/pg-int8": { - - - - "version": "1.0.1", - - - - "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz", - - - - "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==", - - - - "engines": { - - - - - "node": ">=4.0.0" - - - - } - - - }, - - - "node_modules/pg-pool": { - - - - "version": "3.6.2", - - - - "resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-3.6.2.tgz", - - - - "integrity": "sha512-Htjbg8BlwXqSBQ9V8Vjtc+vzf/6fVUuak/3/XXKA9oxZprwW3IMDQTGHP+KDmVL7rtd+R1QjbnCFPuTHm3G4hg==", - - - - "peerDependencies": { - - - - - "pg": ">=8.0" - - - - } - - - }, - - - "node_modules/pg-protocol": { - - - - "version": "1.6.1", - - - - "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.6.1.tgz", - - - - "integrity": "sha512-jPIlvgoD63hrEuihvIg+tJhoGjUsLPn6poJY9N5CnlPd91c2T18T/9zBtLxZSb1EhYxBRoZJtzScCaWlYLtktg==" - - - }, - - - "node_modules/pg-types": { - - - - "version": "2.2.0", - - - - "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz", - - - - "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==", - - - - "dependencies": { - - - - - "pg-int8": "1.0.1", - - - - - "postgres-array": "~2.0.0", - - - - - "postgres-bytea": "~1.0.0", - - - - - "postgres-date": "~1.0.4", - - - - - "postgres-interval": "^1.1.0" - - - - }, - - - - "engines": { - - - - - "node": ">=4" - - - - } - - - }, - - - "node_modules/pgpass": { - - - - "version": "1.0.5", - - - - "resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz", - - - - "integrity": "sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==", - - - - "dependencies": { - - - - - "split2": "^4.1.0" - - - - } - - - }, - - - "node_modules/postgres-array": { - - - - "version": "2.0.0", - - - - "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz", - - - - "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==", - - - - "engines": { - - - - - "node": ">=4" - - - - } - - - }, - - - "node_modules/postgres-bytea": { - - - - "version": "1.0.0", - - - - "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz", - - - - "integrity": "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==", - - - - "engines": { - - - - - "node": ">=0.10.0" - - - - } - - - }, - - - "node_modules/postgres-date": { - - - - "version": "1.0.7", - - - - "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz", - - - - "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==", - - - - "engines": { - - - - - "node": ">=0.10.0" - - - - } - - - }, - - - "node_modules/postgres-interval": { - - - - "version": "1.2.0", - - - - "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz", - - - - "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==", - - - - "dependencies": { - - - - - "xtend": "^4.0.0" - - - - }, - - - - "engines": { - - - - - "node": ">=0.10.0" - - - - } - - - }, - - - "node_modules/proxy-addr": { - - - - "version": "2.0.7", - - - - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - - - - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - - - - "dependencies": { - - - - - "forwarded": "0.2.0", - - - - - "ipaddr.js": "1.9.1" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.10" - - - - } - - - }, - - - "node_modules/proxy-from-env": { - - - - "version": "1.1.0", - - - - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - - - - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - - - }, - - - "node_modules/pseudomap": { - - - - "version": "1.0.2", - - - - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - - - - "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==" - - - }, - - - "node_modules/qs": { - - - - "version": "6.11.0", - - - - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - - - - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - - - - "dependencies": { - - - - - "side-channel": "^1.0.4" - - - - }, - - - - "engines": { - - - - - "node": ">=0.6" - - - - }, - - - - "funding": { - - - - - "url": "https://github.com/sponsors/ljharb" - - - - } - - - }, - - - "node_modules/random-bytes": { - - - - "version": "1.0.0", - - - - "resolved": "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz", - - - - "integrity": "sha512-iv7LhNVO047HzYR3InF6pUcUsPQiHTM1Qal51DcGSuZFBil1aBBWG5eHPNek7bvILMaYJ/8RU1e8w1AMdHmLQQ==", - - - - "engines": { - - - - - "node": ">= 0.8" - - - - } - - - }, - - - "node_modules/range-parser": { - - - - "version": "1.2.1", - - - - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - - - - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - - - - "engines": { - - - - - "node": ">= 0.6" - - - - } - - - }, - - - "node_modules/raw-body": { - - - - "version": "2.5.2", - - - - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", - - - - "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", - - - - "dependencies": { - - - - - "bytes": "3.1.2", - - - - - "http-errors": "2.0.0", - - - - - "iconv-lite": "0.4.24", - - - - - "unpipe": "1.0.0" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.8" - - - - } - - - }, - - - "node_modules/react": { - - - - "version": "18.3.1", - - - - "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", - - - - "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", - - - - "peer": true, - - - - "dependencies": { - - - - - "loose-envify": "^1.1.0" - - - - }, - - - - "engines": { - - - - - "node": ">=0.10.0" - - - - } - - - }, - - - "node_modules/react-dom": { - - - - "version": "18.3.1", - - - - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", - - - - "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", - - - - "peer": true, - - - - "dependencies": { - - - - - "loose-envify": "^1.1.0", - - - - - "scheduler": "^0.23.2" - - - - }, - - - - "peerDependencies": { - - - - - "react": "^18.3.1" - - - - } - - - }, - - - "node_modules/react-hook-form": { - - - - "version": "7.51.5", - - - - "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.51.5.tgz", - - - - "integrity": "sha512-J2ILT5gWx1XUIJRETiA7M19iXHlG74+6O3KApzvqB/w8S5NQR7AbU8HVZrMALdmDgWpRPYiZJl0zx8Z4L2mP6Q==", - - - - "engines": { - - - - - "node": ">=12.22.0" - - - - }, - - - - "funding": { - - - - - "type": "opencollective", - - - - - "url": "https://opencollective.com/react-hook-form" - - - - }, - - - - "peerDependencies": { - - - - - "react": "^16.8.0 || ^17 || ^18" - - - - } - - - }, - - - "node_modules/react-router": { - - - - "version": "6.23.0", - - - - "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.23.0.tgz", - - - - "integrity": "sha512-wPMZ8S2TuPadH0sF5irFGjkNLIcRvOSaEe7v+JER8508dyJumm6XZB1u5kztlX0RVq6AzRVndzqcUh6sFIauzA==", - - - - "dependencies": { - - - - - "@remix-run/router": "1.16.0" - - - - }, - - - - "engines": { - - - - - "node": ">=14.0.0" - - - - }, - - - - "peerDependencies": { - - - - - "react": ">=16.8" - - - - } - - - }, - - - "node_modules/react-router-dom": { - - - - "version": "6.23.0", - - - - "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.23.0.tgz", - - - - "integrity": "sha512-Q9YaSYvubwgbal2c9DJKfx6hTNoBp3iJDsl+Duva/DwxoJH+OTXkxGpql4iUK2sla/8z4RpjAm6EWx1qUDuopQ==", - - - - "dependencies": { - - - - - "@remix-run/router": "1.16.0", - - - - - "react-router": "6.23.0" - - - - }, - - - - "engines": { - - - - - "node": ">=14.0.0" - - - - }, - - - - "peerDependencies": { - - - - - "react": ">=16.8", - - - - - "react-dom": ">=16.8" - - - - } - - - }, - - - "node_modules/readable-stream": { - - - - "version": "3.6.2", - - - - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - - - - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - - - - "dependencies": { - - - - - "inherits": "^2.0.3", - - - - - "string_decoder": "^1.1.1", - - - - - "util-deprecate": "^1.0.1" - - - - }, - - - - "engines": { - - - - - "node": ">= 6" - - - - } - - - }, - - - "node_modules/rimraf": { - - - - "version": "3.0.2", - - - - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - - - - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - - - - "dependencies": { - - - - - "glob": "^7.1.3" - - - - }, - - - - "bin": { - - - - - "rimraf": "bin.js" - - - - }, - - - - "funding": { - - - - - "url": "https://github.com/sponsors/isaacs" - - - - } - - - }, - - - "node_modules/safe-buffer": { - - - - "version": "5.2.1", - - - - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - - - - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - - - - "funding": [ - - - - - { - - - - - - "type": "github", - - - - - - "url": "https://github.com/sponsors/feross" - - - - - }, - - - - - { - - - - - - "type": "patreon", - - - - - - "url": "https://www.patreon.com/feross" - - - - - }, - - - - - { - - - - - - "type": "consulting", - - - - - - "url": "https://feross.org/support" - - - - - } - - - - ] - - - }, - - - "node_modules/safer-buffer": { - - - - "version": "2.1.2", - - - - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - - - - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - - - }, - - - "node_modules/scheduler": { - - - - "version": "0.23.2", - - - - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", - - - - "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", - - - - "peer": true, - - - - "dependencies": { - - - - - "loose-envify": "^1.1.0" - - - - } - - - }, - - - "node_modules/semver": { - - - - "version": "7.6.0", - - - - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", - - - - "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", - - - - "dependencies": { - - - - - "lru-cache": "^6.0.0" - - - - }, - - - - "bin": { - - - - - "semver": "bin/semver.js" - - - - }, - - - - "engines": { - - - - - "node": ">=10" - - - - } - - - }, - - - "node_modules/send": { - - - - "version": "0.18.0", - - - - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - - - - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - - - - "dependencies": { - - - - - "debug": "2.6.9", - - - - - "depd": "2.0.0", - - - - - "destroy": "1.2.0", - - - - - "encodeurl": "~1.0.2", - - - - - "escape-html": "~1.0.3", - - - - - "etag": "~1.8.1", - - - - - "fresh": "0.5.2", - - - - - "http-errors": "2.0.0", - - - - - "mime": "1.6.0", - - - - - "ms": "2.1.3", - - - - - "on-finished": "2.4.1", - - - - - "range-parser": "~1.2.1", - - - - - "statuses": "2.0.1" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.8.0" - - - - } - - - }, - - - "node_modules/send/node_modules/ms": { - - - - "version": "2.1.3", - - - - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - - - - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - - - }, - - - "node_modules/serve-static": { - - - - "version": "1.15.0", - - - - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - - - - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - - - - "dependencies": { - - - - - "encodeurl": "~1.0.2", - - - - - "escape-html": "~1.0.3", - - - - - "parseurl": "~1.3.3", - - - - - "send": "0.18.0" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.8.0" - - - - } - - - }, - - - "node_modules/set-blocking": { - - - - "version": "2.0.0", - - - - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - - - - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" - - - }, - - - "node_modules/set-function-length": { - - - - "version": "1.2.2", - - - - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", - - - - "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", - - - - "dependencies": { - - - - - "define-data-property": "^1.1.4", - - - - - "es-errors": "^1.3.0", - - - - - "function-bind": "^1.1.2", - - - - - "get-intrinsic": "^1.2.4", - - - - - "gopd": "^1.0.1", - - - - - "has-property-descriptors": "^1.0.2" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.4" - - - - } - - - }, - - - "node_modules/setprototypeof": { - - - - "version": "1.2.0", - - - - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - - - - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - - - }, - - - "node_modules/side-channel": { - - - - "version": "1.0.6", - - - - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", - - - - "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", - - - - "dependencies": { - - - - - "call-bind": "^1.0.7", - - - - - "es-errors": "^1.3.0", - - - - - "get-intrinsic": "^1.2.4", - - - - - "object-inspect": "^1.13.1" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.4" - - - - }, - - - - "funding": { - - - - - "url": "https://github.com/sponsors/ljharb" - - - - } - - - }, - - - "node_modules/signal-exit": { - - - - "version": "3.0.7", - - - - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - - - - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" - - - }, - - - "node_modules/split2": { - - - - "version": "4.2.0", - - - - "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", - - - - "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", - - - - "engines": { - - - - - "node": ">= 10.x" - - - - } - - - }, - - - "node_modules/statuses": { - - - - "version": "2.0.1", - - - - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - - - - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - - - - "engines": { - - - - - "node": ">= 0.8" - - - - } - - - }, - - - "node_modules/string_decoder": { - - - - "version": "1.3.0", - - - - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - - - - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - - - - "dependencies": { - - - - - "safe-buffer": "~5.2.0" - - - - } - - - }, - - - "node_modules/string-width": { - - - - "version": "4.2.3", - - - - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - - - - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - - - - "dependencies": { - - - - - "emoji-regex": "^8.0.0", - - - - - "is-fullwidth-code-point": "^3.0.0", - - - - - "strip-ansi": "^6.0.1" - - - - }, - - - - "engines": { - - - - - "node": ">=8" - - - - } - - - }, - - - "node_modules/strip-ansi": { - - - - "version": "6.0.1", - - - - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - - - - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - - - - "dependencies": { - - - - - "ansi-regex": "^5.0.1" - - - - }, - - - - "engines": { - - - - - "node": ">=8" - - - - } - - - }, - - - "node_modules/tar": { - - - - "version": "6.2.1", - - - - "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", - - - - "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", - - - - "dependencies": { - - - - - "chownr": "^2.0.0", - - - - - "fs-minipass": "^2.0.0", - - - - - "minipass": "^5.0.0", - - - - - "minizlib": "^2.1.1", - - - - - "mkdirp": "^1.0.3", - - - - - "yallist": "^4.0.0" - - - - }, - - - - "engines": { - - - - - "node": ">=10" - - - - } - - - }, - - - "node_modules/toidentifier": { - - - - "version": "1.0.1", - - - - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - - - - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - - - - "engines": { - - - - - "node": ">=0.6" - - - - } - - - }, - - - "node_modules/tr46": { - - - - "version": "0.0.3", - - - - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - - - - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - - - }, - - - "node_modules/type-is": { - - - - "version": "1.6.18", - - - - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - - - - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - - - - "dependencies": { - - - - - "media-typer": "0.3.0", - - - - - "mime-types": "~2.1.24" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.6" - - - - } - - - }, - - - "node_modules/uid-safe": { - - - - "version": "2.1.5", - - - - "resolved": "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.5.tgz", - - - - "integrity": "sha512-KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA==", - - - - "dependencies": { - - - - - "random-bytes": "~1.0.0" - - - - }, - - - - "engines": { - - - - - "node": ">= 0.8" - - - - } - - - }, - - - "node_modules/unpipe": { - - - - "version": "1.0.0", - - - - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - - - - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - - - - "engines": { - - - - - "node": ">= 0.8" - - - - } - - - }, - - - "node_modules/util-deprecate": { - - - - "version": "1.0.2", - - - - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - - - - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - - - }, - - - "node_modules/utils-merge": { - - - - "version": "1.0.1", - - - - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - - - - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - - - - "engines": { - - - - - "node": ">= 0.4.0" - - - - } - - - }, - - - "node_modules/vary": { - - - - "version": "1.1.2", - - - - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - - - - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - - - - "engines": { - - - - - "node": ">= 0.8" - - - - } - - - }, - - - "node_modules/webidl-conversions": { - - - - "version": "3.0.1", - - - - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - - - - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - - - }, - - - "node_modules/whatwg-url": { - - - - "version": "5.0.0", - - - - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - - - - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - - - - "dependencies": { - - - - - "tr46": "~0.0.3", - - - - - "webidl-conversions": "^3.0.0" - - - - } - - - }, - - - "node_modules/wide-align": { - - - - "version": "1.1.5", - - - - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - - - - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", - - - - "dependencies": { - - - - - "string-width": "^1.0.2 || 2 || 3 || 4" - - - - } - - - }, - - - "node_modules/wrappy": { - - - - "version": "1.0.2", - - - - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - - - - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - - - }, - - - "node_modules/xtend": { - - - - "version": "4.0.2", - - - - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - - - - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - - - - "engines": { - - - - - "node": ">=0.4" - - - - } - - - }, - - - "node_modules/yallist": { - - - - "version": "4.0.0", - - - - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - - - - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - - - } - - } -<<<<<<< HEAD -======= -======= - - - - - - - "name": "server", - - - - - - - "version": "1.0.0", - - - - - - - "lockfileVersion": 3, - - - - - - - "requires": true, - - - - - - - "packages": { - - - - - - - - - - - - - "": { - - - - - - - - - - - - - - - - - - - "name": "server", - - - - - - - - - - - - - - - - - - - "version": "1.0.0", - - - - - - - - - - - - - - - - - - - "license": "ISC", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - - "@google/generative-ai": "^0.12.0", - - - - - - - - - - - - - - - - - - - - - - - - - - "@heroicons/react": "^1.0.6", - - - - - - - - - - - - - - - - - - - - - - - - - "axios": "^1.6.8", - - - - - - - - - - - - - - - - - - - - - - - - - "bcrypt": "^5.1.1", - - - - - - - - - - - - - - - - - - - - - - - - - "body-parser": "^1.20.2", - - - - - - - - - - - - - - - - - - - - - - - - - "cookie-parser": "^1.4.6", - - - - - - - - - - - - - - - - - - - - - - - - - "cors": "^2.8.5", - - - - - - - - - - - - - - - - - - - - - - - - - "dotenv": "^16.4.5", - - - - - - - - - - - - - - - - - - - - - - - - - "express": "^4.19.2", - - - - - - - - - - - - - - - - - - - - - - - - - "express-session": "^1.18.0", - - - - - - - - - - - - - - - - - - - - - - - - - "memorystore": "^1.6.7", - - - - - - - - - - - - - - - - - - - - - - - - - "nodemailer": "^6.9.13", - - - - - - - - - - - - - - - - - - - - - - - - - "passport": "^0.7.0", - - - - - - - - - - - - - - - - - - - - - - - - - "passport-local": "^1.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "pg": "^8.11.5", - - - - - - - - - - - - - - - - - - - - - - - - - "react-hook-form": "^7.51.5", - - - - - - - - - - - - - - - - - - - - - - - - - "react-router-dom": "^6.23.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - - "node_modules/@google/generative-ai": { - - - - - - - - - - - - - - - - - - - "version": "0.12.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/@google/generative-ai/-/generative-ai-0.12.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-krWjurjEUHSFhCX4lGHMOhbnpBfYZGU31mpHpPBQwcfWm0T+/+wxC4UCAJfkxxc3/HvGJVG8r4AqrffaeDHDlA==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=18.0.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - - "node_modules/@heroicons/react": { - - - - - - - - - - - - - - - - - - - "version": "1.0.6", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/@heroicons/react/-/react-1.0.6.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-JJCXydOFWMDpCP4q13iEplA503MQO3xLoZiKum+955ZCtHINWnx26CUxVxxFQu/uLb4LW3ge15ZpzIkXKkJ8oQ==", - - - - - - - - - - - - - - - - - - - "peerDependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "react": ">= 16" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/@mapbox/node-pre-gyp": { - - - - - - - - - - - - - - - - - - - "version": "1.0.11", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "detect-libc": "^2.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "https-proxy-agent": "^5.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "make-dir": "^3.1.0", - - - - - - - - - - - - - - - - - - - - - - - - - "node-fetch": "^2.6.7", - - - - - - - - - - - - - - - - - - - - - - - - - "nopt": "^5.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "npmlog": "^5.0.1", - - - - - - - - - - - - - - - - - - - - - - - - - "rimraf": "^3.0.2", - - - - - - - - - - - - - - - - - - - - - - - - - "semver": "^7.3.5", - - - - - - - - - - - - - - - - - - - - - - - - - "tar": "^6.1.11" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "bin": { - - - - - - - - - - - - - - - - - - - - - - - - - "node-pre-gyp": "bin/node-pre-gyp" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/@remix-run/router": { - - - - - - - - - - - - - - - - - - - "version": "1.16.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.16.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-Quz1KOffeEf/zwkCBM3kBtH4ZoZ+pT3xIXBG4PPW/XFtDP7EGhtTiC2+gpL9GnR7+Qdet5Oa6cYSvwKYg6kN9Q==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=14.0.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/abbrev": { - - - - - - - - - - - - - - - - - - - "version": "1.1.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/accepts": { - - - - - - - - - - - - - - - - - - - "version": "1.3.8", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "mime-types": "~2.1.34", - - - - - - - - - - - - - - - - - - - - - - - - - "negotiator": "0.6.3" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.6" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/agent-base": { - - - - - - - - - - - - - - - - - - - "version": "6.0.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "debug": "4" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 6.0.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/agent-base/node_modules/debug": { - - - - - - - - - - - - - - - - - - - "version": "4.3.4", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "ms": "2.1.2" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=6.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "peerDependenciesMeta": { - - - - - - - - - - - - - - - - - - - - - - - - - "supports-color": { - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "optional": true - - - - - - - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/agent-base/node_modules/ms": { - - - - - - - - - - - - - - - - - - - "version": "2.1.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/ansi-regex": { - - - - - - - - - - - - - - - - - - - "version": "5.0.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/aproba": { - - - - - - - - - - - - - - - - - - - "version": "2.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/are-we-there-yet": { - - - - - - - - - - - - - - - - - - - "version": "2.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "delegates": "^1.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "readable-stream": "^3.6.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=10" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/array-flatten": { - - - - - - - - - - - - - - - - - - - "version": "1.1.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/asynckit": { - - - - - - - - - - - - - - - - - - - "version": "0.4.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/axios": { - - - - - - - - - - - - - - - - - - - "version": "1.6.8", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.8.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "follow-redirects": "^1.15.6", - - - - - - - - - - - - - - - - - - - - - - - - - "form-data": "^4.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "proxy-from-env": "^1.1.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/balanced-match": { - - - - - - - - - - - - - - - - - - - "version": "1.0.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/bcrypt": { - - - - - - - - - - - - - - - - - - - "version": "5.1.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/bcrypt/-/bcrypt-5.1.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-AGBHOG5hPYZ5Xl9KXzU5iKq9516yEmvCKDg3ecP5kX2aB6UqTeXZxk2ELnDgDm6BQSMlLt9rDB4LoSMx0rYwww==", - - - - - - - - - - - - - - - - - - - "hasInstallScript": true, - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "@mapbox/node-pre-gyp": "^1.0.11", - - - - - - - - - - - - - - - - - - - - - - - - - "node-addon-api": "^5.0.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 10.0.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/body-parser": { - - - - - - - - - - - - - - - - - - - "version": "1.20.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "bytes": "3.1.2", - - - - - - - - - - - - - - - - - - - - - - - - - "content-type": "~1.0.5", - - - - - - - - - - - - - - - - - - - - - - - - - "debug": "2.6.9", - - - - - - - - - - - - - - - - - - - - - - - - - "depd": "2.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "destroy": "1.2.0", - - - - - - - - - - - - - - - - - - - - - - - - - "http-errors": "2.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "iconv-lite": "0.4.24", - - - - - - - - - - - - - - - - - - - - - - - - - "on-finished": "2.4.1", - - - - - - - - - - - - - - - - - - - - - - - - - "qs": "6.11.0", - - - - - - - - - - - - - - - - - - - - - - - - - "raw-body": "2.5.2", - - - - - - - - - - - - - - - - - - - - - - - - - "type-is": "~1.6.18", - - - - - - - - - - - - - - - - - - - - - - - - - "unpipe": "1.0.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.8", - - - - - - - - - - - - - - - - - - - - - - - - - "npm": "1.2.8000 || >= 1.4.16" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/brace-expansion": { - - - - - - - - - - - - - - - - - - - "version": "1.1.11", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "balanced-match": "^1.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "concat-map": "0.0.1" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/bytes": { - - - - - - - - - - - - - - - - - - - "version": "3.1.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/call-bind": { - - - - - - - - - - - - - - - - - - - "version": "1.0.7", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "es-define-property": "^1.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "es-errors": "^1.3.0", - - - - - - - - - - - - - - - - - - - - - - - - - "function-bind": "^1.1.2", - - - - - - - - - - - - - - - - - - - - - - - - - "get-intrinsic": "^1.2.4", - - - - - - - - - - - - - - - - - - - - - - - - - "set-function-length": "^1.2.1" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.4" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "funding": { - - - - - - - - - - - - - - - - - - - - - - - - - "url": "https://github.com/sponsors/ljharb" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/chownr": { - - - - - - - - - - - - - - - - - - - "version": "2.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=10" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/color-support": { - - - - - - - - - - - - - - - - - - - "version": "1.1.3", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - - - - - - - - - - - - - - - - - - - "bin": { - - - - - - - - - - - - - - - - - - - - - - - - - "color-support": "bin.js" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/combined-stream": { - - - - - - - - - - - - - - - - - - - "version": "1.0.8", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "delayed-stream": "~1.0.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/concat-map": { - - - - - - - - - - - - - - - - - - - "version": "0.0.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/console-control-strings": { - - - - - - - - - - - - - - - - - - - "version": "1.1.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/content-disposition": { - - - - - - - - - - - - - - - - - - - "version": "0.5.4", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "safe-buffer": "5.2.1" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.6" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/content-type": { - - - - - - - - - - - - - - - - - - - "version": "1.0.5", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.6" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/cookie": { - - - - - - - - - - - - - - - - - - - "version": "0.6.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.6" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/cookie-parser": { - - - - - - - - - - - - - - - - - - - "version": "1.4.6", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.6.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-z3IzaNjdwUC2olLIB5/ITd0/setiaFMLYiZJle7xg5Fe9KWAceil7xszYfHHBtDFYLSgJduS2Ty0P1uJdPDJeA==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "cookie": "0.4.1", - - - - - - - - - - - - - - - - - - - - - - - - - "cookie-signature": "1.0.6" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.8.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/cookie-parser/node_modules/cookie": { - - - - - - - - - - - - - - - - - - - "version": "0.4.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.6" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/cookie-signature": { - - - - - - - - - - - - - - - - - - - "version": "1.0.6", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/cors": { - - - - - - - - - - - - - - - - - - - "version": "2.8.5", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "object-assign": "^4", - - - - - - - - - - - - - - - - - - - - - - - - - "vary": "^1" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.10" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/debug": { - - - - - - - - - - - - - - - - - - - "version": "2.6.9", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "ms": "2.0.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/define-data-property": { - - - - - - - - - - - - - - - - - - - "version": "1.1.4", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "es-define-property": "^1.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "es-errors": "^1.3.0", - - - - - - - - - - - - - - - - - - - - - - - - - "gopd": "^1.0.1" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.4" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "funding": { - - - - - - - - - - - - - - - - - - - - - - - - - "url": "https://github.com/sponsors/ljharb" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/delayed-stream": { - - - - - - - - - - - - - - - - - - - "version": "1.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=0.4.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/delegates": { - - - - - - - - - - - - - - - - - - - "version": "1.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/depd": { - - - - - - - - - - - - - - - - - - - "version": "2.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/destroy": { - - - - - - - - - - - - - - - - - - - "version": "1.2.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.8", - - - - - - - - - - - - - - - - - - - - - - - - - "npm": "1.2.8000 || >= 1.4.16" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/detect-libc": { - - - - - - - - - - - - - - - - - - - "version": "2.0.3", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/dotenv": { - - - - - - - - - - - - - - - - - - - "version": "16.4.5", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=12" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "funding": { - - - - - - - - - - - - - - - - - - - - - - - - - "url": "https://dotenvx.com" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/ee-first": { - - - - - - - - - - - - - - - - - - - "version": "1.1.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/emoji-regex": { - - - - - - - - - - - - - - - - - - - "version": "8.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/encodeurl": { - - - - - - - - - - - - - - - - - - - "version": "1.0.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/es-define-property": { - - - - - - - - - - - - - - - - - - - "version": "1.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "get-intrinsic": "^1.2.4" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.4" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/es-errors": { - - - - - - - - - - - - - - - - - - - "version": "1.3.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.4" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/escape-html": { - - - - - - - - - - - - - - - - - - - "version": "1.0.3", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/etag": { - - - - - - - - - - - - - - - - - - - "version": "1.8.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.6" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/express": { - - - - - - - - - - - - - - - - - - - "version": "4.19.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "accepts": "~1.3.8", - - - - - - - - - - - - - - - - - - - - - - - - - "array-flatten": "1.1.1", - - - - - - - - - - - - - - - - - - - - - - - - - "body-parser": "1.20.2", - - - - - - - - - - - - - - - - - - - - - - - - - "content-disposition": "0.5.4", - - - - - - - - - - - - - - - - - - - - - - - - - "content-type": "~1.0.4", - - - - - - - - - - - - - - - - - - - - - - - - - "cookie": "0.6.0", - - - - - - - - - - - - - - - - - - - - - - - - - "cookie-signature": "1.0.6", - - - - - - - - - - - - - - - - - - - - - - - - - "debug": "2.6.9", - - - - - - - - - - - - - - - - - - - - - - - - - "depd": "2.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "encodeurl": "~1.0.2", - - - - - - - - - - - - - - - - - - - - - - - - - "escape-html": "~1.0.3", - - - - - - - - - - - - - - - - - - - - - - - - - "etag": "~1.8.1", - - - - - - - - - - - - - - - - - - - - - - - - - "finalhandler": "1.2.0", - - - - - - - - - - - - - - - - - - - - - - - - - "fresh": "0.5.2", - - - - - - - - - - - - - - - - - - - - - - - - - "http-errors": "2.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "merge-descriptors": "1.0.1", - - - - - - - - - - - - - - - - - - - - - - - - - "methods": "~1.1.2", - - - - - - - - - - - - - - - - - - - - - - - - - "on-finished": "2.4.1", - - - - - - - - - - - - - - - - - - - - - - - - - "parseurl": "~1.3.3", - - - - - - - - - - - - - - - - - - - - - - - - - "path-to-regexp": "0.1.7", - - - - - - - - - - - - - - - - - - - - - - - - - "proxy-addr": "~2.0.7", - - - - - - - - - - - - - - - - - - - - - - - - - "qs": "6.11.0", - - - - - - - - - - - - - - - - - - - - - - - - - "range-parser": "~1.2.1", - - - - - - - - - - - - - - - - - - - - - - - - - "safe-buffer": "5.2.1", - - - - - - - - - - - - - - - - - - - - - - - - - "send": "0.18.0", - - - - - - - - - - - - - - - - - - - - - - - - - "serve-static": "1.15.0", - - - - - - - - - - - - - - - - - - - - - - - - - "setprototypeof": "1.2.0", - - - - - - - - - - - - - - - - - - - - - - - - - "statuses": "2.0.1", - - - - - - - - - - - - - - - - - - - - - - - - - "type-is": "~1.6.18", - - - - - - - - - - - - - - - - - - - - - - - - - "utils-merge": "1.0.1", - - - - - - - - - - - - - - - - - - - - - - - - - "vary": "~1.1.2" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.10.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/express-session": { - - - - - - - - - - - - - - - - - - - "version": "1.18.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/express-session/-/express-session-1.18.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-m93QLWr0ju+rOwApSsyso838LQwgfs44QtOP/WBiwtAgPIo/SAh1a5c6nn2BR6mFNZehTpqKDESzP+fRHVbxwQ==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "cookie": "0.6.0", - - - - - - - - - - - - - - - - - - - - - - - - - "cookie-signature": "1.0.7", - - - - - - - - - - - - - - - - - - - - - - - - - "debug": "2.6.9", - - - - - - - - - - - - - - - - - - - - - - - - - "depd": "~2.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "on-headers": "~1.0.2", - - - - - - - - - - - - - - - - - - - - - - - - - "parseurl": "~1.3.3", - - - - - - - - - - - - - - - - - - - - - - - - - "safe-buffer": "5.2.1", - - - - - - - - - - - - - - - - - - - - - - - - - "uid-safe": "~2.1.5" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.8.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/express-session/node_modules/cookie-signature": { - - - - - - - - - - - - - - - - - - - "version": "1.0.7", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/finalhandler": { - - - - - - - - - - - - - - - - - - - "version": "1.2.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "debug": "2.6.9", - - - - - - - - - - - - - - - - - - - - - - - - - "encodeurl": "~1.0.2", - - - - - - - - - - - - - - - - - - - - - - - - - "escape-html": "~1.0.3", - - - - - - - - - - - - - - - - - - - - - - - - - "on-finished": "2.4.1", - - - - - - - - - - - - - - - - - - - - - - - - - "parseurl": "~1.3.3", - - - - - - - - - - - - - - - - - - - - - - - - - "statuses": "2.0.1", - - - - - - - - - - - - - - - - - - - - - - - - - "unpipe": "~1.0.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/follow-redirects": { - - - - - - - - - - - - - - - - - - - "version": "1.15.6", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", - - - - - - - - - - - - - - - - - - - "funding": [ - - - - - - - - - - - - - - - - - - - - - - - - - { - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "type": "individual", - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "url": "https://github.com/sponsors/RubenVerborgh" - - - - - - - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - - - - - - - ], - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=4.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "peerDependenciesMeta": { - - - - - - - - - - - - - - - - - - - - - - - - - "debug": { - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "optional": true - - - - - - - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/form-data": { - - - - - - - - - - - - - - - - - - - "version": "4.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "asynckit": "^0.4.0", - - - - - - - - - - - - - - - - - - - - - - - - - "combined-stream": "^1.0.8", - - - - - - - - - - - - - - - - - - - - - - - - - "mime-types": "^2.1.12" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 6" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/forwarded": { - - - - - - - - - - - - - - - - - - - "version": "0.2.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.6" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/fresh": { - - - - - - - - - - - - - - - - - - - "version": "0.5.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.6" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/fs-minipass": { - - - - - - - - - - - - - - - - - - - "version": "2.1.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "minipass": "^3.0.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/fs-minipass/node_modules/minipass": { - - - - - - - - - - - - - - - - - - - "version": "3.3.6", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "yallist": "^4.0.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/fs.realpath": { - - - - - - - - - - - - - - - - - - - "version": "1.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/function-bind": { - - - - - - - - - - - - - - - - - - - "version": "1.1.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - - - - - - - - - - - - - - - - - - - "funding": { - - - - - - - - - - - - - - - - - - - - - - - - - "url": "https://github.com/sponsors/ljharb" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/gauge": { - - - - - - - - - - - - - - - - - - - "version": "3.0.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "aproba": "^1.0.3 || ^2.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "color-support": "^1.1.2", - - - - - - - - - - - - - - - - - - - - - - - - - "console-control-strings": "^1.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "has-unicode": "^2.0.1", - - - - - - - - - - - - - - - - - - - - - - - - - "object-assign": "^4.1.1", - - - - - - - - - - - - - - - - - - - - - - - - - "signal-exit": "^3.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "string-width": "^4.2.3", - - - - - - - - - - - - - - - - - - - - - - - - - "strip-ansi": "^6.0.1", - - - - - - - - - - - - - - - - - - - - - - - - - "wide-align": "^1.1.2" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=10" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/get-intrinsic": { - - - - - - - - - - - - - - - - - - - "version": "1.2.4", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "es-errors": "^1.3.0", - - - - - - - - - - - - - - - - - - - - - - - - - "function-bind": "^1.1.2", - - - - - - - - - - - - - - - - - - - - - - - - - "has-proto": "^1.0.1", - - - - - - - - - - - - - - - - - - - - - - - - - "has-symbols": "^1.0.3", - - - - - - - - - - - - - - - - - - - - - - - - - "hasown": "^2.0.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.4" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "funding": { - - - - - - - - - - - - - - - - - - - - - - - - - "url": "https://github.com/sponsors/ljharb" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/glob": { - - - - - - - - - - - - - - - - - - - "version": "7.2.3", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "fs.realpath": "^1.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "inflight": "^1.0.4", - - - - - - - - - - - - - - - - - - - - - - - - - "inherits": "2", - - - - - - - - - - - - - - - - - - - - - - - - - "minimatch": "^3.1.1", - - - - - - - - - - - - - - - - - - - - - - - - - "once": "^1.3.0", - - - - - - - - - - - - - - - - - - - - - - - - - "path-is-absolute": "^1.0.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": "*" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "funding": { - - - - - - - - - - - - - - - - - - - - - - - - - "url": "https://github.com/sponsors/isaacs" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/gopd": { - - - - - - - - - - - - - - - - - - - "version": "1.0.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "get-intrinsic": "^1.1.3" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "funding": { - - - - - - - - - - - - - - - - - - - - - - - - - "url": "https://github.com/sponsors/ljharb" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/has-property-descriptors": { - - - - - - - - - - - - - - - - - - - "version": "1.0.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "es-define-property": "^1.0.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "funding": { - - - - - - - - - - - - - - - - - - - - - - - - - "url": "https://github.com/sponsors/ljharb" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/has-proto": { - - - - - - - - - - - - - - - - - - - "version": "1.0.3", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.4" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "funding": { - - - - - - - - - - - - - - - - - - - - - - - - - "url": "https://github.com/sponsors/ljharb" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/has-symbols": { - - - - - - - - - - - - - - - - - - - "version": "1.0.3", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.4" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "funding": { - - - - - - - - - - - - - - - - - - - - - - - - - "url": "https://github.com/sponsors/ljharb" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/has-unicode": { - - - - - - - - - - - - - - - - - - - "version": "2.0.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/hasown": { - - - - - - - - - - - - - - - - - - - "version": "2.0.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "function-bind": "^1.1.2" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.4" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/http-errors": { - - - - - - - - - - - - - - - - - - - "version": "2.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "depd": "2.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "inherits": "2.0.4", - - - - - - - - - - - - - - - - - - - - - - - - - "setprototypeof": "1.2.0", - - - - - - - - - - - - - - - - - - - - - - - - - "statuses": "2.0.1", - - - - - - - - - - - - - - - - - - - - - - - - - "toidentifier": "1.0.1" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/https-proxy-agent": { - - - - - - - - - - - - - - - - - - - "version": "5.0.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "agent-base": "6", - - - - - - - - - - - - - - - - - - - - - - - - - "debug": "4" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 6" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/https-proxy-agent/node_modules/debug": { - - - - - - - - - - - - - - - - - - - "version": "4.3.4", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "ms": "2.1.2" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=6.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "peerDependenciesMeta": { - - - - - - - - - - - - - - - - - - - - - - - - - "supports-color": { - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "optional": true - - - - - - - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/https-proxy-agent/node_modules/ms": { - - - - - - - - - - - - - - - - - - - "version": "2.1.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/iconv-lite": { - - - - - - - - - - - - - - - - - - - "version": "0.4.24", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "safer-buffer": ">= 2.1.2 < 3" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=0.10.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/inflight": { - - - - - - - - - - - - - - - - - - - "version": "1.0.6", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "once": "^1.3.0", - - - - - - - - - - - - - - - - - - - - - - - - - "wrappy": "1" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/inherits": { - - - - - - - - - - - - - - - - - - - "version": "2.0.4", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/ipaddr.js": { - - - - - - - - - - - - - - - - - - - "version": "1.9.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.10" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/is-fullwidth-code-point": { - - - - - - - - - - - - - - - - - - - "version": "3.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/js-tokens": { - - - - - - - - - - - - - - - - - - - "version": "4.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - - - - - - - - - - - - - - - - - - - "peer": true - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/loose-envify": { - - - - - - - - - - - - - - - - - - - "version": "1.4.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - - - - - - - - - - - - - - - - - - - "peer": true, - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "js-tokens": "^3.0.0 || ^4.0.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "bin": { - - - - - - - - - - - - - - - - - - - - - - - - - "loose-envify": "cli.js" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/lru-cache": { - - - - - - - - - - - - - - - - - - - "version": "6.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "yallist": "^4.0.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=10" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/make-dir": { - - - - - - - - - - - - - - - - - - - "version": "3.1.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "semver": "^6.0.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=8" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "funding": { - - - - - - - - - - - - - - - - - - - - - - - - - "url": "https://github.com/sponsors/sindresorhus" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/make-dir/node_modules/semver": { - - - - - - - - - - - - - - - - - - - "version": "6.3.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - - - - - - - - - - - - - - - - - - - "bin": { - - - - - - - - - - - - - - - - - - - - - - - - - "semver": "bin/semver.js" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/media-typer": { - - - - - - - - - - - - - - - - - - - "version": "0.3.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.6" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/memorystore": { - - - - - - - - - - - - - - - - - - - "version": "1.6.7", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/memorystore/-/memorystore-1.6.7.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-OZnmNY/NDrKohPQ+hxp0muBcBKrzKNtHr55DbqSx9hLsYVNnomSAMRAtI7R64t3gf3ID7tHQA7mG4oL3Hu9hdw==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "debug": "^4.3.0", - - - - - - - - - - - - - - - - - - - - - - - - - "lru-cache": "^4.0.3" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=0.10" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/memorystore/node_modules/debug": { - - - - - - - - - - - - - - - - - - - "version": "4.3.4", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "ms": "2.1.2" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=6.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "peerDependenciesMeta": { - - - - - - - - - - - - - - - - - - - - - - - - - "supports-color": { - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "optional": true - - - - - - - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/memorystore/node_modules/lru-cache": { - - - - - - - - - - - - - - - - - - - "version": "4.1.5", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "pseudomap": "^1.0.2", - - - - - - - - - - - - - - - - - - - - - - - - - "yallist": "^2.1.2" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/memorystore/node_modules/ms": { - - - - - - - - - - - - - - - - - - - "version": "2.1.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/memorystore/node_modules/yallist": { - - - - - - - - - - - - - - - - - - - "version": "2.1.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/merge-descriptors": { - - - - - - - - - - - - - - - - - - - "version": "1.0.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/methods": { - - - - - - - - - - - - - - - - - - - "version": "1.1.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.6" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/mime": { - - - - - - - - - - - - - - - - - - - "version": "1.6.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - - - - - - - - - - - - - - - - - - - "bin": { - - - - - - - - - - - - - - - - - - - - - - - - - "mime": "cli.js" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=4" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/mime-db": { - - - - - - - - - - - - - - - - - - - "version": "1.52.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.6" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/mime-types": { - - - - - - - - - - - - - - - - - - - "version": "2.1.35", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "mime-db": "1.52.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.6" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/minimatch": { - - - - - - - - - - - - - - - - - - - "version": "3.1.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "brace-expansion": "^1.1.7" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": "*" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/minipass": { - - - - - - - - - - - - - - - - - - - "version": "5.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/minizlib": { - - - - - - - - - - - - - - - - - - - "version": "2.1.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "minipass": "^3.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "yallist": "^4.0.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/minizlib/node_modules/minipass": { - - - - - - - - - - - - - - - - - - - "version": "3.3.6", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "yallist": "^4.0.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/mkdirp": { - - - - - - - - - - - - - - - - - - - "version": "1.0.4", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - - - - - - - - - - - - - - - - - - - "bin": { - - - - - - - - - - - - - - - - - - - - - - - - - "mkdirp": "bin/cmd.js" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=10" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/ms": { - - - - - - - - - - - - - - - - - - - "version": "2.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/negotiator": { - - - - - - - - - - - - - - - - - - - "version": "0.6.3", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.6" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/node-addon-api": { - - - - - - - - - - - - - - - - - - - "version": "5.1.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/node-fetch": { - - - - - - - - - - - - - - - - - - - "version": "2.7.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "whatwg-url": "^5.0.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": "4.x || >=6.0.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "peerDependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "encoding": "^0.1.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "peerDependenciesMeta": { - - - - - - - - - - - - - - - - - - - - - - - - - "encoding": { - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "optional": true - - - - - - - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/nodemailer": { - - - - - - - - - - - - - - - - - - - "version": "6.9.13", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-6.9.13.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-7o38Yogx6krdoBf3jCAqnIN4oSQFx+fMa0I7dK1D+me9kBxx12D+/33wSb+fhOCtIxvYJ+4x4IMEhmhCKfAiOA==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=6.0.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/nopt": { - - - - - - - - - - - - - - - - - - - "version": "5.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "abbrev": "1" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "bin": { - - - - - - - - - - - - - - - - - - - - - - - - - "nopt": "bin/nopt.js" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=6" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/npmlog": { - - - - - - - - - - - - - - - - - - - "version": "5.0.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "are-we-there-yet": "^2.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "console-control-strings": "^1.1.0", - - - - - - - - - - - - - - - - - - - - - - - - - "gauge": "^3.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "set-blocking": "^2.0.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/object-assign": { - - - - - - - - - - - - - - - - - - - "version": "4.1.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=0.10.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/object-inspect": { - - - - - - - - - - - - - - - - - - - "version": "1.13.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", - - - - - - - - - - - - - - - - - - - "funding": { - - - - - - - - - - - - - - - - - - - - - - - - - "url": "https://github.com/sponsors/ljharb" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/on-finished": { - - - - - - - - - - - - - - - - - - - "version": "2.4.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "ee-first": "1.1.1" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/on-headers": { - - - - - - - - - - - - - - - - - - - "version": "1.0.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/once": { - - - - - - - - - - - - - - - - - - - "version": "1.4.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "wrappy": "1" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/parseurl": { - - - - - - - - - - - - - - - - - - - "version": "1.3.3", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/passport": { - - - - - - - - - - - - - - - - - - - "version": "0.7.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/passport/-/passport-0.7.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-cPLl+qZpSc+ireUvt+IzqbED1cHHkDoVYMo30jbJIdOOjQ1MQYZBPiNvmi8UM6lJuOpTPXJGZQk0DtC4y61MYQ==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "passport-strategy": "1.x.x", - - - - - - - - - - - - - - - - - - - - - - - - - "pause": "0.0.1", - - - - - - - - - - - - - - - - - - - - - - - - - "utils-merge": "^1.0.1" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.4.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "funding": { - - - - - - - - - - - - - - - - - - - - - - - - - "type": "github", - - - - - - - - - - - - - - - - - - - - - - - - - "url": "https://github.com/sponsors/jaredhanson" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/passport-local": { - - - - - - - - - - - - - - - - - - - "version": "1.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/passport-local/-/passport-local-1.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-9wCE6qKznvf9mQYYbgJ3sVOHmCWoUNMVFoZzNoznmISbhnNNPhN9xfY3sLmScHMetEJeoY7CXwfhCe7argfQow==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "passport-strategy": "1.x.x" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.4.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/passport-strategy": { - - - - - - - - - - - - - - - - - - - "version": "1.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/passport-strategy/-/passport-strategy-1.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-CB97UUvDKJde2V0KDWWB3lyf6PC3FaZP7YxZ2G8OAtn9p4HI9j9JLP9qjOGZFvyl8uwNT8qM+hGnz/n16NI7oA==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.4.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/path-is-absolute": { - - - - - - - - - - - - - - - - - - - "version": "1.0.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=0.10.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/path-to-regexp": { - - - - - - - - - - - - - - - - - - - "version": "0.1.7", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/pause": { - - - - - - - - - - - - - - - - - - - "version": "0.0.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/pause/-/pause-0.0.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-KG8UEiEVkR3wGEb4m5yZkVCzigAD+cVEJck2CzYZO37ZGJfctvVptVO192MwrtPhzONn6go8ylnOdMhKqi4nfg==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/pg": { - - - - - - - - - - - - - - - - - - - "version": "8.11.5", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/pg/-/pg-8.11.5.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-jqgNHSKL5cbDjFlHyYsCXmQDrfIX/3RsNwYqpd4N0Kt8niLuNoRNH+aazv6cOd43gPh9Y4DjQCtb+X0MH0Hvnw==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "pg-connection-string": "^2.6.4", - - - - - - - - - - - - - - - - - - - - - - - - - "pg-pool": "^3.6.2", - - - - - - - - - - - - - - - - - - - - - - - - - "pg-protocol": "^1.6.1", - - - - - - - - - - - - - - - - - - - - - - - - - "pg-types": "^2.1.0", - - - - - - - - - - - - - - - - - - - - - - - - - "pgpass": "1.x" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 8.0.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "optionalDependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "pg-cloudflare": "^1.1.1" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "peerDependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "pg-native": ">=3.0.1" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "peerDependenciesMeta": { - - - - - - - - - - - - - - - - - - - - - - - - - "pg-native": { - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "optional": true - - - - - - - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/pg-cloudflare": { - - - - - - - - - - - - - - - - - - - "version": "1.1.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/pg-cloudflare/-/pg-cloudflare-1.1.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-xWPagP/4B6BgFO+EKz3JONXv3YDgvkbVrGw2mTo3D6tVDQRh1e7cqVGvyR3BE+eQgAvx1XhW/iEASj4/jCWl3Q==", - - - - - - - - - - - - - - - - - - - "optional": true - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/pg-connection-string": { - - - - - - - - - - - - - - - - - - - "version": "2.6.4", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.6.4.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-v+Z7W/0EO707aNMaAEfiGnGL9sxxumwLl2fJvCQtMn9Fxsg+lPpPkdcyBSv/KFgpGdYkMfn+EI1Or2EHjpgLCA==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/pg-int8": { - - - - - - - - - - - - - - - - - - - "version": "1.0.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=4.0.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/pg-pool": { - - - - - - - - - - - - - - - - - - - "version": "3.6.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-3.6.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-Htjbg8BlwXqSBQ9V8Vjtc+vzf/6fVUuak/3/XXKA9oxZprwW3IMDQTGHP+KDmVL7rtd+R1QjbnCFPuTHm3G4hg==", - - - - - - - - - - - - - - - - - - - "peerDependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "pg": ">=8.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/pg-protocol": { - - - - - - - - - - - - - - - - - - - "version": "1.6.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.6.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-jPIlvgoD63hrEuihvIg+tJhoGjUsLPn6poJY9N5CnlPd91c2T18T/9zBtLxZSb1EhYxBRoZJtzScCaWlYLtktg==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/pg-types": { - - - - - - - - - - - - - - - - - - - "version": "2.2.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "pg-int8": "1.0.1", - - - - - - - - - - - - - - - - - - - - - - - - - "postgres-array": "~2.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "postgres-bytea": "~1.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "postgres-date": "~1.0.4", - - - - - - - - - - - - - - - - - - - - - - - - - "postgres-interval": "^1.1.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=4" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/pgpass": { - - - - - - - - - - - - - - - - - - - "version": "1.0.5", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "split2": "^4.1.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/postgres-array": { - - - - - - - - - - - - - - - - - - - "version": "2.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=4" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/postgres-bytea": { - - - - - - - - - - - - - - - - - - - "version": "1.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=0.10.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/postgres-date": { - - - - - - - - - - - - - - - - - - - "version": "1.0.7", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=0.10.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/postgres-interval": { - - - - - - - - - - - - - - - - - - - "version": "1.2.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "xtend": "^4.0.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=0.10.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/proxy-addr": { - - - - - - - - - - - - - - - - - - - "version": "2.0.7", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "forwarded": "0.2.0", - - - - - - - - - - - - - - - - - - - - - - - - - "ipaddr.js": "1.9.1" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.10" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/proxy-from-env": { - - - - - - - - - - - - - - - - - - - "version": "1.1.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/pseudomap": { - - - - - - - - - - - - - - - - - - - "version": "1.0.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/qs": { - - - - - - - - - - - - - - - - - - - "version": "6.11.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "side-channel": "^1.0.4" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=0.6" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "funding": { - - - - - - - - - - - - - - - - - - - - - - - - - "url": "https://github.com/sponsors/ljharb" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/random-bytes": { - - - - - - - - - - - - - - - - - - - "version": "1.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-iv7LhNVO047HzYR3InF6pUcUsPQiHTM1Qal51DcGSuZFBil1aBBWG5eHPNek7bvILMaYJ/8RU1e8w1AMdHmLQQ==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/range-parser": { - - - - - - - - - - - - - - - - - - - "version": "1.2.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.6" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/raw-body": { - - - - - - - - - - - - - - - - - - - "version": "2.5.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "bytes": "3.1.2", - - - - - - - - - - - - - - - - - - - - - - - - - "http-errors": "2.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "iconv-lite": "0.4.24", - - - - - - - - - - - - - - - - - - - - - - - - - "unpipe": "1.0.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/react": { - - - - - - - - - - - - - - - - - - - "version": "18.3.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", - - - - - - - - - - - - - - - - - - - "peer": true, - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "loose-envify": "^1.1.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=0.10.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/react-dom": { - - - - - - - - - - - - - - - - - - - "version": "18.3.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", - - - - - - - - - - - - - - - - - - - "peer": true, - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "loose-envify": "^1.1.0", - - - - - - - - - - - - - - - - - - - - - - - - - "scheduler": "^0.23.2" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "peerDependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "react": "^18.3.1" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/react-hook-form": { - - - - - - - - - - - - - - - - - - - "version": "7.51.5", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.51.5.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-J2ILT5gWx1XUIJRETiA7M19iXHlG74+6O3KApzvqB/w8S5NQR7AbU8HVZrMALdmDgWpRPYiZJl0zx8Z4L2mP6Q==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=12.22.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "funding": { - - - - - - - - - - - - - - - - - - - - - - - - - "type": "opencollective", - - - - - - - - - - - - - - - - - - - - - - - - - "url": "https://opencollective.com/react-hook-form" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "peerDependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "react": "^16.8.0 || ^17 || ^18" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/react-router": { - - - - - - - - - - - - - - - - - - - "version": "6.23.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.23.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-wPMZ8S2TuPadH0sF5irFGjkNLIcRvOSaEe7v+JER8508dyJumm6XZB1u5kztlX0RVq6AzRVndzqcUh6sFIauzA==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "@remix-run/router": "1.16.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=14.0.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "peerDependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "react": ">=16.8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/react-router-dom": { - - - - - - - - - - - - - - - - - - - "version": "6.23.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.23.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-Q9YaSYvubwgbal2c9DJKfx6hTNoBp3iJDsl+Duva/DwxoJH+OTXkxGpql4iUK2sla/8z4RpjAm6EWx1qUDuopQ==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "@remix-run/router": "1.16.0", - - - - - - - - - - - - - - - - - - - - - - - - - "react-router": "6.23.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=14.0.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "peerDependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "react": ">=16.8", - - - - - - - - - - - - - - - - - - - - - - - - - "react-dom": ">=16.8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/readable-stream": { - - - - - - - - - - - - - - - - - - - "version": "3.6.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "inherits": "^2.0.3", - - - - - - - - - - - - - - - - - - - - - - - - - "string_decoder": "^1.1.1", - - - - - - - - - - - - - - - - - - - - - - - - - "util-deprecate": "^1.0.1" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 6" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/rimraf": { - - - - - - - - - - - - - - - - - - - "version": "3.0.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "glob": "^7.1.3" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "bin": { - - - - - - - - - - - - - - - - - - - - - - - - - "rimraf": "bin.js" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "funding": { - - - - - - - - - - - - - - - - - - - - - - - - - "url": "https://github.com/sponsors/isaacs" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/safe-buffer": { - - - - - - - - - - - - - - - - - - - "version": "5.2.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - - - - - - - - - - - - - - - - - - - "funding": [ - - - - - - - - - - - - - - - - - - - - - - - - - { - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "type": "github", - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "url": "https://github.com/sponsors/feross" - - - - - - - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - - - - - - - { - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "type": "patreon", - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "url": "https://www.patreon.com/feross" - - - - - - - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - - - - - - - { - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "type": "consulting", - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "url": "https://feross.org/support" - - - - - - - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - - - - - - - ] - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/safer-buffer": { - - - - - - - - - - - - - - - - - - - "version": "2.1.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/scheduler": { - - - - - - - - - - - - - - - - - - - "version": "0.23.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", - - - - - - - - - - - - - - - - - - - "peer": true, - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "loose-envify": "^1.1.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/semver": { - - - - - - - - - - - - - - - - - - - "version": "7.6.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "lru-cache": "^6.0.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "bin": { - - - - - - - - - - - - - - - - - - - - - - - - - "semver": "bin/semver.js" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=10" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/send": { - - - - - - - - - - - - - - - - - - - "version": "0.18.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "debug": "2.6.9", - - - - - - - - - - - - - - - - - - - - - - - - - "depd": "2.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "destroy": "1.2.0", - - - - - - - - - - - - - - - - - - - - - - - - - "encodeurl": "~1.0.2", - - - - - - - - - - - - - - - - - - - - - - - - - "escape-html": "~1.0.3", - - - - - - - - - - - - - - - - - - - - - - - - - "etag": "~1.8.1", - - - - - - - - - - - - - - - - - - - - - - - - - "fresh": "0.5.2", - - - - - - - - - - - - - - - - - - - - - - - - - "http-errors": "2.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "mime": "1.6.0", - - - - - - - - - - - - - - - - - - - - - - - - - "ms": "2.1.3", - - - - - - - - - - - - - - - - - - - - - - - - - "on-finished": "2.4.1", - - - - - - - - - - - - - - - - - - - - - - - - - "range-parser": "~1.2.1", - - - - - - - - - - - - - - - - - - - - - - - - - "statuses": "2.0.1" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.8.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/send/node_modules/ms": { - - - - - - - - - - - - - - - - - - - "version": "2.1.3", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/serve-static": { - - - - - - - - - - - - - - - - - - - "version": "1.15.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "encodeurl": "~1.0.2", - - - - - - - - - - - - - - - - - - - - - - - - - "escape-html": "~1.0.3", - - - - - - - - - - - - - - - - - - - - - - - - - "parseurl": "~1.3.3", - - - - - - - - - - - - - - - - - - - - - - - - - "send": "0.18.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.8.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/set-blocking": { - - - - - - - - - - - - - - - - - - - "version": "2.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/set-function-length": { - - - - - - - - - - - - - - - - - - - "version": "1.2.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "define-data-property": "^1.1.4", - - - - - - - - - - - - - - - - - - - - - - - - - "es-errors": "^1.3.0", - - - - - - - - - - - - - - - - - - - - - - - - - "function-bind": "^1.1.2", - - - - - - - - - - - - - - - - - - - - - - - - - "get-intrinsic": "^1.2.4", - - - - - - - - - - - - - - - - - - - - - - - - - "gopd": "^1.0.1", - - - - - - - - - - - - - - - - - - - - - - - - - "has-property-descriptors": "^1.0.2" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.4" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/setprototypeof": { - - - - - - - - - - - - - - - - - - - "version": "1.2.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/side-channel": { - - - - - - - - - - - - - - - - - - - "version": "1.0.6", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "call-bind": "^1.0.7", - - - - - - - - - - - - - - - - - - - - - - - - - "es-errors": "^1.3.0", - - - - - - - - - - - - - - - - - - - - - - - - - "get-intrinsic": "^1.2.4", - - - - - - - - - - - - - - - - - - - - - - - - - "object-inspect": "^1.13.1" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.4" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "funding": { - - - - - - - - - - - - - - - - - - - - - - - - - "url": "https://github.com/sponsors/ljharb" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/signal-exit": { - - - - - - - - - - - - - - - - - - - "version": "3.0.7", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/split2": { - - - - - - - - - - - - - - - - - - - "version": "4.2.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 10.x" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/statuses": { - - - - - - - - - - - - - - - - - - - "version": "2.0.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/string_decoder": { - - - - - - - - - - - - - - - - - - - "version": "1.3.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "safe-buffer": "~5.2.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/string-width": { - - - - - - - - - - - - - - - - - - - "version": "4.2.3", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "emoji-regex": "^8.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "is-fullwidth-code-point": "^3.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "strip-ansi": "^6.0.1" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/strip-ansi": { - - - - - - - - - - - - - - - - - - - "version": "6.0.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "ansi-regex": "^5.0.1" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/tar": { - - - - - - - - - - - - - - - - - - - "version": "6.2.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "chownr": "^2.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "fs-minipass": "^2.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "minipass": "^5.0.0", - - - - - - - - - - - - - - - - - - - - - - - - - "minizlib": "^2.1.1", - - - - - - - - - - - - - - - - - - - - - - - - - "mkdirp": "^1.0.3", - - - - - - - - - - - - - - - - - - - - - - - - - "yallist": "^4.0.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=10" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/toidentifier": { - - - - - - - - - - - - - - - - - - - "version": "1.0.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=0.6" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/tr46": { - - - - - - - - - - - - - - - - - - - "version": "0.0.3", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/type-is": { - - - - - - - - - - - - - - - - - - - "version": "1.6.18", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "media-typer": "0.3.0", - - - - - - - - - - - - - - - - - - - - - - - - - "mime-types": "~2.1.24" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.6" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/uid-safe": { - - - - - - - - - - - - - - - - - - - "version": "2.1.5", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.5.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "random-bytes": "~1.0.0" - - - - - - - - - - - - - - - - - - - }, - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/unpipe": { - - - - - - - - - - - - - - - - - - - "version": "1.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/util-deprecate": { - - - - - - - - - - - - - - - - - - - "version": "1.0.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/utils-merge": { - - - - - - - - - - - - - - - - - - - "version": "1.0.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.4.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/vary": { - - - - - - - - - - - - - - - - - - - "version": "1.1.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">= 0.8" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/webidl-conversions": { - - - - - - - - - - - - - - - - - - - "version": "3.0.1", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/whatwg-url": { - - - - - - - - - - - - - - - - - - - "version": "5.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "tr46": "~0.0.3", - - - - - - - - - - - - - - - - - - - - - - - - - "webidl-conversions": "^3.0.0" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/wide-align": { - - - - - - - - - - - - - - - - - - - "version": "1.1.5", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", - - - - - - - - - - - - - - - - - - - "dependencies": { - - - - - - - - - - - - - - - - - - - - - - - - - "string-width": "^1.0.2 || 2 || 3 || 4" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/wrappy": { - - - - - - - - - - - - - - - - - - - "version": "1.0.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/xtend": { - - - - - - - - - - - - - - - - - - - "version": "4.0.2", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - - - - - - - - - - - - - - - - - - - "engines": { - - - - - - - - - - - - - - - - - - - - - - - - - "node": ">=0.4" - - - - - - - - - - - - - - - - - - - } - - - - - - - - - - - - - }, - - - - - - - - - - - - - "node_modules/yallist": { - - - - - - - - - - - - - - - - - - - "version": "4.0.0", - - - - - - - - - - - - - - - - - - - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - - - - - - - - - - - - - - - - - - - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - - - - - - - - - - - - - } - - - - - - - } ->>>>>>> f67ce517f3f5746e9226597827bf4aadea990a31 ->>>>>>> bf1c289df12cc931efc536050a6a1c00970ac373 -} +{ +<<<<<<< HEAD +======= +<<<<<<< HEAD +>>>>>>> bf1c289df12cc931efc536050a6a1c00970ac373 + + + + + + + + + "name": "server", + + + + + + + + "version": "1.0.0", + + + + + + + + "lockfileVersion": 3, + + + + + + + + "requires": true, + + + + + + + + "packages": { + + + + + + + + + + + + + + + "": { + + + + + + + + + + + + + + + + + + + + + + "name": "server", + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.0", + + + + + + + + + + + + + + + + + + + + + + "license": "ISC", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "@google/generative-ai": "^0.12.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "@heroicons/react": "^1.0.6", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "axios": "^1.6.8", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "bcrypt": "^5.1.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "body-parser": "^1.20.2", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "cookie-parser": "^1.4.6", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "cors": "^2.8.5", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "dotenv": "^16.4.5", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "express": "^4.19.2", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "express-session": "^1.18.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "memorystore": "^1.6.7", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "nodemailer": "^6.9.13", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "passport": "^0.7.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "passport-local": "^1.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "pg": "^8.11.5", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "react-hook-form": "^7.51.5", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "react-router-dom": "^6.23.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/@google/generative-ai": { + + + + + + + + + + + + + + + + + + + + + + "version": "0.12.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/@google/generative-ai/-/generative-ai-0.12.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-krWjurjEUHSFhCX4lGHMOhbnpBfYZGU31mpHpPBQwcfWm0T+/+wxC4UCAJfkxxc3/HvGJVG8r4AqrffaeDHDlA==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=18.0.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/@heroicons/react": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.6", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/@heroicons/react/-/react-1.0.6.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-JJCXydOFWMDpCP4q13iEplA503MQO3xLoZiKum+955ZCtHINWnx26CUxVxxFQu/uLb4LW3ge15ZpzIkXKkJ8oQ==", + + + + + + + + + + + + + + + + + + + + + + "peerDependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "react": ">= 16" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/@mapbox/node-pre-gyp": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.11", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "detect-libc": "^2.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "https-proxy-agent": "^5.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "make-dir": "^3.1.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node-fetch": "^2.6.7", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "nopt": "^5.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "npmlog": "^5.0.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "rimraf": "^3.0.2", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "semver": "^7.3.5", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "tar": "^6.1.11" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "bin": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node-pre-gyp": "bin/node-pre-gyp" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/@remix-run/router": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.16.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.16.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-Quz1KOffeEf/zwkCBM3kBtH4ZoZ+pT3xIXBG4PPW/XFtDP7EGhtTiC2+gpL9GnR7+Qdet5Oa6cYSvwKYg6kN9Q==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=14.0.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/abbrev": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.1.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/accepts": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.3.8", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "mime-types": "~2.1.34", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "negotiator": "0.6.3" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.6" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/agent-base": { + + + + + + + + + + + + + + + + + + + + + + "version": "6.0.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "debug": "4" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 6.0.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/agent-base/node_modules/debug": { + + + + + + + + + + + + + + + + + + + + + + "version": "4.3.4", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "ms": "2.1.2" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=6.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "peerDependenciesMeta": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "supports-color": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "optional": true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/agent-base/node_modules/ms": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.1.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/ansi-regex": { + + + + + + + + + + + + + + + + + + + + + + "version": "5.0.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/aproba": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/are-we-there-yet": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "delegates": "^1.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "readable-stream": "^3.6.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=10" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/array-flatten": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.1.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/asynckit": { + + + + + + + + + + + + + + + + + + + + + + "version": "0.4.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/axios": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.6.8", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.8.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "follow-redirects": "^1.15.6", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "form-data": "^4.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "proxy-from-env": "^1.1.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/balanced-match": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/bcrypt": { + + + + + + + + + + + + + + + + + + + + + + "version": "5.1.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/bcrypt/-/bcrypt-5.1.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-AGBHOG5hPYZ5Xl9KXzU5iKq9516yEmvCKDg3ecP5kX2aB6UqTeXZxk2ELnDgDm6BQSMlLt9rDB4LoSMx0rYwww==", + + + + + + + + + + + + + + + + + + + + + + "hasInstallScript": true, + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "@mapbox/node-pre-gyp": "^1.0.11", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node-addon-api": "^5.0.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 10.0.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/body-parser": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.20.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "bytes": "3.1.2", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "content-type": "~1.0.5", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "debug": "2.6.9", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "depd": "2.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "destroy": "1.2.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "http-errors": "2.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "iconv-lite": "0.4.24", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "on-finished": "2.4.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "qs": "6.11.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "raw-body": "2.5.2", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "type-is": "~1.6.18", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "unpipe": "1.0.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.8", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "npm": "1.2.8000 || >= 1.4.16" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/brace-expansion": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.1.11", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "balanced-match": "^1.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "concat-map": "0.0.1" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/bytes": { + + + + + + + + + + + + + + + + + + + + + + "version": "3.1.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/call-bind": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.7", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "es-define-property": "^1.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "es-errors": "^1.3.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "function-bind": "^1.1.2", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "get-intrinsic": "^1.2.4", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "set-function-length": "^1.2.1" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.4" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "funding": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "url": "https://github.com/sponsors/ljharb" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/chownr": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=10" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/color-support": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.1.3", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + + + + + + + + + + + + + + + + + + + + + + "bin": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "color-support": "bin.js" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/combined-stream": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.8", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "delayed-stream": "~1.0.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/concat-map": { + + + + + + + + + + + + + + + + + + + + + + "version": "0.0.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/console-control-strings": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.1.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/content-disposition": { + + + + + + + + + + + + + + + + + + + + + + "version": "0.5.4", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "safe-buffer": "5.2.1" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.6" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/content-type": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.5", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.6" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/cookie": { + + + + + + + + + + + + + + + + + + + + + + "version": "0.6.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.6" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/cookie-parser": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.4.6", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.6.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-z3IzaNjdwUC2olLIB5/ITd0/setiaFMLYiZJle7xg5Fe9KWAceil7xszYfHHBtDFYLSgJduS2Ty0P1uJdPDJeA==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "cookie": "0.4.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "cookie-signature": "1.0.6" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.8.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/cookie-parser/node_modules/cookie": { + + + + + + + + + + + + + + + + + + + + + + "version": "0.4.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.6" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/cookie-signature": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.6", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/cors": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.8.5", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "object-assign": "^4", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "vary": "^1" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.10" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/debug": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.6.9", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "ms": "2.0.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/define-data-property": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.1.4", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "es-define-property": "^1.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "es-errors": "^1.3.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "gopd": "^1.0.1" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.4" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "funding": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "url": "https://github.com/sponsors/ljharb" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/delayed-stream": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=0.4.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/delegates": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/depd": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/destroy": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.2.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.8", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "npm": "1.2.8000 || >= 1.4.16" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/detect-libc": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.0.3", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/dotenv": { + + + + + + + + + + + + + + + + + + + + + + "version": "16.4.5", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=12" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "funding": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "url": "https://dotenvx.com" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/ee-first": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.1.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/emoji-regex": { + + + + + + + + + + + + + + + + + + + + + + "version": "8.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/encodeurl": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/es-define-property": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "get-intrinsic": "^1.2.4" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.4" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/es-errors": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.3.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.4" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/escape-html": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.3", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/etag": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.8.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.6" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/express": { + + + + + + + + + + + + + + + + + + + + + + "version": "4.19.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "accepts": "~1.3.8", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "array-flatten": "1.1.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "body-parser": "1.20.2", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "content-disposition": "0.5.4", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "content-type": "~1.0.4", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "cookie": "0.6.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "cookie-signature": "1.0.6", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "debug": "2.6.9", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "depd": "2.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "encodeurl": "~1.0.2", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "escape-html": "~1.0.3", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "etag": "~1.8.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "finalhandler": "1.2.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "fresh": "0.5.2", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "http-errors": "2.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "merge-descriptors": "1.0.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "methods": "~1.1.2", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "on-finished": "2.4.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "parseurl": "~1.3.3", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "path-to-regexp": "0.1.7", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "proxy-addr": "~2.0.7", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "qs": "6.11.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "range-parser": "~1.2.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "safe-buffer": "5.2.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "send": "0.18.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "serve-static": "1.15.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "setprototypeof": "1.2.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "statuses": "2.0.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "type-is": "~1.6.18", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "utils-merge": "1.0.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "vary": "~1.1.2" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.10.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/express-session": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.18.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/express-session/-/express-session-1.18.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-m93QLWr0ju+rOwApSsyso838LQwgfs44QtOP/WBiwtAgPIo/SAh1a5c6nn2BR6mFNZehTpqKDESzP+fRHVbxwQ==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "cookie": "0.6.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "cookie-signature": "1.0.7", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "debug": "2.6.9", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "depd": "~2.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "on-headers": "~1.0.2", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "parseurl": "~1.3.3", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "safe-buffer": "5.2.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "uid-safe": "~2.1.5" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.8.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/express-session/node_modules/cookie-signature": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.7", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/finalhandler": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.2.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "debug": "2.6.9", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "encodeurl": "~1.0.2", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "escape-html": "~1.0.3", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "on-finished": "2.4.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "parseurl": "~1.3.3", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "statuses": "2.0.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "unpipe": "~1.0.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/follow-redirects": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.15.6", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", + + + + + + + + + + + + + + + + + + + + + + "funding": [ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "type": "individual", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "url": "https://github.com/sponsors/RubenVerborgh" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + + + + + + + + ], + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=4.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "peerDependenciesMeta": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "debug": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "optional": true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/form-data": { + + + + + + + + + + + + + + + + + + + + + + "version": "4.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "asynckit": "^0.4.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "combined-stream": "^1.0.8", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "mime-types": "^2.1.12" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 6" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/forwarded": { + + + + + + + + + + + + + + + + + + + + + + "version": "0.2.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.6" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/fresh": { + + + + + + + + + + + + + + + + + + + + + + "version": "0.5.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.6" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/fs-minipass": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.1.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "minipass": "^3.0.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/fs-minipass/node_modules/minipass": { + + + + + + + + + + + + + + + + + + + + + + "version": "3.3.6", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "yallist": "^4.0.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/fs.realpath": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/function-bind": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.1.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + + + + + + + + + + + + + + + + + + + + + + "funding": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "url": "https://github.com/sponsors/ljharb" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/gauge": { + + + + + + + + + + + + + + + + + + + + + + "version": "3.0.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "aproba": "^1.0.3 || ^2.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "color-support": "^1.1.2", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "console-control-strings": "^1.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "has-unicode": "^2.0.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "object-assign": "^4.1.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "signal-exit": "^3.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "string-width": "^4.2.3", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "strip-ansi": "^6.0.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "wide-align": "^1.1.2" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=10" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/get-intrinsic": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.2.4", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "es-errors": "^1.3.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "function-bind": "^1.1.2", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "has-proto": "^1.0.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "has-symbols": "^1.0.3", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "hasown": "^2.0.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.4" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "funding": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "url": "https://github.com/sponsors/ljharb" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/glob": { + + + + + + + + + + + + + + + + + + + + + + "version": "7.2.3", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "fs.realpath": "^1.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "inflight": "^1.0.4", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "inherits": "2", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "minimatch": "^3.1.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "once": "^1.3.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "path-is-absolute": "^1.0.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": "*" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "funding": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "url": "https://github.com/sponsors/isaacs" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/gopd": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "get-intrinsic": "^1.1.3" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "funding": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "url": "https://github.com/sponsors/ljharb" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/has-property-descriptors": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "es-define-property": "^1.0.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "funding": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "url": "https://github.com/sponsors/ljharb" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/has-proto": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.3", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.4" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "funding": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "url": "https://github.com/sponsors/ljharb" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/has-symbols": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.3", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.4" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "funding": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "url": "https://github.com/sponsors/ljharb" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/has-unicode": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.0.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/hasown": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.0.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "function-bind": "^1.1.2" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.4" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/http-errors": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "depd": "2.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "inherits": "2.0.4", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "setprototypeof": "1.2.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "statuses": "2.0.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "toidentifier": "1.0.1" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/https-proxy-agent": { + + + + + + + + + + + + + + + + + + + + + + "version": "5.0.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "agent-base": "6", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "debug": "4" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 6" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/https-proxy-agent/node_modules/debug": { + + + + + + + + + + + + + + + + + + + + + + "version": "4.3.4", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "ms": "2.1.2" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=6.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "peerDependenciesMeta": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "supports-color": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "optional": true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/https-proxy-agent/node_modules/ms": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.1.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/iconv-lite": { + + + + + + + + + + + + + + + + + + + + + + "version": "0.4.24", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "safer-buffer": ">= 2.1.2 < 3" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=0.10.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/inflight": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.6", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "once": "^1.3.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "wrappy": "1" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/inherits": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.0.4", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/ipaddr.js": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.9.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.10" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/is-fullwidth-code-point": { + + + + + + + + + + + + + + + + + + + + + + "version": "3.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/js-tokens": { + + + + + + + + + + + + + + + + + + + + + + "version": "4.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + + + + + + + + + + + + + + + + + + + + + + "peer": true + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/loose-envify": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.4.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + + + + + + + + + + + + + + + + + + + + + + "peer": true, + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "js-tokens": "^3.0.0 || ^4.0.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "bin": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "loose-envify": "cli.js" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/lru-cache": { + + + + + + + + + + + + + + + + + + + + + + "version": "6.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "yallist": "^4.0.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=10" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/make-dir": { + + + + + + + + + + + + + + + + + + + + + + "version": "3.1.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "semver": "^6.0.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=8" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "funding": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "url": "https://github.com/sponsors/sindresorhus" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/make-dir/node_modules/semver": { + + + + + + + + + + + + + + + + + + + + + + "version": "6.3.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + + + + + + + + + + + + + + + + + + + + + + "bin": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "semver": "bin/semver.js" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/media-typer": { + + + + + + + + + + + + + + + + + + + + + + "version": "0.3.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.6" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/memorystore": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.6.7", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/memorystore/-/memorystore-1.6.7.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-OZnmNY/NDrKohPQ+hxp0muBcBKrzKNtHr55DbqSx9hLsYVNnomSAMRAtI7R64t3gf3ID7tHQA7mG4oL3Hu9hdw==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "debug": "^4.3.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "lru-cache": "^4.0.3" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=0.10" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/memorystore/node_modules/debug": { + + + + + + + + + + + + + + + + + + + + + + "version": "4.3.4", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "ms": "2.1.2" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=6.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "peerDependenciesMeta": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "supports-color": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "optional": true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/memorystore/node_modules/lru-cache": { + + + + + + + + + + + + + + + + + + + + + + "version": "4.1.5", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "pseudomap": "^1.0.2", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "yallist": "^2.1.2" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/memorystore/node_modules/ms": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.1.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/memorystore/node_modules/yallist": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.1.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/merge-descriptors": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/methods": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.1.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.6" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/mime": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.6.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + + + + + + + + + + + + + + + + + + + + + + "bin": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "mime": "cli.js" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=4" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/mime-db": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.52.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.6" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/mime-types": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.1.35", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "mime-db": "1.52.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.6" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/minimatch": { + + + + + + + + + + + + + + + + + + + + + + "version": "3.1.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "brace-expansion": "^1.1.7" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": "*" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/minipass": { + + + + + + + + + + + + + + + + + + + + + + "version": "5.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/minizlib": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.1.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "minipass": "^3.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "yallist": "^4.0.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/minizlib/node_modules/minipass": { + + + + + + + + + + + + + + + + + + + + + + "version": "3.3.6", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "yallist": "^4.0.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/mkdirp": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.4", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + + + + + + + + + + + + + + + + + + + + + + "bin": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "mkdirp": "bin/cmd.js" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=10" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/ms": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/negotiator": { + + + + + + + + + + + + + + + + + + + + + + "version": "0.6.3", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.6" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/node-addon-api": { + + + + + + + + + + + + + + + + + + + + + + "version": "5.1.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/node-fetch": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.7.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "whatwg-url": "^5.0.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": "4.x || >=6.0.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "peerDependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "encoding": "^0.1.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "peerDependenciesMeta": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "encoding": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "optional": true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/nodemailer": { + + + + + + + + + + + + + + + + + + + + + + "version": "6.9.13", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-6.9.13.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-7o38Yogx6krdoBf3jCAqnIN4oSQFx+fMa0I7dK1D+me9kBxx12D+/33wSb+fhOCtIxvYJ+4x4IMEhmhCKfAiOA==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=6.0.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/nopt": { + + + + + + + + + + + + + + + + + + + + + + "version": "5.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "abbrev": "1" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "bin": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "nopt": "bin/nopt.js" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=6" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/npmlog": { + + + + + + + + + + + + + + + + + + + + + + "version": "5.0.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "are-we-there-yet": "^2.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "console-control-strings": "^1.1.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "gauge": "^3.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "set-blocking": "^2.0.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/object-assign": { + + + + + + + + + + + + + + + + + + + + + + "version": "4.1.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=0.10.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/object-inspect": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.13.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + + + + + + + + + + + + + + + + + + + + + + "funding": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "url": "https://github.com/sponsors/ljharb" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/on-finished": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.4.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "ee-first": "1.1.1" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/on-headers": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/once": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.4.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "wrappy": "1" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/parseurl": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.3.3", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/passport": { + + + + + + + + + + + + + + + + + + + + + + "version": "0.7.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/passport/-/passport-0.7.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-cPLl+qZpSc+ireUvt+IzqbED1cHHkDoVYMo30jbJIdOOjQ1MQYZBPiNvmi8UM6lJuOpTPXJGZQk0DtC4y61MYQ==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "passport-strategy": "1.x.x", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "pause": "0.0.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "utils-merge": "^1.0.1" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.4.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "funding": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "type": "github", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "url": "https://github.com/sponsors/jaredhanson" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/passport-local": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/passport-local/-/passport-local-1.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-9wCE6qKznvf9mQYYbgJ3sVOHmCWoUNMVFoZzNoznmISbhnNNPhN9xfY3sLmScHMetEJeoY7CXwfhCe7argfQow==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "passport-strategy": "1.x.x" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.4.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/passport-strategy": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/passport-strategy/-/passport-strategy-1.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-CB97UUvDKJde2V0KDWWB3lyf6PC3FaZP7YxZ2G8OAtn9p4HI9j9JLP9qjOGZFvyl8uwNT8qM+hGnz/n16NI7oA==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.4.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/path-is-absolute": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=0.10.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/path-to-regexp": { + + + + + + + + + + + + + + + + + + + + + + "version": "0.1.7", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/pause": { + + + + + + + + + + + + + + + + + + + + + + "version": "0.0.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/pause/-/pause-0.0.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-KG8UEiEVkR3wGEb4m5yZkVCzigAD+cVEJck2CzYZO37ZGJfctvVptVO192MwrtPhzONn6go8ylnOdMhKqi4nfg==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/pg": { + + + + + + + + + + + + + + + + + + + + + + "version": "8.11.5", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/pg/-/pg-8.11.5.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-jqgNHSKL5cbDjFlHyYsCXmQDrfIX/3RsNwYqpd4N0Kt8niLuNoRNH+aazv6cOd43gPh9Y4DjQCtb+X0MH0Hvnw==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "pg-connection-string": "^2.6.4", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "pg-pool": "^3.6.2", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "pg-protocol": "^1.6.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "pg-types": "^2.1.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "pgpass": "1.x" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 8.0.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "optionalDependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "pg-cloudflare": "^1.1.1" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "peerDependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "pg-native": ">=3.0.1" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "peerDependenciesMeta": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "pg-native": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "optional": true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/pg-cloudflare": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.1.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/pg-cloudflare/-/pg-cloudflare-1.1.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-xWPagP/4B6BgFO+EKz3JONXv3YDgvkbVrGw2mTo3D6tVDQRh1e7cqVGvyR3BE+eQgAvx1XhW/iEASj4/jCWl3Q==", + + + + + + + + + + + + + + + + + + + + + + "optional": true + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/pg-connection-string": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.6.4", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.6.4.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-v+Z7W/0EO707aNMaAEfiGnGL9sxxumwLl2fJvCQtMn9Fxsg+lPpPkdcyBSv/KFgpGdYkMfn+EI1Or2EHjpgLCA==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/pg-int8": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=4.0.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/pg-pool": { + + + + + + + + + + + + + + + + + + + + + + "version": "3.6.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-3.6.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-Htjbg8BlwXqSBQ9V8Vjtc+vzf/6fVUuak/3/XXKA9oxZprwW3IMDQTGHP+KDmVL7rtd+R1QjbnCFPuTHm3G4hg==", + + + + + + + + + + + + + + + + + + + + + + "peerDependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "pg": ">=8.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/pg-protocol": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.6.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.6.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-jPIlvgoD63hrEuihvIg+tJhoGjUsLPn6poJY9N5CnlPd91c2T18T/9zBtLxZSb1EhYxBRoZJtzScCaWlYLtktg==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/pg-types": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.2.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "pg-int8": "1.0.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "postgres-array": "~2.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "postgres-bytea": "~1.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "postgres-date": "~1.0.4", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "postgres-interval": "^1.1.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=4" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/pgpass": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.5", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "split2": "^4.1.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/postgres-array": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=4" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/postgres-bytea": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=0.10.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/postgres-date": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.7", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=0.10.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/postgres-interval": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.2.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "xtend": "^4.0.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=0.10.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/proxy-addr": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.0.7", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "forwarded": "0.2.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "ipaddr.js": "1.9.1" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.10" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/proxy-from-env": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.1.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/pseudomap": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/qs": { + + + + + + + + + + + + + + + + + + + + + + "version": "6.11.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "side-channel": "^1.0.4" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=0.6" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "funding": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "url": "https://github.com/sponsors/ljharb" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/random-bytes": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-iv7LhNVO047HzYR3InF6pUcUsPQiHTM1Qal51DcGSuZFBil1aBBWG5eHPNek7bvILMaYJ/8RU1e8w1AMdHmLQQ==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/range-parser": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.2.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.6" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/raw-body": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.5.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "bytes": "3.1.2", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "http-errors": "2.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "iconv-lite": "0.4.24", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "unpipe": "1.0.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/react": { + + + + + + + + + + + + + + + + + + + + + + "version": "18.3.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", + + + + + + + + + + + + + + + + + + + + + + "peer": true, + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "loose-envify": "^1.1.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=0.10.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/react-dom": { + + + + + + + + + + + + + + + + + + + + + + "version": "18.3.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + + + + + + + + + + + + + + + + + + + + + + "peer": true, + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "loose-envify": "^1.1.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "scheduler": "^0.23.2" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "peerDependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "react": "^18.3.1" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/react-hook-form": { + + + + + + + + + + + + + + + + + + + + + + "version": "7.51.5", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.51.5.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-J2ILT5gWx1XUIJRETiA7M19iXHlG74+6O3KApzvqB/w8S5NQR7AbU8HVZrMALdmDgWpRPYiZJl0zx8Z4L2mP6Q==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=12.22.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "funding": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "type": "opencollective", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "url": "https://opencollective.com/react-hook-form" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "peerDependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "react": "^16.8.0 || ^17 || ^18" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/react-router": { + + + + + + + + + + + + + + + + + + + + + + "version": "6.23.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.23.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-wPMZ8S2TuPadH0sF5irFGjkNLIcRvOSaEe7v+JER8508dyJumm6XZB1u5kztlX0RVq6AzRVndzqcUh6sFIauzA==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "@remix-run/router": "1.16.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=14.0.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "peerDependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "react": ">=16.8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/react-router-dom": { + + + + + + + + + + + + + + + + + + + + + + "version": "6.23.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.23.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-Q9YaSYvubwgbal2c9DJKfx6hTNoBp3iJDsl+Duva/DwxoJH+OTXkxGpql4iUK2sla/8z4RpjAm6EWx1qUDuopQ==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "@remix-run/router": "1.16.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "react-router": "6.23.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=14.0.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "peerDependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "react": ">=16.8", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "react-dom": ">=16.8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/readable-stream": { + + + + + + + + + + + + + + + + + + + + + + "version": "3.6.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "inherits": "^2.0.3", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "string_decoder": "^1.1.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "util-deprecate": "^1.0.1" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 6" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/rimraf": { + + + + + + + + + + + + + + + + + + + + + + "version": "3.0.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "glob": "^7.1.3" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "bin": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "rimraf": "bin.js" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "funding": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "url": "https://github.com/sponsors/isaacs" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/safe-buffer": { + + + + + + + + + + + + + + + + + + + + + + "version": "5.2.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + + + + + + + + + + + + + + + + + + + + + + "funding": [ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "type": "github", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "url": "https://github.com/sponsors/feross" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "type": "patreon", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "url": "https://www.patreon.com/feross" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "type": "consulting", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "url": "https://feross.org/support" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + + + + + + + + ] + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/safer-buffer": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.1.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/scheduler": { + + + + + + + + + + + + + + + + + + + + + + "version": "0.23.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + + + + + + + + + + + + + + + + + + + + + + "peer": true, + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "loose-envify": "^1.1.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/semver": { + + + + + + + + + + + + + + + + + + + + + + "version": "7.6.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "lru-cache": "^6.0.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "bin": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "semver": "bin/semver.js" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=10" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/send": { + + + + + + + + + + + + + + + + + + + + + + "version": "0.18.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "debug": "2.6.9", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "depd": "2.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "destroy": "1.2.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "encodeurl": "~1.0.2", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "escape-html": "~1.0.3", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "etag": "~1.8.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "fresh": "0.5.2", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "http-errors": "2.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "mime": "1.6.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "ms": "2.1.3", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "on-finished": "2.4.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "range-parser": "~1.2.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "statuses": "2.0.1" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.8.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/send/node_modules/ms": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.1.3", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/serve-static": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.15.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "encodeurl": "~1.0.2", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "escape-html": "~1.0.3", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "parseurl": "~1.3.3", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "send": "0.18.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.8.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/set-blocking": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/set-function-length": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.2.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "define-data-property": "^1.1.4", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "es-errors": "^1.3.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "function-bind": "^1.1.2", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "get-intrinsic": "^1.2.4", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "gopd": "^1.0.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "has-property-descriptors": "^1.0.2" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.4" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/setprototypeof": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.2.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/side-channel": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.6", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "call-bind": "^1.0.7", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "es-errors": "^1.3.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "get-intrinsic": "^1.2.4", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "object-inspect": "^1.13.1" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.4" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "funding": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "url": "https://github.com/sponsors/ljharb" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/signal-exit": { + + + + + + + + + + + + + + + + + + + + + + "version": "3.0.7", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/split2": { + + + + + + + + + + + + + + + + + + + + + + "version": "4.2.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 10.x" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/statuses": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.0.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/string_decoder": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.3.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "safe-buffer": "~5.2.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/string-width": { + + + + + + + + + + + + + + + + + + + + + + "version": "4.2.3", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "emoji-regex": "^8.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "is-fullwidth-code-point": "^3.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "strip-ansi": "^6.0.1" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/strip-ansi": { + + + + + + + + + + + + + + + + + + + + + + "version": "6.0.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "ansi-regex": "^5.0.1" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/tar": { + + + + + + + + + + + + + + + + + + + + + + "version": "6.2.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "chownr": "^2.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "fs-minipass": "^2.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "minipass": "^5.0.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "minizlib": "^2.1.1", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "mkdirp": "^1.0.3", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "yallist": "^4.0.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=10" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/toidentifier": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=0.6" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/tr46": { + + + + + + + + + + + + + + + + + + + + + + "version": "0.0.3", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/type-is": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.6.18", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "media-typer": "0.3.0", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "mime-types": "~2.1.24" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.6" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/uid-safe": { + + + + + + + + + + + + + + + + + + + + + + "version": "2.1.5", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.5.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "random-bytes": "~1.0.0" + + + + + + + + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/unpipe": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/util-deprecate": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/utils-merge": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.4.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/vary": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.1.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">= 0.8" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/webidl-conversions": { + + + + + + + + + + + + + + + + + + + + + + "version": "3.0.1", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/whatwg-url": { + + + + + + + + + + + + + + + + + + + + + + "version": "5.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "tr46": "~0.0.3", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "webidl-conversions": "^3.0.0" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/wide-align": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.1.5", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + + + + + + + + + + + + + + + + + + + + + + "dependencies": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "string-width": "^1.0.2 || 2 || 3 || 4" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/wrappy": { + + + + + + + + + + + + + + + + + + + + + + "version": "1.0.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/xtend": { + + + + + + + + + + + + + + + + + + + + + + "version": "4.0.2", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + + + + + + + + + + + + + + + + + + + + + + "engines": { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "node": ">=0.4" + + + + + + + + + + + + + + + + + + + + + + } + + + + + + + + + + + + + + + }, + + + + + + + + + + + + + + + "node_modules/yallist": { + + + + + + + + + + + + + + + + + + + + + + "version": "4.0.0", + + + + + + + + + + + + + + + + + + + + + + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + + + + + + + + + + + + + + + + + + + + + + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + + + + + + + + + + + + + } + + + + + + + + } +}