112 |
115 |
116 |
117 |
118 | - handleIconClick('User')} style={{ marginRight: '50px', cursor: 'pointer' }}>
119 |
120 |
121 | - setIsNotificationOpen(!isNotificationOpen)} style={{ marginRight: '50px', cursor: 'pointer', position: 'relative' }}>
122 |
123 | {unreadCount > 0 && (
124 | {unreadCount}
125 | )}
126 |
127 | - handleIconClick('Payment')} style={{ marginRight: '50px', cursor: 'pointer' }}>
128 |
129 |
130 | - handleIconClick('Home')} style={{ marginRight: '50px', cursor: 'pointer' }}>
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 | {darkMode ? : }
139 |
140 |
setShowLogoutPanel(!showLogoutPanel)} style={{ cursor: 'pointer' }}>
141 |
142 |
143 |
144 |
145 | {showLogoutPanel && (
146 |
157 |
Are you sure you want to logout?
158 |
168 |
169 | )}
170 |
171 | {/* Notification Slide Panel */}
172 |
173 |
174 |
Notifications
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 |
184 |
185 | {filteredNotifications.length === 0 ? (
186 |
No notifications
187 | ) : (
188 | filteredNotifications.map(item => (
189 |
markAsRead(item.id)}
193 | >
194 |
{item.user}
195 |
{item.message}
196 |
{item.time}
197 |
198 | ))
199 | )}
200 |
201 |
202 |
203 | );
204 | };
205 |
206 | export default Navbar;
207 |
--------------------------------------------------------------------------------
/Frontend/Roomzy/src/components/Listing/listing2.jsx:
--------------------------------------------------------------------------------
1 | import React, { useState } from "react";
2 | import "./listing2.css"; // Ensure this path is correct
3 |
4 | const initialState = {
5 | listingType: "",
6 | occupancyType: "",
7 | societyName: "",
8 | city: "",
9 | locality: "",
10 | bedrooms: "",
11 | balcony: "",
12 | floorNumber: "",
13 | totalFloors: "",
14 | furnishedStatus: "",
15 | bathrooms: "",
16 | availableFrom: "",
17 | monthlyRent: "",
18 | securityDeposit: "",
19 | maintenanceCharge: "",
20 | description: "",
21 | photo: null,
22 | };
23 |
24 | function Listing() {
25 | const [form, setForm] = useState(initialState);
26 | const [errors, setErrors] = useState({});
27 | const [photoPreview, setPhotoPreview] = useState(null);
28 |
29 | const handleChange = (e) => {
30 | const { name, value, type } = e.target;
31 | if (type === "file") {
32 | const file = e.target.files[0];
33 | if (file && file.type === "image/jpeg") {
34 | setForm({ ...form, photo: file });
35 | setPhotoPreview(URL.createObjectURL(file));
36 | } else {
37 | setForm({ ...form, photo: null });
38 | setPhotoPreview(null);
39 | }
40 | } else {
41 | setForm({ ...form, [name]: value });
42 | }
43 | };
44 |
45 | const validate = () => {
46 | let temp = {};
47 | if (!form.listingType) temp.listingType = "Required";
48 | if (!form.occupancyType) temp.occupancyType = "Required";
49 | if (!form.societyName) temp.societyName = "Required";
50 | if (!form.city) temp.city = "Required";
51 | if (!form.locality) temp.locality = "Required";
52 | if (!form.bedrooms) temp.bedrooms = "Required";
53 | if (form.balcony === "") temp.balcony = "Required";
54 | if (!form.floorNumber) temp.floorNumber = "Required";
55 | if (!form.totalFloors) temp.totalFloors = "Required";
56 | if (!form.furnishedStatus) temp.furnishedStatus = "Required";
57 | if (!form.bathrooms) temp.bathrooms = "Required";
58 | if (!form.availableFrom) temp.availableFrom = "Required";
59 | if (!form.monthlyRent) temp.monthlyRent = "Required";
60 | if (!form.securityDeposit) temp.securityDeposit = "Required";
61 | if (!form.maintenanceCharge) temp.maintenanceCharge = "Required";
62 | if (!form.description) temp.description = "Required";
63 | if (!form.photo) temp.photo = "JPG photo required";
64 | setErrors(temp);
65 | return Object.keys(temp).length === 0;
66 | };
67 |
68 | const handleSubmit = (e) => {
69 | e.preventDefault();
70 | if (validate()) {
71 | // Here you can send 'form' data to backend using fetch/axios API call.
72 | alert("Listing submitted successfully!");
73 | setForm(initialState);
74 | setPhotoPreview(null);
75 | setErrors({});
76 | }
77 | };
78 |
79 | return (
80 |
277 | );
278 | }
279 |
280 | export default Listing;
--------------------------------------------------------------------------------
/Backend/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "backend",
3 | "version": "1.0.0",
4 | "lockfileVersion": 3,
5 | "requires": true,
6 | "packages": {
7 | "": {
8 | "name": "backend",
9 | "version": "1.0.0",
10 | "license": "ISC",
11 | "dependencies": {
12 | "bcryptjs": "^3.0.0",
13 | "cloudinary": "^1.41.3",
14 | "cookie-parser": "^1.4.7",
15 | "cors": "^2.8.5",
16 | "dotenv": "^16.4.7",
17 | "express": "^4.21.2",
18 | "express-validator": "^7.2.1",
19 | "http-status-codes": "^2.3.0",
20 | "jsonwebtoken": "^9.0.2",
21 | "mongoose": "^8.10.1",
22 | "multer": "^1.4.5-lts.1",
23 | "multer-storage-cloudinary": "^4.0.0",
24 | "node-modules": "^0.0.1",
25 | "nodemailer": "^6.10.0",
26 | "winston": "^3.17.0"
27 | },
28 | "devDependencies": {
29 | "@types/express": "^5.0.0",
30 | "@types/node": "^22.12.0",
31 | "ts-node": "^10.9.2",
32 | "typescript": "^5.7.3"
33 | }
34 | },
35 | "node_modules/@colors/colors": {
36 | "version": "1.6.0",
37 | "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz",
38 | "integrity": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==",
39 | "license": "MIT",
40 | "engines": {
41 | "node": ">=0.1.90"
42 | }
43 | },
44 | "node_modules/@cspotcode/source-map-support": {
45 | "version": "0.8.1",
46 | "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz",
47 | "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==",
48 | "dev": true,
49 | "license": "MIT",
50 | "dependencies": {
51 | "@jridgewell/trace-mapping": "0.3.9"
52 | },
53 | "engines": {
54 | "node": ">=12"
55 | }
56 | },
57 | "node_modules/@dabh/diagnostics": {
58 | "version": "2.0.3",
59 | "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz",
60 | "integrity": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==",
61 | "license": "MIT",
62 | "dependencies": {
63 | "colorspace": "1.1.x",
64 | "enabled": "2.0.x",
65 | "kuler": "^2.0.0"
66 | }
67 | },
68 | "node_modules/@jridgewell/resolve-uri": {
69 | "version": "3.1.2",
70 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
71 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
72 | "dev": true,
73 | "license": "MIT",
74 | "engines": {
75 | "node": ">=6.0.0"
76 | }
77 | },
78 | "node_modules/@jridgewell/sourcemap-codec": {
79 | "version": "1.5.0",
80 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
81 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
82 | "dev": true,
83 | "license": "MIT"
84 | },
85 | "node_modules/@jridgewell/trace-mapping": {
86 | "version": "0.3.9",
87 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz",
88 | "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==",
89 | "dev": true,
90 | "license": "MIT",
91 | "dependencies": {
92 | "@jridgewell/resolve-uri": "^3.0.3",
93 | "@jridgewell/sourcemap-codec": "^1.4.10"
94 | }
95 | },
96 | "node_modules/@mongodb-js/saslprep": {
97 | "version": "1.2.0",
98 | "resolved": "https://registry.npmjs.org/@mongodb-js/saslprep/-/saslprep-1.2.0.tgz",
99 | "integrity": "sha512-+ywrb0AqkfaYuhHs6LxKWgqbh3I72EpEgESCw37o+9qPx9WTCkgDm2B+eMrwehGtHBWHFU4GXvnSCNiFhhausg==",
100 | "license": "MIT",
101 | "dependencies": {
102 | "sparse-bitfield": "^3.0.3"
103 | }
104 | },
105 | "node_modules/@tsconfig/node10": {
106 | "version": "1.0.11",
107 | "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz",
108 | "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==",
109 | "dev": true,
110 | "license": "MIT"
111 | },
112 | "node_modules/@tsconfig/node12": {
113 | "version": "1.0.11",
114 | "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz",
115 | "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==",
116 | "dev": true,
117 | "license": "MIT"
118 | },
119 | "node_modules/@tsconfig/node14": {
120 | "version": "1.0.3",
121 | "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz",
122 | "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==",
123 | "dev": true,
124 | "license": "MIT"
125 | },
126 | "node_modules/@tsconfig/node16": {
127 | "version": "1.0.4",
128 | "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz",
129 | "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==",
130 | "dev": true,
131 | "license": "MIT"
132 | },
133 | "node_modules/@types/body-parser": {
134 | "version": "1.19.5",
135 | "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz",
136 | "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==",
137 | "dev": true,
138 | "license": "MIT",
139 | "dependencies": {
140 | "@types/connect": "*",
141 | "@types/node": "*"
142 | }
143 | },
144 | "node_modules/@types/connect": {
145 | "version": "3.4.38",
146 | "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz",
147 | "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==",
148 | "dev": true,
149 | "license": "MIT",
150 | "dependencies": {
151 | "@types/node": "*"
152 | }
153 | },
154 | "node_modules/@types/express": {
155 | "version": "5.0.0",
156 | "resolved": "https://registry.npmjs.org/@types/express/-/express-5.0.0.tgz",
157 | "integrity": "sha512-DvZriSMehGHL1ZNLzi6MidnsDhUZM/x2pRdDIKdwbUNqqwHxMlRdkxtn6/EPKyqKpHqTl/4nRZsRNLpZxZRpPQ==",
158 | "dev": true,
159 | "license": "MIT",
160 | "dependencies": {
161 | "@types/body-parser": "*",
162 | "@types/express-serve-static-core": "^5.0.0",
163 | "@types/qs": "*",
164 | "@types/serve-static": "*"
165 | }
166 | },
167 | "node_modules/@types/express-serve-static-core": {
168 | "version": "5.0.6",
169 | "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.6.tgz",
170 | "integrity": "sha512-3xhRnjJPkULekpSzgtoNYYcTWgEZkp4myc+Saevii5JPnHNvHMRlBSHDbs7Bh1iPPoVTERHEZXyhyLbMEsExsA==",
171 | "dev": true,
172 | "license": "MIT",
173 | "dependencies": {
174 | "@types/node": "*",
175 | "@types/qs": "*",
176 | "@types/range-parser": "*",
177 | "@types/send": "*"
178 | }
179 | },
180 | "node_modules/@types/http-errors": {
181 | "version": "2.0.4",
182 | "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz",
183 | "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==",
184 | "dev": true,
185 | "license": "MIT"
186 | },
187 | "node_modules/@types/mime": {
188 | "version": "1.3.5",
189 | "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz",
190 | "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==",
191 | "dev": true,
192 | "license": "MIT"
193 | },
194 | "node_modules/@types/node": {
195 | "version": "22.12.0",
196 | "resolved": "https://registry.npmjs.org/@types/node/-/node-22.12.0.tgz",
197 | "integrity": "sha512-Fll2FZ1riMjNmlmJOdAyY5pUbkftXslB5DgEzlIuNaiWhXd00FhWxVC/r4yV/4wBb9JfImTu+jiSvXTkJ7F/gA==",
198 | "dev": true,
199 | "license": "MIT",
200 | "dependencies": {
201 | "undici-types": "~6.20.0"
202 | }
203 | },
204 | "node_modules/@types/qs": {
205 | "version": "6.9.18",
206 | "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.18.tgz",
207 | "integrity": "sha512-kK7dgTYDyGqS+e2Q4aK9X3D7q234CIZ1Bv0q/7Z5IwRDoADNU81xXJK/YVyLbLTZCoIwUoDoffFeF+p/eIklAA==",
208 | "dev": true,
209 | "license": "MIT"
210 | },
211 | "node_modules/@types/range-parser": {
212 | "version": "1.2.7",
213 | "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz",
214 | "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==",
215 | "dev": true,
216 | "license": "MIT"
217 | },
218 | "node_modules/@types/send": {
219 | "version": "0.17.4",
220 | "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz",
221 | "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==",
222 | "dev": true,
223 | "license": "MIT",
224 | "dependencies": {
225 | "@types/mime": "^1",
226 | "@types/node": "*"
227 | }
228 | },
229 | "node_modules/@types/serve-static": {
230 | "version": "1.15.7",
231 | "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz",
232 | "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==",
233 | "dev": true,
234 | "license": "MIT",
235 | "dependencies": {
236 | "@types/http-errors": "*",
237 | "@types/node": "*",
238 | "@types/send": "*"
239 | }
240 | },
241 | "node_modules/@types/triple-beam": {
242 | "version": "1.3.5",
243 | "resolved": "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.5.tgz",
244 | "integrity": "sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==",
245 | "license": "MIT"
246 | },
247 | "node_modules/@types/webidl-conversions": {
248 | "version": "7.0.3",
249 | "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.3.tgz",
250 | "integrity": "sha512-CiJJvcRtIgzadHCYXw7dqEnMNRjhGZlYK05Mj9OyktqV8uVT8fD2BFOB7S1uwBE3Kj2Z+4UyPmFw/Ixgw/LAlA==",
251 | "license": "MIT"
252 | },
253 | "node_modules/@types/whatwg-url": {
254 | "version": "11.0.5",
255 | "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-11.0.5.tgz",
256 | "integrity": "sha512-coYR071JRaHa+xoEvvYqvnIHaVqaYrLPbsufM9BF63HkwI5Lgmy2QR8Q5K/lYDYo5AK82wOvSOS0UsLTpTG7uQ==",
257 | "license": "MIT",
258 | "dependencies": {
259 | "@types/webidl-conversions": "*"
260 | }
261 | },
262 | "node_modules/accepts": {
263 | "version": "1.3.8",
264 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
265 | "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
266 | "license": "MIT",
267 | "dependencies": {
268 | "mime-types": "~2.1.34",
269 | "negotiator": "0.6.3"
270 | },
271 | "engines": {
272 | "node": ">= 0.6"
273 | }
274 | },
275 | "node_modules/acorn": {
276 | "version": "8.14.0",
277 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz",
278 | "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==",
279 | "dev": true,
280 | "license": "MIT",
281 | "bin": {
282 | "acorn": "bin/acorn"
283 | },
284 | "engines": {
285 | "node": ">=0.4.0"
286 | }
287 | },
288 | "node_modules/acorn-walk": {
289 | "version": "8.3.4",
290 | "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz",
291 | "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==",
292 | "dev": true,
293 | "license": "MIT",
294 | "dependencies": {
295 | "acorn": "^8.11.0"
296 | },
297 | "engines": {
298 | "node": ">=0.4.0"
299 | }
300 | },
301 | "node_modules/append-field": {
302 | "version": "1.0.0",
303 | "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz",
304 | "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==",
305 | "license": "MIT"
306 | },
307 | "node_modules/arg": {
308 | "version": "4.1.3",
309 | "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz",
310 | "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==",
311 | "dev": true,
312 | "license": "MIT"
313 | },
314 | "node_modules/array-flatten": {
315 | "version": "1.1.1",
316 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
317 | "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
318 | "license": "MIT"
319 | },
320 | "node_modules/async": {
321 | "version": "3.2.6",
322 | "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz",
323 | "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==",
324 | "license": "MIT"
325 | },
326 | "node_modules/bcryptjs": {
327 | "version": "3.0.0",
328 | "resolved": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-3.0.0.tgz",
329 | "integrity": "sha512-Q2vVGpGC7B7m9wggpcA5lq4OYR5OS1nrXoUpnH9MmogXU8HpxzKg63uxtCrLebY5v/y3o0r7JcGCpR/vTGGn7A==",
330 | "license": "BSD-3-Clause",
331 | "bin": {
332 | "bcrypt": "bin/bcrypt"
333 | }
334 | },
335 | "node_modules/body-parser": {
336 | "version": "1.20.3",
337 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz",
338 | "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==",
339 | "license": "MIT",
340 | "dependencies": {
341 | "bytes": "3.1.2",
342 | "content-type": "~1.0.5",
343 | "debug": "2.6.9",
344 | "depd": "2.0.0",
345 | "destroy": "1.2.0",
346 | "http-errors": "2.0.0",
347 | "iconv-lite": "0.4.24",
348 | "on-finished": "2.4.1",
349 | "qs": "6.13.0",
350 | "raw-body": "2.5.2",
351 | "type-is": "~1.6.18",
352 | "unpipe": "1.0.0"
353 | },
354 | "engines": {
355 | "node": ">= 0.8",
356 | "npm": "1.2.8000 || >= 1.4.16"
357 | }
358 | },
359 | "node_modules/bson": {
360 | "version": "6.10.3",
361 | "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.3.tgz",
362 | "integrity": "sha512-MTxGsqgYTwfshYWTRdmZRC+M7FnG1b4y7RO7p2k3X24Wq0yv1m77Wsj0BzlPzd/IowgESfsruQCUToa7vbOpPQ==",
363 | "license": "Apache-2.0",
364 | "engines": {
365 | "node": ">=16.20.1"
366 | }
367 | },
368 | "node_modules/buffer-equal-constant-time": {
369 | "version": "1.0.1",
370 | "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
371 | "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==",
372 | "license": "BSD-3-Clause"
373 | },
374 | "node_modules/buffer-from": {
375 | "version": "1.1.2",
376 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
377 | "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
378 | "license": "MIT"
379 | },
380 | "node_modules/busboy": {
381 | "version": "1.6.0",
382 | "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz",
383 | "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==",
384 | "dependencies": {
385 | "streamsearch": "^1.1.0"
386 | },
387 | "engines": {
388 | "node": ">=10.16.0"
389 | }
390 | },
391 | "node_modules/bytes": {
392 | "version": "3.1.2",
393 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
394 | "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
395 | "license": "MIT",
396 | "engines": {
397 | "node": ">= 0.8"
398 | }
399 | },
400 | "node_modules/call-bind-apply-helpers": {
401 | "version": "1.0.1",
402 | "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz",
403 | "integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==",
404 | "license": "MIT",
405 | "dependencies": {
406 | "es-errors": "^1.3.0",
407 | "function-bind": "^1.1.2"
408 | },
409 | "engines": {
410 | "node": ">= 0.4"
411 | }
412 | },
413 | "node_modules/call-bound": {
414 | "version": "1.0.3",
415 | "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz",
416 | "integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==",
417 | "license": "MIT",
418 | "dependencies": {
419 | "call-bind-apply-helpers": "^1.0.1",
420 | "get-intrinsic": "^1.2.6"
421 | },
422 | "engines": {
423 | "node": ">= 0.4"
424 | },
425 | "funding": {
426 | "url": "https://github.com/sponsors/ljharb"
427 | }
428 | },
429 | "node_modules/cloudinary": {
430 | "version": "1.41.3",
431 | "resolved": "https://registry.npmjs.org/cloudinary/-/cloudinary-1.41.3.tgz",
432 | "integrity": "sha512-4o84y+E7dbif3lMns+p3UW6w6hLHEifbX/7zBJvaih1E9QNMZITENQ14GPYJC4JmhygYXsuuBb9bRA3xWEoOfg==",
433 | "license": "MIT",
434 | "dependencies": {
435 | "cloudinary-core": "^2.13.0",
436 | "core-js": "^3.30.1",
437 | "lodash": "^4.17.21",
438 | "q": "^1.5.1"
439 | },
440 | "engines": {
441 | "node": ">=0.6"
442 | }
443 | },
444 | "node_modules/cloudinary-core": {
445 | "version": "2.13.1",
446 | "resolved": "https://registry.npmjs.org/cloudinary-core/-/cloudinary-core-2.13.1.tgz",
447 | "integrity": "sha512-z53GPNWnvU0Zi+ns8CIVbZBfj7ps/++zDvwIyiFuq5p1MoK+KUCg0k5mBceDDHTnx1gHmHUd9aohS+gDxPNt6w==",
448 | "license": "MIT",
449 | "peerDependencies": {
450 | "lodash": ">=4.0"
451 | }
452 | },
453 | "node_modules/color": {
454 | "version": "3.2.1",
455 | "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz",
456 | "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==",
457 | "license": "MIT",
458 | "dependencies": {
459 | "color-convert": "^1.9.3",
460 | "color-string": "^1.6.0"
461 | }
462 | },
463 | "node_modules/color-convert": {
464 | "version": "1.9.3",
465 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
466 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
467 | "license": "MIT",
468 | "dependencies": {
469 | "color-name": "1.1.3"
470 | }
471 | },
472 | "node_modules/color-name": {
473 | "version": "1.1.3",
474 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
475 | "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
476 | "license": "MIT"
477 | },
478 | "node_modules/color-string": {
479 | "version": "1.9.1",
480 | "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz",
481 | "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
482 | "license": "MIT",
483 | "dependencies": {
484 | "color-name": "^1.0.0",
485 | "simple-swizzle": "^0.2.2"
486 | }
487 | },
488 | "node_modules/colorspace": {
489 | "version": "1.1.4",
490 | "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz",
491 | "integrity": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==",
492 | "license": "MIT",
493 | "dependencies": {
494 | "color": "^3.1.3",
495 | "text-hex": "1.0.x"
496 | }
497 | },
498 | "node_modules/concat-stream": {
499 | "version": "1.6.2",
500 | "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
501 | "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
502 | "engines": [
503 | "node >= 0.8"
504 | ],
505 | "license": "MIT",
506 | "dependencies": {
507 | "buffer-from": "^1.0.0",
508 | "inherits": "^2.0.3",
509 | "readable-stream": "^2.2.2",
510 | "typedarray": "^0.0.6"
511 | }
512 | },
513 | "node_modules/concat-stream/node_modules/readable-stream": {
514 | "version": "2.3.8",
515 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
516 | "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
517 | "license": "MIT",
518 | "dependencies": {
519 | "core-util-is": "~1.0.0",
520 | "inherits": "~2.0.3",
521 | "isarray": "~1.0.0",
522 | "process-nextick-args": "~2.0.0",
523 | "safe-buffer": "~5.1.1",
524 | "string_decoder": "~1.1.1",
525 | "util-deprecate": "~1.0.1"
526 | }
527 | },
528 | "node_modules/concat-stream/node_modules/safe-buffer": {
529 | "version": "5.1.2",
530 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
531 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
532 | "license": "MIT"
533 | },
534 | "node_modules/concat-stream/node_modules/string_decoder": {
535 | "version": "1.1.1",
536 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
537 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
538 | "license": "MIT",
539 | "dependencies": {
540 | "safe-buffer": "~5.1.0"
541 | }
542 | },
543 | "node_modules/content-disposition": {
544 | "version": "0.5.4",
545 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
546 | "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
547 | "license": "MIT",
548 | "dependencies": {
549 | "safe-buffer": "5.2.1"
550 | },
551 | "engines": {
552 | "node": ">= 0.6"
553 | }
554 | },
555 | "node_modules/content-type": {
556 | "version": "1.0.5",
557 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
558 | "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
559 | "license": "MIT",
560 | "engines": {
561 | "node": ">= 0.6"
562 | }
563 | },
564 | "node_modules/cookie": {
565 | "version": "0.7.1",
566 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz",
567 | "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==",
568 | "license": "MIT",
569 | "engines": {
570 | "node": ">= 0.6"
571 | }
572 | },
573 | "node_modules/cookie-parser": {
574 | "version": "1.4.7",
575 | "resolved": "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.7.tgz",
576 | "integrity": "sha512-nGUvgXnotP3BsjiLX2ypbQnWoGUPIIfHQNZkkC668ntrzGWEZVW70HDEB1qnNGMicPje6EttlIgzo51YSwNQGw==",
577 | "license": "MIT",
578 | "dependencies": {
579 | "cookie": "0.7.2",
580 | "cookie-signature": "1.0.6"
581 | },
582 | "engines": {
583 | "node": ">= 0.8.0"
584 | }
585 | },
586 | "node_modules/cookie-parser/node_modules/cookie": {
587 | "version": "0.7.2",
588 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
589 | "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
590 | "license": "MIT",
591 | "engines": {
592 | "node": ">= 0.6"
593 | }
594 | },
595 | "node_modules/cookie-signature": {
596 | "version": "1.0.6",
597 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
598 | "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==",
599 | "license": "MIT"
600 | },
601 | "node_modules/core-js": {
602 | "version": "3.41.0",
603 | "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.41.0.tgz",
604 | "integrity": "sha512-SJ4/EHwS36QMJd6h/Rg+GyR4A5xE0FSI3eZ+iBVpfqf1x0eTSg1smWLHrA+2jQThZSh97fmSgFSU8B61nxosxA==",
605 | "hasInstallScript": true,
606 | "license": "MIT",
607 | "funding": {
608 | "type": "opencollective",
609 | "url": "https://opencollective.com/core-js"
610 | }
611 | },
612 | "node_modules/core-util-is": {
613 | "version": "1.0.3",
614 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
615 | "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
616 | "license": "MIT"
617 | },
618 | "node_modules/cors": {
619 | "version": "2.8.5",
620 | "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz",
621 | "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==",
622 | "license": "MIT",
623 | "dependencies": {
624 | "object-assign": "^4",
625 | "vary": "^1"
626 | },
627 | "engines": {
628 | "node": ">= 0.10"
629 | }
630 | },
631 | "node_modules/create-require": {
632 | "version": "1.1.1",
633 | "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz",
634 | "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==",
635 | "dev": true,
636 | "license": "MIT"
637 | },
638 | "node_modules/debug": {
639 | "version": "2.6.9",
640 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
641 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
642 | "license": "MIT",
643 | "dependencies": {
644 | "ms": "2.0.0"
645 | }
646 | },
647 | "node_modules/depd": {
648 | "version": "2.0.0",
649 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
650 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
651 | "license": "MIT",
652 | "engines": {
653 | "node": ">= 0.8"
654 | }
655 | },
656 | "node_modules/destroy": {
657 | "version": "1.2.0",
658 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
659 | "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
660 | "license": "MIT",
661 | "engines": {
662 | "node": ">= 0.8",
663 | "npm": "1.2.8000 || >= 1.4.16"
664 | }
665 | },
666 | "node_modules/diff": {
667 | "version": "4.0.2",
668 | "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz",
669 | "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==",
670 | "dev": true,
671 | "license": "BSD-3-Clause",
672 | "engines": {
673 | "node": ">=0.3.1"
674 | }
675 | },
676 | "node_modules/dotenv": {
677 | "version": "16.4.7",
678 | "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.7.tgz",
679 | "integrity": "sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==",
680 | "license": "BSD-2-Clause",
681 | "engines": {
682 | "node": ">=12"
683 | },
684 | "funding": {
685 | "url": "https://dotenvx.com"
686 | }
687 | },
688 | "node_modules/dunder-proto": {
689 | "version": "1.0.1",
690 | "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
691 | "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
692 | "license": "MIT",
693 | "dependencies": {
694 | "call-bind-apply-helpers": "^1.0.1",
695 | "es-errors": "^1.3.0",
696 | "gopd": "^1.2.0"
697 | },
698 | "engines": {
699 | "node": ">= 0.4"
700 | }
701 | },
702 | "node_modules/ecdsa-sig-formatter": {
703 | "version": "1.0.11",
704 | "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
705 | "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==",
706 | "license": "Apache-2.0",
707 | "dependencies": {
708 | "safe-buffer": "^5.0.1"
709 | }
710 | },
711 | "node_modules/ee-first": {
712 | "version": "1.1.1",
713 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
714 | "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
715 | "license": "MIT"
716 | },
717 | "node_modules/enabled": {
718 | "version": "2.0.0",
719 | "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz",
720 | "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==",
721 | "license": "MIT"
722 | },
723 | "node_modules/encodeurl": {
724 | "version": "2.0.0",
725 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
726 | "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
727 | "license": "MIT",
728 | "engines": {
729 | "node": ">= 0.8"
730 | }
731 | },
732 | "node_modules/es-define-property": {
733 | "version": "1.0.1",
734 | "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
735 | "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
736 | "license": "MIT",
737 | "engines": {
738 | "node": ">= 0.4"
739 | }
740 | },
741 | "node_modules/es-errors": {
742 | "version": "1.3.0",
743 | "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
744 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
745 | "license": "MIT",
746 | "engines": {
747 | "node": ">= 0.4"
748 | }
749 | },
750 | "node_modules/es-object-atoms": {
751 | "version": "1.1.1",
752 | "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
753 | "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
754 | "license": "MIT",
755 | "dependencies": {
756 | "es-errors": "^1.3.0"
757 | },
758 | "engines": {
759 | "node": ">= 0.4"
760 | }
761 | },
762 | "node_modules/escape-html": {
763 | "version": "1.0.3",
764 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
765 | "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
766 | "license": "MIT"
767 | },
768 | "node_modules/etag": {
769 | "version": "1.8.1",
770 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
771 | "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
772 | "license": "MIT",
773 | "engines": {
774 | "node": ">= 0.6"
775 | }
776 | },
777 | "node_modules/express": {
778 | "version": "4.21.2",
779 | "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz",
780 | "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==",
781 | "license": "MIT",
782 | "dependencies": {
783 | "accepts": "~1.3.8",
784 | "array-flatten": "1.1.1",
785 | "body-parser": "1.20.3",
786 | "content-disposition": "0.5.4",
787 | "content-type": "~1.0.4",
788 | "cookie": "0.7.1",
789 | "cookie-signature": "1.0.6",
790 | "debug": "2.6.9",
791 | "depd": "2.0.0",
792 | "encodeurl": "~2.0.0",
793 | "escape-html": "~1.0.3",
794 | "etag": "~1.8.1",
795 | "finalhandler": "1.3.1",
796 | "fresh": "0.5.2",
797 | "http-errors": "2.0.0",
798 | "merge-descriptors": "1.0.3",
799 | "methods": "~1.1.2",
800 | "on-finished": "2.4.1",
801 | "parseurl": "~1.3.3",
802 | "path-to-regexp": "0.1.12",
803 | "proxy-addr": "~2.0.7",
804 | "qs": "6.13.0",
805 | "range-parser": "~1.2.1",
806 | "safe-buffer": "5.2.1",
807 | "send": "0.19.0",
808 | "serve-static": "1.16.2",
809 | "setprototypeof": "1.2.0",
810 | "statuses": "2.0.1",
811 | "type-is": "~1.6.18",
812 | "utils-merge": "1.0.1",
813 | "vary": "~1.1.2"
814 | },
815 | "engines": {
816 | "node": ">= 0.10.0"
817 | },
818 | "funding": {
819 | "type": "opencollective",
820 | "url": "https://opencollective.com/express"
821 | }
822 | },
823 | "node_modules/express-validator": {
824 | "version": "7.2.1",
825 | "resolved": "https://registry.npmjs.org/express-validator/-/express-validator-7.2.1.tgz",
826 | "integrity": "sha512-CjNE6aakfpuwGaHQZ3m8ltCG2Qvivd7RHtVMS/6nVxOM7xVGqr4bhflsm4+N5FP5zI7Zxp+Hae+9RE+o8e3ZOQ==",
827 | "license": "MIT",
828 | "dependencies": {
829 | "lodash": "^4.17.21",
830 | "validator": "~13.12.0"
831 | },
832 | "engines": {
833 | "node": ">= 8.0.0"
834 | }
835 | },
836 | "node_modules/fecha": {
837 | "version": "4.2.3",
838 | "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz",
839 | "integrity": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==",
840 | "license": "MIT"
841 | },
842 | "node_modules/finalhandler": {
843 | "version": "1.3.1",
844 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz",
845 | "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==",
846 | "license": "MIT",
847 | "dependencies": {
848 | "debug": "2.6.9",
849 | "encodeurl": "~2.0.0",
850 | "escape-html": "~1.0.3",
851 | "on-finished": "2.4.1",
852 | "parseurl": "~1.3.3",
853 | "statuses": "2.0.1",
854 | "unpipe": "~1.0.0"
855 | },
856 | "engines": {
857 | "node": ">= 0.8"
858 | }
859 | },
860 | "node_modules/fn.name": {
861 | "version": "1.1.0",
862 | "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz",
863 | "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==",
864 | "license": "MIT"
865 | },
866 | "node_modules/forwarded": {
867 | "version": "0.2.0",
868 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
869 | "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
870 | "license": "MIT",
871 | "engines": {
872 | "node": ">= 0.6"
873 | }
874 | },
875 | "node_modules/fresh": {
876 | "version": "0.5.2",
877 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
878 | "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
879 | "license": "MIT",
880 | "engines": {
881 | "node": ">= 0.6"
882 | }
883 | },
884 | "node_modules/function-bind": {
885 | "version": "1.1.2",
886 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
887 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
888 | "license": "MIT",
889 | "funding": {
890 | "url": "https://github.com/sponsors/ljharb"
891 | }
892 | },
893 | "node_modules/get-intrinsic": {
894 | "version": "1.2.7",
895 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.7.tgz",
896 | "integrity": "sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==",
897 | "license": "MIT",
898 | "dependencies": {
899 | "call-bind-apply-helpers": "^1.0.1",
900 | "es-define-property": "^1.0.1",
901 | "es-errors": "^1.3.0",
902 | "es-object-atoms": "^1.0.0",
903 | "function-bind": "^1.1.2",
904 | "get-proto": "^1.0.0",
905 | "gopd": "^1.2.0",
906 | "has-symbols": "^1.1.0",
907 | "hasown": "^2.0.2",
908 | "math-intrinsics": "^1.1.0"
909 | },
910 | "engines": {
911 | "node": ">= 0.4"
912 | },
913 | "funding": {
914 | "url": "https://github.com/sponsors/ljharb"
915 | }
916 | },
917 | "node_modules/get-proto": {
918 | "version": "1.0.1",
919 | "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
920 | "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
921 | "license": "MIT",
922 | "dependencies": {
923 | "dunder-proto": "^1.0.1",
924 | "es-object-atoms": "^1.0.0"
925 | },
926 | "engines": {
927 | "node": ">= 0.4"
928 | }
929 | },
930 | "node_modules/gopd": {
931 | "version": "1.2.0",
932 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
933 | "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
934 | "license": "MIT",
935 | "engines": {
936 | "node": ">= 0.4"
937 | },
938 | "funding": {
939 | "url": "https://github.com/sponsors/ljharb"
940 | }
941 | },
942 | "node_modules/has-symbols": {
943 | "version": "1.1.0",
944 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
945 | "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
946 | "license": "MIT",
947 | "engines": {
948 | "node": ">= 0.4"
949 | },
950 | "funding": {
951 | "url": "https://github.com/sponsors/ljharb"
952 | }
953 | },
954 | "node_modules/hasown": {
955 | "version": "2.0.2",
956 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
957 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
958 | "license": "MIT",
959 | "dependencies": {
960 | "function-bind": "^1.1.2"
961 | },
962 | "engines": {
963 | "node": ">= 0.4"
964 | }
965 | },
966 | "node_modules/http-errors": {
967 | "version": "2.0.0",
968 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
969 | "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
970 | "license": "MIT",
971 | "dependencies": {
972 | "depd": "2.0.0",
973 | "inherits": "2.0.4",
974 | "setprototypeof": "1.2.0",
975 | "statuses": "2.0.1",
976 | "toidentifier": "1.0.1"
977 | },
978 | "engines": {
979 | "node": ">= 0.8"
980 | }
981 | },
982 | "node_modules/http-status-codes": {
983 | "version": "2.3.0",
984 | "resolved": "https://registry.npmjs.org/http-status-codes/-/http-status-codes-2.3.0.tgz",
985 | "integrity": "sha512-RJ8XvFvpPM/Dmc5SV+dC4y5PCeOhT3x1Hq0NU3rjGeg5a/CqlhZ7uudknPwZFz4aeAXDcbAyaeP7GAo9lvngtA==",
986 | "license": "MIT"
987 | },
988 | "node_modules/iconv-lite": {
989 | "version": "0.4.24",
990 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
991 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
992 | "license": "MIT",
993 | "dependencies": {
994 | "safer-buffer": ">= 2.1.2 < 3"
995 | },
996 | "engines": {
997 | "node": ">=0.10.0"
998 | }
999 | },
1000 | "node_modules/inherits": {
1001 | "version": "2.0.4",
1002 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
1003 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
1004 | "license": "ISC"
1005 | },
1006 | "node_modules/ipaddr.js": {
1007 | "version": "1.9.1",
1008 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
1009 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
1010 | "license": "MIT",
1011 | "engines": {
1012 | "node": ">= 0.10"
1013 | }
1014 | },
1015 | "node_modules/is-arrayish": {
1016 | "version": "0.3.2",
1017 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
1018 | "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==",
1019 | "license": "MIT"
1020 | },
1021 | "node_modules/is-stream": {
1022 | "version": "2.0.1",
1023 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
1024 | "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
1025 | "license": "MIT",
1026 | "engines": {
1027 | "node": ">=8"
1028 | },
1029 | "funding": {
1030 | "url": "https://github.com/sponsors/sindresorhus"
1031 | }
1032 | },
1033 | "node_modules/isarray": {
1034 | "version": "1.0.0",
1035 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
1036 | "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
1037 | "license": "MIT"
1038 | },
1039 | "node_modules/jsonwebtoken": {
1040 | "version": "9.0.2",
1041 | "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.2.tgz",
1042 | "integrity": "sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==",
1043 | "license": "MIT",
1044 | "dependencies": {
1045 | "jws": "^3.2.2",
1046 | "lodash.includes": "^4.3.0",
1047 | "lodash.isboolean": "^3.0.3",
1048 | "lodash.isinteger": "^4.0.4",
1049 | "lodash.isnumber": "^3.0.3",
1050 | "lodash.isplainobject": "^4.0.6",
1051 | "lodash.isstring": "^4.0.1",
1052 | "lodash.once": "^4.0.0",
1053 | "ms": "^2.1.1",
1054 | "semver": "^7.5.4"
1055 | },
1056 | "engines": {
1057 | "node": ">=12",
1058 | "npm": ">=6"
1059 | }
1060 | },
1061 | "node_modules/jsonwebtoken/node_modules/ms": {
1062 | "version": "2.1.3",
1063 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
1064 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
1065 | "license": "MIT"
1066 | },
1067 | "node_modules/jwa": {
1068 | "version": "1.4.1",
1069 | "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz",
1070 | "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==",
1071 | "license": "MIT",
1072 | "dependencies": {
1073 | "buffer-equal-constant-time": "1.0.1",
1074 | "ecdsa-sig-formatter": "1.0.11",
1075 | "safe-buffer": "^5.0.1"
1076 | }
1077 | },
1078 | "node_modules/jws": {
1079 | "version": "3.2.2",
1080 | "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz",
1081 | "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==",
1082 | "license": "MIT",
1083 | "dependencies": {
1084 | "jwa": "^1.4.1",
1085 | "safe-buffer": "^5.0.1"
1086 | }
1087 | },
1088 | "node_modules/kareem": {
1089 | "version": "2.6.3",
1090 | "resolved": "https://registry.npmjs.org/kareem/-/kareem-2.6.3.tgz",
1091 | "integrity": "sha512-C3iHfuGUXK2u8/ipq9LfjFfXFxAZMQJJq7vLS45r3D9Y2xQ/m4S8zaR4zMLFWh9AsNPXmcFfUDhTEO8UIC/V6Q==",
1092 | "license": "Apache-2.0",
1093 | "engines": {
1094 | "node": ">=12.0.0"
1095 | }
1096 | },
1097 | "node_modules/kuler": {
1098 | "version": "2.0.0",
1099 | "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz",
1100 | "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==",
1101 | "license": "MIT"
1102 | },
1103 | "node_modules/lodash": {
1104 | "version": "4.17.21",
1105 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
1106 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
1107 | "license": "MIT"
1108 | },
1109 | "node_modules/lodash.includes": {
1110 | "version": "4.3.0",
1111 | "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz",
1112 | "integrity": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==",
1113 | "license": "MIT"
1114 | },
1115 | "node_modules/lodash.isboolean": {
1116 | "version": "3.0.3",
1117 | "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz",
1118 | "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==",
1119 | "license": "MIT"
1120 | },
1121 | "node_modules/lodash.isinteger": {
1122 | "version": "4.0.4",
1123 | "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz",
1124 | "integrity": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==",
1125 | "license": "MIT"
1126 | },
1127 | "node_modules/lodash.isnumber": {
1128 | "version": "3.0.3",
1129 | "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz",
1130 | "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==",
1131 | "license": "MIT"
1132 | },
1133 | "node_modules/lodash.isplainobject": {
1134 | "version": "4.0.6",
1135 | "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz",
1136 | "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==",
1137 | "license": "MIT"
1138 | },
1139 | "node_modules/lodash.isstring": {
1140 | "version": "4.0.1",
1141 | "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz",
1142 | "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==",
1143 | "license": "MIT"
1144 | },
1145 | "node_modules/lodash.once": {
1146 | "version": "4.1.1",
1147 | "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz",
1148 | "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==",
1149 | "license": "MIT"
1150 | },
1151 | "node_modules/logform": {
1152 | "version": "2.7.0",
1153 | "resolved": "https://registry.npmjs.org/logform/-/logform-2.7.0.tgz",
1154 | "integrity": "sha512-TFYA4jnP7PVbmlBIfhlSe+WKxs9dklXMTEGcBCIvLhE/Tn3H6Gk1norupVW7m5Cnd4bLcr08AytbyV/xj7f/kQ==",
1155 | "license": "MIT",
1156 | "dependencies": {
1157 | "@colors/colors": "1.6.0",
1158 | "@types/triple-beam": "^1.3.2",
1159 | "fecha": "^4.2.0",
1160 | "ms": "^2.1.1",
1161 | "safe-stable-stringify": "^2.3.1",
1162 | "triple-beam": "^1.3.0"
1163 | },
1164 | "engines": {
1165 | "node": ">= 12.0.0"
1166 | }
1167 | },
1168 | "node_modules/logform/node_modules/ms": {
1169 | "version": "2.1.3",
1170 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
1171 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
1172 | "license": "MIT"
1173 | },
1174 | "node_modules/make-error": {
1175 | "version": "1.3.6",
1176 | "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
1177 | "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==",
1178 | "dev": true,
1179 | "license": "ISC"
1180 | },
1181 | "node_modules/math-intrinsics": {
1182 | "version": "1.1.0",
1183 | "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
1184 | "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
1185 | "license": "MIT",
1186 | "engines": {
1187 | "node": ">= 0.4"
1188 | }
1189 | },
1190 | "node_modules/media-typer": {
1191 | "version": "0.3.0",
1192 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
1193 | "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
1194 | "license": "MIT",
1195 | "engines": {
1196 | "node": ">= 0.6"
1197 | }
1198 | },
1199 | "node_modules/memory-pager": {
1200 | "version": "1.5.0",
1201 | "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz",
1202 | "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==",
1203 | "license": "MIT"
1204 | },
1205 | "node_modules/merge-descriptors": {
1206 | "version": "1.0.3",
1207 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
1208 | "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==",
1209 | "license": "MIT",
1210 | "funding": {
1211 | "url": "https://github.com/sponsors/sindresorhus"
1212 | }
1213 | },
1214 | "node_modules/methods": {
1215 | "version": "1.1.2",
1216 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
1217 | "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
1218 | "license": "MIT",
1219 | "engines": {
1220 | "node": ">= 0.6"
1221 | }
1222 | },
1223 | "node_modules/mime": {
1224 | "version": "1.6.0",
1225 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
1226 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
1227 | "license": "MIT",
1228 | "bin": {
1229 | "mime": "cli.js"
1230 | },
1231 | "engines": {
1232 | "node": ">=4"
1233 | }
1234 | },
1235 | "node_modules/mime-db": {
1236 | "version": "1.52.0",
1237 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
1238 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
1239 | "license": "MIT",
1240 | "engines": {
1241 | "node": ">= 0.6"
1242 | }
1243 | },
1244 | "node_modules/mime-types": {
1245 | "version": "2.1.35",
1246 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
1247 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
1248 | "license": "MIT",
1249 | "dependencies": {
1250 | "mime-db": "1.52.0"
1251 | },
1252 | "engines": {
1253 | "node": ">= 0.6"
1254 | }
1255 | },
1256 | "node_modules/minimist": {
1257 | "version": "1.2.8",
1258 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
1259 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
1260 | "license": "MIT",
1261 | "funding": {
1262 | "url": "https://github.com/sponsors/ljharb"
1263 | }
1264 | },
1265 | "node_modules/mkdirp": {
1266 | "version": "0.5.6",
1267 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz",
1268 | "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==",
1269 | "license": "MIT",
1270 | "dependencies": {
1271 | "minimist": "^1.2.6"
1272 | },
1273 | "bin": {
1274 | "mkdirp": "bin/cmd.js"
1275 | }
1276 | },
1277 | "node_modules/mongodb": {
1278 | "version": "6.14.2",
1279 | "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.14.2.tgz",
1280 | "integrity": "sha512-kMEHNo0F3P6QKDq17zcDuPeaywK/YaJVCEQRzPF3TOM/Bl9MFg64YE5Tu7ifj37qZJMhwU1tl2Ioivws5gRG5Q==",
1281 | "license": "Apache-2.0",
1282 | "dependencies": {
1283 | "@mongodb-js/saslprep": "^1.1.9",
1284 | "bson": "^6.10.3",
1285 | "mongodb-connection-string-url": "^3.0.0"
1286 | },
1287 | "engines": {
1288 | "node": ">=16.20.1"
1289 | },
1290 | "peerDependencies": {
1291 | "@aws-sdk/credential-providers": "^3.188.0",
1292 | "@mongodb-js/zstd": "^1.1.0 || ^2.0.0",
1293 | "gcp-metadata": "^5.2.0",
1294 | "kerberos": "^2.0.1",
1295 | "mongodb-client-encryption": ">=6.0.0 <7",
1296 | "snappy": "^7.2.2",
1297 | "socks": "^2.7.1"
1298 | },
1299 | "peerDependenciesMeta": {
1300 | "@aws-sdk/credential-providers": {
1301 | "optional": true
1302 | },
1303 | "@mongodb-js/zstd": {
1304 | "optional": true
1305 | },
1306 | "gcp-metadata": {
1307 | "optional": true
1308 | },
1309 | "kerberos": {
1310 | "optional": true
1311 | },
1312 | "mongodb-client-encryption": {
1313 | "optional": true
1314 | },
1315 | "snappy": {
1316 | "optional": true
1317 | },
1318 | "socks": {
1319 | "optional": true
1320 | }
1321 | }
1322 | },
1323 | "node_modules/mongodb-connection-string-url": {
1324 | "version": "3.0.2",
1325 | "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-3.0.2.tgz",
1326 | "integrity": "sha512-rMO7CGo/9BFwyZABcKAWL8UJwH/Kc2x0g72uhDWzG48URRax5TCIcJ7Rc3RZqffZzO/Gwff/jyKwCU9TN8gehA==",
1327 | "license": "Apache-2.0",
1328 | "dependencies": {
1329 | "@types/whatwg-url": "^11.0.2",
1330 | "whatwg-url": "^14.1.0 || ^13.0.0"
1331 | }
1332 | },
1333 | "node_modules/mongoose": {
1334 | "version": "8.12.2",
1335 | "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-8.12.2.tgz",
1336 | "integrity": "sha512-tfCyekj0CK4Hw41u78dHCN7fimvvky0oH4QOiHxzcHtjNLosljZVjwlOqFAolIn/sROFLYGheGafqd3h/BzaFA==",
1337 | "license": "MIT",
1338 | "dependencies": {
1339 | "bson": "^6.10.3",
1340 | "kareem": "2.6.3",
1341 | "mongodb": "~6.14.0",
1342 | "mpath": "0.9.0",
1343 | "mquery": "5.0.0",
1344 | "ms": "2.1.3",
1345 | "sift": "17.1.3"
1346 | },
1347 | "engines": {
1348 | "node": ">=16.20.1"
1349 | },
1350 | "funding": {
1351 | "type": "opencollective",
1352 | "url": "https://opencollective.com/mongoose"
1353 | }
1354 | },
1355 | "node_modules/mongoose/node_modules/ms": {
1356 | "version": "2.1.3",
1357 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
1358 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
1359 | "license": "MIT"
1360 | },
1361 | "node_modules/mpath": {
1362 | "version": "0.9.0",
1363 | "resolved": "https://registry.npmjs.org/mpath/-/mpath-0.9.0.tgz",
1364 | "integrity": "sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew==",
1365 | "license": "MIT",
1366 | "engines": {
1367 | "node": ">=4.0.0"
1368 | }
1369 | },
1370 | "node_modules/mquery": {
1371 | "version": "5.0.0",
1372 | "resolved": "https://registry.npmjs.org/mquery/-/mquery-5.0.0.tgz",
1373 | "integrity": "sha512-iQMncpmEK8R8ncT8HJGsGc9Dsp8xcgYMVSbs5jgnm1lFHTZqMJTUWTDx1LBO8+mK3tPNZWFLBghQEIOULSTHZg==",
1374 | "license": "MIT",
1375 | "dependencies": {
1376 | "debug": "4.x"
1377 | },
1378 | "engines": {
1379 | "node": ">=14.0.0"
1380 | }
1381 | },
1382 | "node_modules/mquery/node_modules/debug": {
1383 | "version": "4.4.0",
1384 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
1385 | "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
1386 | "license": "MIT",
1387 | "dependencies": {
1388 | "ms": "^2.1.3"
1389 | },
1390 | "engines": {
1391 | "node": ">=6.0"
1392 | },
1393 | "peerDependenciesMeta": {
1394 | "supports-color": {
1395 | "optional": true
1396 | }
1397 | }
1398 | },
1399 | "node_modules/mquery/node_modules/ms": {
1400 | "version": "2.1.3",
1401 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
1402 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
1403 | "license": "MIT"
1404 | },
1405 | "node_modules/ms": {
1406 | "version": "2.0.0",
1407 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
1408 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
1409 | "license": "MIT"
1410 | },
1411 | "node_modules/multer": {
1412 | "version": "1.4.5-lts.1",
1413 | "resolved": "https://registry.npmjs.org/multer/-/multer-1.4.5-lts.1.tgz",
1414 | "integrity": "sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==",
1415 | "license": "MIT",
1416 | "dependencies": {
1417 | "append-field": "^1.0.0",
1418 | "busboy": "^1.0.0",
1419 | "concat-stream": "^1.5.2",
1420 | "mkdirp": "^0.5.4",
1421 | "object-assign": "^4.1.1",
1422 | "type-is": "^1.6.4",
1423 | "xtend": "^4.0.0"
1424 | },
1425 | "engines": {
1426 | "node": ">= 6.0.0"
1427 | }
1428 | },
1429 | "node_modules/multer-storage-cloudinary": {
1430 | "version": "4.0.0",
1431 | "resolved": "https://registry.npmjs.org/multer-storage-cloudinary/-/multer-storage-cloudinary-4.0.0.tgz",
1432 | "integrity": "sha512-25lm9R6o5dWrHLqLvygNX+kBOxprzpmZdnVKH4+r68WcfCt8XV6xfQaMuAg+kUE5Xmr8mJNA4gE0AcBj9FJyWA==",
1433 | "license": "MIT",
1434 | "peerDependencies": {
1435 | "cloudinary": "^1.21.0"
1436 | }
1437 | },
1438 | "node_modules/negotiator": {
1439 | "version": "0.6.3",
1440 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
1441 | "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
1442 | "license": "MIT",
1443 | "engines": {
1444 | "node": ">= 0.6"
1445 | }
1446 | },
1447 | "node_modules/node-modules": {
1448 | "version": "0.0.1",
1449 | "resolved": "https://registry.npmjs.org/node-modules/-/node-modules-0.0.1.tgz",
1450 | "integrity": "sha512-310npB29YYezKgvU5Ei3z90rc95b0PA7vNF2Pw54MgcbnMd+t5c4LbmjP0/uDyapXb5vXcFuWEOIHtemQXN9Gw=="
1451 | },
1452 | "node_modules/nodemailer": {
1453 | "version": "6.10.0",
1454 | "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-6.10.0.tgz",
1455 | "integrity": "sha512-SQ3wZCExjeSatLE/HBaXS5vqUOQk6GtBdIIKxiFdmm01mOQZX/POJkO3SUX1wDiYcwUOJwT23scFSC9fY2H8IA==",
1456 | "license": "MIT-0",
1457 | "engines": {
1458 | "node": ">=6.0.0"
1459 | }
1460 | },
1461 | "node_modules/object-assign": {
1462 | "version": "4.1.1",
1463 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
1464 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
1465 | "license": "MIT",
1466 | "engines": {
1467 | "node": ">=0.10.0"
1468 | }
1469 | },
1470 | "node_modules/object-inspect": {
1471 | "version": "1.13.3",
1472 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz",
1473 | "integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==",
1474 | "license": "MIT",
1475 | "engines": {
1476 | "node": ">= 0.4"
1477 | },
1478 | "funding": {
1479 | "url": "https://github.com/sponsors/ljharb"
1480 | }
1481 | },
1482 | "node_modules/on-finished": {
1483 | "version": "2.4.1",
1484 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
1485 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
1486 | "license": "MIT",
1487 | "dependencies": {
1488 | "ee-first": "1.1.1"
1489 | },
1490 | "engines": {
1491 | "node": ">= 0.8"
1492 | }
1493 | },
1494 | "node_modules/one-time": {
1495 | "version": "1.0.0",
1496 | "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz",
1497 | "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==",
1498 | "license": "MIT",
1499 | "dependencies": {
1500 | "fn.name": "1.x.x"
1501 | }
1502 | },
1503 | "node_modules/parseurl": {
1504 | "version": "1.3.3",
1505 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
1506 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
1507 | "license": "MIT",
1508 | "engines": {
1509 | "node": ">= 0.8"
1510 | }
1511 | },
1512 | "node_modules/path-to-regexp": {
1513 | "version": "0.1.12",
1514 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz",
1515 | "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==",
1516 | "license": "MIT"
1517 | },
1518 | "node_modules/process-nextick-args": {
1519 | "version": "2.0.1",
1520 | "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
1521 | "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
1522 | "license": "MIT"
1523 | },
1524 | "node_modules/proxy-addr": {
1525 | "version": "2.0.7",
1526 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
1527 | "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
1528 | "license": "MIT",
1529 | "dependencies": {
1530 | "forwarded": "0.2.0",
1531 | "ipaddr.js": "1.9.1"
1532 | },
1533 | "engines": {
1534 | "node": ">= 0.10"
1535 | }
1536 | },
1537 | "node_modules/punycode": {
1538 | "version": "2.3.1",
1539 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
1540 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
1541 | "license": "MIT",
1542 | "engines": {
1543 | "node": ">=6"
1544 | }
1545 | },
1546 | "node_modules/q": {
1547 | "version": "1.5.1",
1548 | "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz",
1549 | "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==",
1550 | "deprecated": "You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.\n\n(For a CapTP with native promises, see @endo/eventual-send and @endo/captp)",
1551 | "license": "MIT",
1552 | "engines": {
1553 | "node": ">=0.6.0",
1554 | "teleport": ">=0.2.0"
1555 | }
1556 | },
1557 | "node_modules/qs": {
1558 | "version": "6.13.0",
1559 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz",
1560 | "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==",
1561 | "license": "BSD-3-Clause",
1562 | "dependencies": {
1563 | "side-channel": "^1.0.6"
1564 | },
1565 | "engines": {
1566 | "node": ">=0.6"
1567 | },
1568 | "funding": {
1569 | "url": "https://github.com/sponsors/ljharb"
1570 | }
1571 | },
1572 | "node_modules/range-parser": {
1573 | "version": "1.2.1",
1574 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
1575 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
1576 | "license": "MIT",
1577 | "engines": {
1578 | "node": ">= 0.6"
1579 | }
1580 | },
1581 | "node_modules/raw-body": {
1582 | "version": "2.5.2",
1583 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz",
1584 | "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==",
1585 | "license": "MIT",
1586 | "dependencies": {
1587 | "bytes": "3.1.2",
1588 | "http-errors": "2.0.0",
1589 | "iconv-lite": "0.4.24",
1590 | "unpipe": "1.0.0"
1591 | },
1592 | "engines": {
1593 | "node": ">= 0.8"
1594 | }
1595 | },
1596 | "node_modules/readable-stream": {
1597 | "version": "3.6.2",
1598 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
1599 | "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
1600 | "license": "MIT",
1601 | "dependencies": {
1602 | "inherits": "^2.0.3",
1603 | "string_decoder": "^1.1.1",
1604 | "util-deprecate": "^1.0.1"
1605 | },
1606 | "engines": {
1607 | "node": ">= 6"
1608 | }
1609 | },
1610 | "node_modules/safe-buffer": {
1611 | "version": "5.2.1",
1612 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
1613 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
1614 | "funding": [
1615 | {
1616 | "type": "github",
1617 | "url": "https://github.com/sponsors/feross"
1618 | },
1619 | {
1620 | "type": "patreon",
1621 | "url": "https://www.patreon.com/feross"
1622 | },
1623 | {
1624 | "type": "consulting",
1625 | "url": "https://feross.org/support"
1626 | }
1627 | ],
1628 | "license": "MIT"
1629 | },
1630 | "node_modules/safe-stable-stringify": {
1631 | "version": "2.5.0",
1632 | "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.5.0.tgz",
1633 | "integrity": "sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==",
1634 | "license": "MIT",
1635 | "engines": {
1636 | "node": ">=10"
1637 | }
1638 | },
1639 | "node_modules/safer-buffer": {
1640 | "version": "2.1.2",
1641 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
1642 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
1643 | "license": "MIT"
1644 | },
1645 | "node_modules/semver": {
1646 | "version": "7.7.1",
1647 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
1648 | "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
1649 | "license": "ISC",
1650 | "bin": {
1651 | "semver": "bin/semver.js"
1652 | },
1653 | "engines": {
1654 | "node": ">=10"
1655 | }
1656 | },
1657 | "node_modules/send": {
1658 | "version": "0.19.0",
1659 | "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz",
1660 | "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==",
1661 | "license": "MIT",
1662 | "dependencies": {
1663 | "debug": "2.6.9",
1664 | "depd": "2.0.0",
1665 | "destroy": "1.2.0",
1666 | "encodeurl": "~1.0.2",
1667 | "escape-html": "~1.0.3",
1668 | "etag": "~1.8.1",
1669 | "fresh": "0.5.2",
1670 | "http-errors": "2.0.0",
1671 | "mime": "1.6.0",
1672 | "ms": "2.1.3",
1673 | "on-finished": "2.4.1",
1674 | "range-parser": "~1.2.1",
1675 | "statuses": "2.0.1"
1676 | },
1677 | "engines": {
1678 | "node": ">= 0.8.0"
1679 | }
1680 | },
1681 | "node_modules/send/node_modules/encodeurl": {
1682 | "version": "1.0.2",
1683 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
1684 | "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
1685 | "license": "MIT",
1686 | "engines": {
1687 | "node": ">= 0.8"
1688 | }
1689 | },
1690 | "node_modules/send/node_modules/ms": {
1691 | "version": "2.1.3",
1692 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
1693 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
1694 | "license": "MIT"
1695 | },
1696 | "node_modules/serve-static": {
1697 | "version": "1.16.2",
1698 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz",
1699 | "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==",
1700 | "license": "MIT",
1701 | "dependencies": {
1702 | "encodeurl": "~2.0.0",
1703 | "escape-html": "~1.0.3",
1704 | "parseurl": "~1.3.3",
1705 | "send": "0.19.0"
1706 | },
1707 | "engines": {
1708 | "node": ">= 0.8.0"
1709 | }
1710 | },
1711 | "node_modules/setprototypeof": {
1712 | "version": "1.2.0",
1713 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
1714 | "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
1715 | "license": "ISC"
1716 | },
1717 | "node_modules/side-channel": {
1718 | "version": "1.1.0",
1719 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
1720 | "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
1721 | "license": "MIT",
1722 | "dependencies": {
1723 | "es-errors": "^1.3.0",
1724 | "object-inspect": "^1.13.3",
1725 | "side-channel-list": "^1.0.0",
1726 | "side-channel-map": "^1.0.1",
1727 | "side-channel-weakmap": "^1.0.2"
1728 | },
1729 | "engines": {
1730 | "node": ">= 0.4"
1731 | },
1732 | "funding": {
1733 | "url": "https://github.com/sponsors/ljharb"
1734 | }
1735 | },
1736 | "node_modules/side-channel-list": {
1737 | "version": "1.0.0",
1738 | "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
1739 | "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
1740 | "license": "MIT",
1741 | "dependencies": {
1742 | "es-errors": "^1.3.0",
1743 | "object-inspect": "^1.13.3"
1744 | },
1745 | "engines": {
1746 | "node": ">= 0.4"
1747 | },
1748 | "funding": {
1749 | "url": "https://github.com/sponsors/ljharb"
1750 | }
1751 | },
1752 | "node_modules/side-channel-map": {
1753 | "version": "1.0.1",
1754 | "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
1755 | "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
1756 | "license": "MIT",
1757 | "dependencies": {
1758 | "call-bound": "^1.0.2",
1759 | "es-errors": "^1.3.0",
1760 | "get-intrinsic": "^1.2.5",
1761 | "object-inspect": "^1.13.3"
1762 | },
1763 | "engines": {
1764 | "node": ">= 0.4"
1765 | },
1766 | "funding": {
1767 | "url": "https://github.com/sponsors/ljharb"
1768 | }
1769 | },
1770 | "node_modules/side-channel-weakmap": {
1771 | "version": "1.0.2",
1772 | "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
1773 | "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
1774 | "license": "MIT",
1775 | "dependencies": {
1776 | "call-bound": "^1.0.2",
1777 | "es-errors": "^1.3.0",
1778 | "get-intrinsic": "^1.2.5",
1779 | "object-inspect": "^1.13.3",
1780 | "side-channel-map": "^1.0.1"
1781 | },
1782 | "engines": {
1783 | "node": ">= 0.4"
1784 | },
1785 | "funding": {
1786 | "url": "https://github.com/sponsors/ljharb"
1787 | }
1788 | },
1789 | "node_modules/sift": {
1790 | "version": "17.1.3",
1791 | "resolved": "https://registry.npmjs.org/sift/-/sift-17.1.3.tgz",
1792 | "integrity": "sha512-Rtlj66/b0ICeFzYTuNvX/EF1igRbbnGSvEyT79McoZa/DeGhMyC5pWKOEsZKnpkqtSeovd5FL/bjHWC3CIIvCQ==",
1793 | "license": "MIT"
1794 | },
1795 | "node_modules/simple-swizzle": {
1796 | "version": "0.2.2",
1797 | "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz",
1798 | "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==",
1799 | "license": "MIT",
1800 | "dependencies": {
1801 | "is-arrayish": "^0.3.1"
1802 | }
1803 | },
1804 | "node_modules/sparse-bitfield": {
1805 | "version": "3.0.3",
1806 | "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz",
1807 | "integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==",
1808 | "license": "MIT",
1809 | "dependencies": {
1810 | "memory-pager": "^1.0.2"
1811 | }
1812 | },
1813 | "node_modules/stack-trace": {
1814 | "version": "0.0.10",
1815 | "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz",
1816 | "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==",
1817 | "license": "MIT",
1818 | "engines": {
1819 | "node": "*"
1820 | }
1821 | },
1822 | "node_modules/statuses": {
1823 | "version": "2.0.1",
1824 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
1825 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
1826 | "license": "MIT",
1827 | "engines": {
1828 | "node": ">= 0.8"
1829 | }
1830 | },
1831 | "node_modules/streamsearch": {
1832 | "version": "1.1.0",
1833 | "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz",
1834 | "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==",
1835 | "engines": {
1836 | "node": ">=10.0.0"
1837 | }
1838 | },
1839 | "node_modules/string_decoder": {
1840 | "version": "1.3.0",
1841 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
1842 | "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
1843 | "license": "MIT",
1844 | "dependencies": {
1845 | "safe-buffer": "~5.2.0"
1846 | }
1847 | },
1848 | "node_modules/text-hex": {
1849 | "version": "1.0.0",
1850 | "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz",
1851 | "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==",
1852 | "license": "MIT"
1853 | },
1854 | "node_modules/toidentifier": {
1855 | "version": "1.0.1",
1856 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
1857 | "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
1858 | "license": "MIT",
1859 | "engines": {
1860 | "node": ">=0.6"
1861 | }
1862 | },
1863 | "node_modules/tr46": {
1864 | "version": "5.1.0",
1865 | "resolved": "https://registry.npmjs.org/tr46/-/tr46-5.1.0.tgz",
1866 | "integrity": "sha512-IUWnUK7ADYR5Sl1fZlO1INDUhVhatWl7BtJWsIhwJ0UAK7ilzzIa8uIqOO/aYVWHZPJkKbEL+362wrzoeRF7bw==",
1867 | "license": "MIT",
1868 | "dependencies": {
1869 | "punycode": "^2.3.1"
1870 | },
1871 | "engines": {
1872 | "node": ">=18"
1873 | }
1874 | },
1875 | "node_modules/triple-beam": {
1876 | "version": "1.4.1",
1877 | "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.4.1.tgz",
1878 | "integrity": "sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==",
1879 | "license": "MIT",
1880 | "engines": {
1881 | "node": ">= 14.0.0"
1882 | }
1883 | },
1884 | "node_modules/ts-node": {
1885 | "version": "10.9.2",
1886 | "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz",
1887 | "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==",
1888 | "dev": true,
1889 | "license": "MIT",
1890 | "dependencies": {
1891 | "@cspotcode/source-map-support": "^0.8.0",
1892 | "@tsconfig/node10": "^1.0.7",
1893 | "@tsconfig/node12": "^1.0.7",
1894 | "@tsconfig/node14": "^1.0.0",
1895 | "@tsconfig/node16": "^1.0.2",
1896 | "acorn": "^8.4.1",
1897 | "acorn-walk": "^8.1.1",
1898 | "arg": "^4.1.0",
1899 | "create-require": "^1.1.0",
1900 | "diff": "^4.0.1",
1901 | "make-error": "^1.1.1",
1902 | "v8-compile-cache-lib": "^3.0.1",
1903 | "yn": "3.1.1"
1904 | },
1905 | "bin": {
1906 | "ts-node": "dist/bin.js",
1907 | "ts-node-cwd": "dist/bin-cwd.js",
1908 | "ts-node-esm": "dist/bin-esm.js",
1909 | "ts-node-script": "dist/bin-script.js",
1910 | "ts-node-transpile-only": "dist/bin-transpile.js",
1911 | "ts-script": "dist/bin-script-deprecated.js"
1912 | },
1913 | "peerDependencies": {
1914 | "@swc/core": ">=1.2.50",
1915 | "@swc/wasm": ">=1.2.50",
1916 | "@types/node": "*",
1917 | "typescript": ">=2.7"
1918 | },
1919 | "peerDependenciesMeta": {
1920 | "@swc/core": {
1921 | "optional": true
1922 | },
1923 | "@swc/wasm": {
1924 | "optional": true
1925 | }
1926 | }
1927 | },
1928 | "node_modules/type-is": {
1929 | "version": "1.6.18",
1930 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
1931 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
1932 | "license": "MIT",
1933 | "dependencies": {
1934 | "media-typer": "0.3.0",
1935 | "mime-types": "~2.1.24"
1936 | },
1937 | "engines": {
1938 | "node": ">= 0.6"
1939 | }
1940 | },
1941 | "node_modules/typedarray": {
1942 | "version": "0.0.6",
1943 | "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
1944 | "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==",
1945 | "license": "MIT"
1946 | },
1947 | "node_modules/typescript": {
1948 | "version": "5.7.3",
1949 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz",
1950 | "integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==",
1951 | "dev": true,
1952 | "license": "Apache-2.0",
1953 | "bin": {
1954 | "tsc": "bin/tsc",
1955 | "tsserver": "bin/tsserver"
1956 | },
1957 | "engines": {
1958 | "node": ">=14.17"
1959 | }
1960 | },
1961 | "node_modules/undici-types": {
1962 | "version": "6.20.0",
1963 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz",
1964 | "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==",
1965 | "dev": true,
1966 | "license": "MIT"
1967 | },
1968 | "node_modules/unpipe": {
1969 | "version": "1.0.0",
1970 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
1971 | "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
1972 | "license": "MIT",
1973 | "engines": {
1974 | "node": ">= 0.8"
1975 | }
1976 | },
1977 | "node_modules/util-deprecate": {
1978 | "version": "1.0.2",
1979 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
1980 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
1981 | "license": "MIT"
1982 | },
1983 | "node_modules/utils-merge": {
1984 | "version": "1.0.1",
1985 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
1986 | "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
1987 | "license": "MIT",
1988 | "engines": {
1989 | "node": ">= 0.4.0"
1990 | }
1991 | },
1992 | "node_modules/v8-compile-cache-lib": {
1993 | "version": "3.0.1",
1994 | "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz",
1995 | "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==",
1996 | "dev": true,
1997 | "license": "MIT"
1998 | },
1999 | "node_modules/validator": {
2000 | "version": "13.12.0",
2001 | "resolved": "https://registry.npmjs.org/validator/-/validator-13.12.0.tgz",
2002 | "integrity": "sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==",
2003 | "license": "MIT",
2004 | "engines": {
2005 | "node": ">= 0.10"
2006 | }
2007 | },
2008 | "node_modules/vary": {
2009 | "version": "1.1.2",
2010 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
2011 | "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
2012 | "license": "MIT",
2013 | "engines": {
2014 | "node": ">= 0.8"
2015 | }
2016 | },
2017 | "node_modules/webidl-conversions": {
2018 | "version": "7.0.0",
2019 | "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz",
2020 | "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==",
2021 | "license": "BSD-2-Clause",
2022 | "engines": {
2023 | "node": ">=12"
2024 | }
2025 | },
2026 | "node_modules/whatwg-url": {
2027 | "version": "14.2.0",
2028 | "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.2.0.tgz",
2029 | "integrity": "sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==",
2030 | "license": "MIT",
2031 | "dependencies": {
2032 | "tr46": "^5.1.0",
2033 | "webidl-conversions": "^7.0.0"
2034 | },
2035 | "engines": {
2036 | "node": ">=18"
2037 | }
2038 | },
2039 | "node_modules/winston": {
2040 | "version": "3.17.0",
2041 | "resolved": "https://registry.npmjs.org/winston/-/winston-3.17.0.tgz",
2042 | "integrity": "sha512-DLiFIXYC5fMPxaRg832S6F5mJYvePtmO5G9v9IgUFPhXm9/GkXarH/TUrBAVzhTCzAj9anE/+GjrgXp/54nOgw==",
2043 | "license": "MIT",
2044 | "dependencies": {
2045 | "@colors/colors": "^1.6.0",
2046 | "@dabh/diagnostics": "^2.0.2",
2047 | "async": "^3.2.3",
2048 | "is-stream": "^2.0.0",
2049 | "logform": "^2.7.0",
2050 | "one-time": "^1.0.0",
2051 | "readable-stream": "^3.4.0",
2052 | "safe-stable-stringify": "^2.3.1",
2053 | "stack-trace": "0.0.x",
2054 | "triple-beam": "^1.3.0",
2055 | "winston-transport": "^4.9.0"
2056 | },
2057 | "engines": {
2058 | "node": ">= 12.0.0"
2059 | }
2060 | },
2061 | "node_modules/winston-transport": {
2062 | "version": "4.9.0",
2063 | "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.9.0.tgz",
2064 | "integrity": "sha512-8drMJ4rkgaPo1Me4zD/3WLfI/zPdA9o2IipKODunnGDcuqbHwjsbB79ylv04LCGGzU0xQ6vTznOMpQGaLhhm6A==",
2065 | "license": "MIT",
2066 | "dependencies": {
2067 | "logform": "^2.7.0",
2068 | "readable-stream": "^3.6.2",
2069 | "triple-beam": "^1.3.0"
2070 | },
2071 | "engines": {
2072 | "node": ">= 12.0.0"
2073 | }
2074 | },
2075 | "node_modules/xtend": {
2076 | "version": "4.0.2",
2077 | "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
2078 | "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
2079 | "license": "MIT",
2080 | "engines": {
2081 | "node": ">=0.4"
2082 | }
2083 | },
2084 | "node_modules/yn": {
2085 | "version": "3.1.1",
2086 | "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz",
2087 | "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==",
2088 | "dev": true,
2089 | "license": "MIT",
2090 | "engines": {
2091 | "node": ">=6"
2092 | }
2093 | }
2094 | }
2095 | }
2096 |
--------------------------------------------------------------------------------