create-react-my-app 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/cli/index.js +77 -0
  2. package/package.json +32 -0
  3. package/template/backend/config/db.js +21 -0
  4. package/template/backend/controllers/authcontroller.js +81 -0
  5. package/template/backend/controllers/reportcontroller.js +31 -0
  6. package/template/backend/database/schema.sql +21 -0
  7. package/template/backend/middleware/authentication.js +10 -0
  8. package/template/backend/package-lock.json +1417 -0
  9. package/template/backend/package.json +19 -0
  10. package/template/backend/routes/authroute.js +12 -0
  11. package/template/backend/routes/reportroute.js +7 -0
  12. package/template/backend/server.js +55 -0
  13. package/template/frontend/eslint.config.js +29 -0
  14. package/template/frontend/index.html +12 -0
  15. package/template/frontend/package-lock.json +3934 -0
  16. package/template/frontend/package.json +31 -0
  17. package/template/frontend/public/vite.svg +1 -0
  18. package/template/frontend/src/App.css +0 -0
  19. package/template/frontend/src/App.jsx +38 -0
  20. package/template/frontend/src/assets/react.svg +1 -0
  21. package/template/frontend/src/components/Button.jsx +44 -0
  22. package/template/frontend/src/components/Form.jsx +150 -0
  23. package/template/frontend/src/components/Navbar.jsx +83 -0
  24. package/template/frontend/src/components/Table.jsx +77 -0
  25. package/template/frontend/src/components/protectedroute.jsx +41 -0
  26. package/template/frontend/src/config/api.js +8 -0
  27. package/template/frontend/src/index.css +46 -0
  28. package/template/frontend/src/main.jsx +10 -0
  29. package/template/frontend/src/pages/login.jsx +42 -0
  30. package/template/frontend/src/pages/report.jsx +90 -0
  31. package/template/frontend/src/pages/signup.jsx +46 -0
  32. package/template/frontend/src/pages/trial.jsx +87 -0
  33. package/template/frontend/vite.config.js +10 -0
@@ -0,0 +1,1417 @@
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
+ "bcrypt": "^6.0.0",
13
+ "bcryptjs": "^3.0.3",
14
+ "cors": "^2.8.5",
15
+ "dotenv": "^17.2.3",
16
+ "express": "^5.1.0",
17
+ "express-mysql-session": "^3.0.3",
18
+ "express-session": "^1.19.0",
19
+ "mongoose": "^8.19.3",
20
+ "mysql2": "^3.22.3"
21
+ }
22
+ },
23
+ "node_modules/@mongodb-js/saslprep": {
24
+ "version": "1.3.2",
25
+ "resolved": "https://registry.npmjs.org/@mongodb-js/saslprep/-/saslprep-1.3.2.tgz",
26
+ "integrity": "sha512-QgA5AySqB27cGTXBFmnpifAi7HxoGUeezwo6p9dI03MuDB6Pp33zgclqVb6oVK3j6I9Vesg0+oojW2XxB59SGg==",
27
+ "license": "MIT",
28
+ "dependencies": {
29
+ "sparse-bitfield": "^3.0.3"
30
+ }
31
+ },
32
+ "node_modules/@types/node": {
33
+ "version": "25.7.0",
34
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-25.7.0.tgz",
35
+ "integrity": "sha512-z+pdZyxE+RTQE9AcboAZCb4otwcrvgHD+GlBpPgn0emDVt0ohrTMhAwlr2Wd9nZ+nihhYFxO2pThz3C5qSu2Eg==",
36
+ "license": "MIT",
37
+ "peer": true,
38
+ "dependencies": {
39
+ "undici-types": "~7.21.0"
40
+ }
41
+ },
42
+ "node_modules/@types/webidl-conversions": {
43
+ "version": "7.0.3",
44
+ "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.3.tgz",
45
+ "integrity": "sha512-CiJJvcRtIgzadHCYXw7dqEnMNRjhGZlYK05Mj9OyktqV8uVT8fD2BFOB7S1uwBE3Kj2Z+4UyPmFw/Ixgw/LAlA==",
46
+ "license": "MIT"
47
+ },
48
+ "node_modules/@types/whatwg-url": {
49
+ "version": "11.0.5",
50
+ "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-11.0.5.tgz",
51
+ "integrity": "sha512-coYR071JRaHa+xoEvvYqvnIHaVqaYrLPbsufM9BF63HkwI5Lgmy2QR8Q5K/lYDYo5AK82wOvSOS0UsLTpTG7uQ==",
52
+ "license": "MIT",
53
+ "dependencies": {
54
+ "@types/webidl-conversions": "*"
55
+ }
56
+ },
57
+ "node_modules/accepts": {
58
+ "version": "2.0.0",
59
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz",
60
+ "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==",
61
+ "license": "MIT",
62
+ "dependencies": {
63
+ "mime-types": "^3.0.0",
64
+ "negotiator": "^1.0.0"
65
+ },
66
+ "engines": {
67
+ "node": ">= 0.6"
68
+ }
69
+ },
70
+ "node_modules/aws-ssl-profiles": {
71
+ "version": "1.1.2",
72
+ "resolved": "https://registry.npmjs.org/aws-ssl-profiles/-/aws-ssl-profiles-1.1.2.tgz",
73
+ "integrity": "sha512-NZKeq9AfyQvEeNlN0zSYAaWrmBffJh3IELMZfRpJVWgrpEbtEpnjvzqBPf+mxoI287JohRDoa+/nsfqqiZmF6g==",
74
+ "license": "MIT",
75
+ "engines": {
76
+ "node": ">= 6.0.0"
77
+ }
78
+ },
79
+ "node_modules/bcrypt": {
80
+ "version": "6.0.0",
81
+ "resolved": "https://registry.npmjs.org/bcrypt/-/bcrypt-6.0.0.tgz",
82
+ "integrity": "sha512-cU8v/EGSrnH+HnxV2z0J7/blxH8gq7Xh2JFT6Aroax7UohdmiJJlxApMxtKfuI7z68NvvVcmR78k2LbT6efhRg==",
83
+ "hasInstallScript": true,
84
+ "license": "MIT",
85
+ "dependencies": {
86
+ "node-addon-api": "^8.3.0",
87
+ "node-gyp-build": "^4.8.4"
88
+ },
89
+ "engines": {
90
+ "node": ">= 18"
91
+ }
92
+ },
93
+ "node_modules/bcryptjs": {
94
+ "version": "3.0.3",
95
+ "resolved": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-3.0.3.tgz",
96
+ "integrity": "sha512-GlF5wPWnSa/X5LKM1o0wz0suXIINz1iHRLvTS+sLyi7XPbe5ycmYI3DlZqVGZZtDgl4DmasFg7gOB3JYbphV5g==",
97
+ "license": "BSD-3-Clause",
98
+ "bin": {
99
+ "bcrypt": "bin/bcrypt"
100
+ }
101
+ },
102
+ "node_modules/body-parser": {
103
+ "version": "2.2.0",
104
+ "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.0.tgz",
105
+ "integrity": "sha512-02qvAaxv8tp7fBa/mw1ga98OGm+eCbqzJOKoRt70sLmfEEi+jyBYVTDGfCL/k06/4EMk/z01gCe7HoCH/f2LTg==",
106
+ "license": "MIT",
107
+ "dependencies": {
108
+ "bytes": "^3.1.2",
109
+ "content-type": "^1.0.5",
110
+ "debug": "^4.4.0",
111
+ "http-errors": "^2.0.0",
112
+ "iconv-lite": "^0.6.3",
113
+ "on-finished": "^2.4.1",
114
+ "qs": "^6.14.0",
115
+ "raw-body": "^3.0.0",
116
+ "type-is": "^2.0.0"
117
+ },
118
+ "engines": {
119
+ "node": ">=18"
120
+ }
121
+ },
122
+ "node_modules/bson": {
123
+ "version": "6.10.4",
124
+ "resolved": "https://registry.npmjs.org/bson/-/bson-6.10.4.tgz",
125
+ "integrity": "sha512-WIsKqkSC0ABoBJuT1LEX+2HEvNmNKKgnTAyd0fL8qzK4SH2i9NXg+t08YtdZp/V9IZ33cxe3iV4yM0qg8lMQng==",
126
+ "license": "Apache-2.0",
127
+ "engines": {
128
+ "node": ">=16.20.1"
129
+ }
130
+ },
131
+ "node_modules/bytes": {
132
+ "version": "3.1.2",
133
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
134
+ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
135
+ "license": "MIT",
136
+ "engines": {
137
+ "node": ">= 0.8"
138
+ }
139
+ },
140
+ "node_modules/call-bind-apply-helpers": {
141
+ "version": "1.0.2",
142
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
143
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
144
+ "license": "MIT",
145
+ "dependencies": {
146
+ "es-errors": "^1.3.0",
147
+ "function-bind": "^1.1.2"
148
+ },
149
+ "engines": {
150
+ "node": ">= 0.4"
151
+ }
152
+ },
153
+ "node_modules/call-bound": {
154
+ "version": "1.0.4",
155
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
156
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
157
+ "license": "MIT",
158
+ "dependencies": {
159
+ "call-bind-apply-helpers": "^1.0.2",
160
+ "get-intrinsic": "^1.3.0"
161
+ },
162
+ "engines": {
163
+ "node": ">= 0.4"
164
+ },
165
+ "funding": {
166
+ "url": "https://github.com/sponsors/ljharb"
167
+ }
168
+ },
169
+ "node_modules/content-disposition": {
170
+ "version": "1.0.0",
171
+ "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.0.0.tgz",
172
+ "integrity": "sha512-Au9nRL8VNUut/XSzbQA38+M78dzP4D+eqg3gfJHMIHHYa3bg067xj1KxMUWj+VULbiZMowKngFFbKczUrNJ1mg==",
173
+ "license": "MIT",
174
+ "dependencies": {
175
+ "safe-buffer": "5.2.1"
176
+ },
177
+ "engines": {
178
+ "node": ">= 0.6"
179
+ }
180
+ },
181
+ "node_modules/content-type": {
182
+ "version": "1.0.5",
183
+ "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
184
+ "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
185
+ "license": "MIT",
186
+ "engines": {
187
+ "node": ">= 0.6"
188
+ }
189
+ },
190
+ "node_modules/cookie": {
191
+ "version": "0.7.2",
192
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
193
+ "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
194
+ "license": "MIT",
195
+ "engines": {
196
+ "node": ">= 0.6"
197
+ }
198
+ },
199
+ "node_modules/cookie-signature": {
200
+ "version": "1.2.2",
201
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz",
202
+ "integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==",
203
+ "license": "MIT",
204
+ "engines": {
205
+ "node": ">=6.6.0"
206
+ }
207
+ },
208
+ "node_modules/cors": {
209
+ "version": "2.8.5",
210
+ "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz",
211
+ "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==",
212
+ "license": "MIT",
213
+ "dependencies": {
214
+ "object-assign": "^4",
215
+ "vary": "^1"
216
+ },
217
+ "engines": {
218
+ "node": ">= 0.10"
219
+ }
220
+ },
221
+ "node_modules/debug": {
222
+ "version": "4.4.3",
223
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
224
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
225
+ "license": "MIT",
226
+ "dependencies": {
227
+ "ms": "^2.1.3"
228
+ },
229
+ "engines": {
230
+ "node": ">=6.0"
231
+ },
232
+ "peerDependenciesMeta": {
233
+ "supports-color": {
234
+ "optional": true
235
+ }
236
+ }
237
+ },
238
+ "node_modules/denque": {
239
+ "version": "2.1.0",
240
+ "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz",
241
+ "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==",
242
+ "license": "Apache-2.0",
243
+ "engines": {
244
+ "node": ">=0.10"
245
+ }
246
+ },
247
+ "node_modules/depd": {
248
+ "version": "2.0.0",
249
+ "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
250
+ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
251
+ "license": "MIT",
252
+ "engines": {
253
+ "node": ">= 0.8"
254
+ }
255
+ },
256
+ "node_modules/dotenv": {
257
+ "version": "17.2.3",
258
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-17.2.3.tgz",
259
+ "integrity": "sha512-JVUnt+DUIzu87TABbhPmNfVdBDt18BLOWjMUFJMSi/Qqg7NTYtabbvSNJGOJ7afbRuv9D/lngizHtP7QyLQ+9w==",
260
+ "license": "BSD-2-Clause",
261
+ "engines": {
262
+ "node": ">=12"
263
+ },
264
+ "funding": {
265
+ "url": "https://dotenvx.com"
266
+ }
267
+ },
268
+ "node_modules/dunder-proto": {
269
+ "version": "1.0.1",
270
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
271
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
272
+ "license": "MIT",
273
+ "dependencies": {
274
+ "call-bind-apply-helpers": "^1.0.1",
275
+ "es-errors": "^1.3.0",
276
+ "gopd": "^1.2.0"
277
+ },
278
+ "engines": {
279
+ "node": ">= 0.4"
280
+ }
281
+ },
282
+ "node_modules/ee-first": {
283
+ "version": "1.1.1",
284
+ "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
285
+ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
286
+ "license": "MIT"
287
+ },
288
+ "node_modules/encodeurl": {
289
+ "version": "2.0.0",
290
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
291
+ "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
292
+ "license": "MIT",
293
+ "engines": {
294
+ "node": ">= 0.8"
295
+ }
296
+ },
297
+ "node_modules/es-define-property": {
298
+ "version": "1.0.1",
299
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
300
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
301
+ "license": "MIT",
302
+ "engines": {
303
+ "node": ">= 0.4"
304
+ }
305
+ },
306
+ "node_modules/es-errors": {
307
+ "version": "1.3.0",
308
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
309
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
310
+ "license": "MIT",
311
+ "engines": {
312
+ "node": ">= 0.4"
313
+ }
314
+ },
315
+ "node_modules/es-object-atoms": {
316
+ "version": "1.1.1",
317
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
318
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
319
+ "license": "MIT",
320
+ "dependencies": {
321
+ "es-errors": "^1.3.0"
322
+ },
323
+ "engines": {
324
+ "node": ">= 0.4"
325
+ }
326
+ },
327
+ "node_modules/escape-html": {
328
+ "version": "1.0.3",
329
+ "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
330
+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
331
+ "license": "MIT"
332
+ },
333
+ "node_modules/etag": {
334
+ "version": "1.8.1",
335
+ "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
336
+ "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
337
+ "license": "MIT",
338
+ "engines": {
339
+ "node": ">= 0.6"
340
+ }
341
+ },
342
+ "node_modules/express": {
343
+ "version": "5.1.0",
344
+ "resolved": "https://registry.npmjs.org/express/-/express-5.1.0.tgz",
345
+ "integrity": "sha512-DT9ck5YIRU+8GYzzU5kT3eHGA5iL+1Zd0EutOmTE9Dtk+Tvuzd23VBU+ec7HPNSTxXYO55gPV/hq4pSBJDjFpA==",
346
+ "license": "MIT",
347
+ "dependencies": {
348
+ "accepts": "^2.0.0",
349
+ "body-parser": "^2.2.0",
350
+ "content-disposition": "^1.0.0",
351
+ "content-type": "^1.0.5",
352
+ "cookie": "^0.7.1",
353
+ "cookie-signature": "^1.2.1",
354
+ "debug": "^4.4.0",
355
+ "encodeurl": "^2.0.0",
356
+ "escape-html": "^1.0.3",
357
+ "etag": "^1.8.1",
358
+ "finalhandler": "^2.1.0",
359
+ "fresh": "^2.0.0",
360
+ "http-errors": "^2.0.0",
361
+ "merge-descriptors": "^2.0.0",
362
+ "mime-types": "^3.0.0",
363
+ "on-finished": "^2.4.1",
364
+ "once": "^1.4.0",
365
+ "parseurl": "^1.3.3",
366
+ "proxy-addr": "^2.0.7",
367
+ "qs": "^6.14.0",
368
+ "range-parser": "^1.2.1",
369
+ "router": "^2.2.0",
370
+ "send": "^1.1.0",
371
+ "serve-static": "^2.2.0",
372
+ "statuses": "^2.0.1",
373
+ "type-is": "^2.0.1",
374
+ "vary": "^1.1.2"
375
+ },
376
+ "engines": {
377
+ "node": ">= 18"
378
+ },
379
+ "funding": {
380
+ "type": "opencollective",
381
+ "url": "https://opencollective.com/express"
382
+ }
383
+ },
384
+ "node_modules/express-mysql-session": {
385
+ "version": "3.0.3",
386
+ "resolved": "https://registry.npmjs.org/express-mysql-session/-/express-mysql-session-3.0.3.tgz",
387
+ "integrity": "sha512-sEYrzFrOs3er+Ie/uk1dt93qz4AQ9SU1mpJJ0HPs0MJ4t4hE9AcDRNq0sZQUwy2F/SbXusBt1E5+FY6KzSqXNg==",
388
+ "license": "MIT",
389
+ "dependencies": {
390
+ "debug": "4.3.4",
391
+ "mysql2": "3.10.2"
392
+ }
393
+ },
394
+ "node_modules/express-mysql-session/node_modules/debug": {
395
+ "version": "4.3.4",
396
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
397
+ "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
398
+ "license": "MIT",
399
+ "dependencies": {
400
+ "ms": "2.1.2"
401
+ },
402
+ "engines": {
403
+ "node": ">=6.0"
404
+ },
405
+ "peerDependenciesMeta": {
406
+ "supports-color": {
407
+ "optional": true
408
+ }
409
+ }
410
+ },
411
+ "node_modules/express-mysql-session/node_modules/ms": {
412
+ "version": "2.1.2",
413
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
414
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
415
+ "license": "MIT"
416
+ },
417
+ "node_modules/express-mysql-session/node_modules/mysql2": {
418
+ "version": "3.10.2",
419
+ "resolved": "https://registry.npmjs.org/mysql2/-/mysql2-3.10.2.tgz",
420
+ "integrity": "sha512-KCXPEvAkO0RcHPr362O5N8tFY2fXvbjfkPvRY/wGumh4EOemo9Hm5FjQZqv/pCmrnuxGu5OxnSENG0gTXqKMgQ==",
421
+ "license": "MIT",
422
+ "dependencies": {
423
+ "denque": "^2.1.0",
424
+ "generate-function": "^2.3.1",
425
+ "iconv-lite": "^0.6.3",
426
+ "long": "^5.2.1",
427
+ "lru-cache": "^8.0.0",
428
+ "named-placeholders": "^1.1.3",
429
+ "seq-queue": "^0.0.5",
430
+ "sqlstring": "^2.3.2"
431
+ },
432
+ "engines": {
433
+ "node": ">= 8.0"
434
+ }
435
+ },
436
+ "node_modules/express-session": {
437
+ "version": "1.19.0",
438
+ "resolved": "https://registry.npmjs.org/express-session/-/express-session-1.19.0.tgz",
439
+ "integrity": "sha512-0csaMkGq+vaiZTmSMMGkfdCOabYv192VbytFypcvI0MANrp+4i/7yEkJ0sbAEhycQjntaKGzYfjfXQyVb7BHMA==",
440
+ "license": "MIT",
441
+ "dependencies": {
442
+ "cookie": "~0.7.2",
443
+ "cookie-signature": "~1.0.7",
444
+ "debug": "~2.6.9",
445
+ "depd": "~2.0.0",
446
+ "on-headers": "~1.1.0",
447
+ "parseurl": "~1.3.3",
448
+ "safe-buffer": "~5.2.1",
449
+ "uid-safe": "~2.1.5"
450
+ },
451
+ "engines": {
452
+ "node": ">= 0.8.0"
453
+ },
454
+ "funding": {
455
+ "type": "opencollective",
456
+ "url": "https://opencollective.com/express"
457
+ }
458
+ },
459
+ "node_modules/express-session/node_modules/cookie-signature": {
460
+ "version": "1.0.7",
461
+ "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz",
462
+ "integrity": "sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==",
463
+ "license": "MIT"
464
+ },
465
+ "node_modules/express-session/node_modules/debug": {
466
+ "version": "2.6.9",
467
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
468
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
469
+ "license": "MIT",
470
+ "dependencies": {
471
+ "ms": "2.0.0"
472
+ }
473
+ },
474
+ "node_modules/express-session/node_modules/ms": {
475
+ "version": "2.0.0",
476
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
477
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
478
+ "license": "MIT"
479
+ },
480
+ "node_modules/finalhandler": {
481
+ "version": "2.1.0",
482
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.0.tgz",
483
+ "integrity": "sha512-/t88Ty3d5JWQbWYgaOGCCYfXRwV1+be02WqYYlL6h0lEiUAMPM8o8qKGO01YIkOHzka2up08wvgYD0mDiI+q3Q==",
484
+ "license": "MIT",
485
+ "dependencies": {
486
+ "debug": "^4.4.0",
487
+ "encodeurl": "^2.0.0",
488
+ "escape-html": "^1.0.3",
489
+ "on-finished": "^2.4.1",
490
+ "parseurl": "^1.3.3",
491
+ "statuses": "^2.0.1"
492
+ },
493
+ "engines": {
494
+ "node": ">= 0.8"
495
+ }
496
+ },
497
+ "node_modules/forwarded": {
498
+ "version": "0.2.0",
499
+ "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
500
+ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
501
+ "license": "MIT",
502
+ "engines": {
503
+ "node": ">= 0.6"
504
+ }
505
+ },
506
+ "node_modules/fresh": {
507
+ "version": "2.0.0",
508
+ "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz",
509
+ "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==",
510
+ "license": "MIT",
511
+ "engines": {
512
+ "node": ">= 0.8"
513
+ }
514
+ },
515
+ "node_modules/function-bind": {
516
+ "version": "1.1.2",
517
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
518
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
519
+ "license": "MIT",
520
+ "funding": {
521
+ "url": "https://github.com/sponsors/ljharb"
522
+ }
523
+ },
524
+ "node_modules/generate-function": {
525
+ "version": "2.3.1",
526
+ "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.3.1.tgz",
527
+ "integrity": "sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==",
528
+ "license": "MIT",
529
+ "dependencies": {
530
+ "is-property": "^1.0.2"
531
+ }
532
+ },
533
+ "node_modules/get-intrinsic": {
534
+ "version": "1.3.0",
535
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
536
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
537
+ "license": "MIT",
538
+ "dependencies": {
539
+ "call-bind-apply-helpers": "^1.0.2",
540
+ "es-define-property": "^1.0.1",
541
+ "es-errors": "^1.3.0",
542
+ "es-object-atoms": "^1.1.1",
543
+ "function-bind": "^1.1.2",
544
+ "get-proto": "^1.0.1",
545
+ "gopd": "^1.2.0",
546
+ "has-symbols": "^1.1.0",
547
+ "hasown": "^2.0.2",
548
+ "math-intrinsics": "^1.1.0"
549
+ },
550
+ "engines": {
551
+ "node": ">= 0.4"
552
+ },
553
+ "funding": {
554
+ "url": "https://github.com/sponsors/ljharb"
555
+ }
556
+ },
557
+ "node_modules/get-proto": {
558
+ "version": "1.0.1",
559
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
560
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
561
+ "license": "MIT",
562
+ "dependencies": {
563
+ "dunder-proto": "^1.0.1",
564
+ "es-object-atoms": "^1.0.0"
565
+ },
566
+ "engines": {
567
+ "node": ">= 0.4"
568
+ }
569
+ },
570
+ "node_modules/gopd": {
571
+ "version": "1.2.0",
572
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
573
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
574
+ "license": "MIT",
575
+ "engines": {
576
+ "node": ">= 0.4"
577
+ },
578
+ "funding": {
579
+ "url": "https://github.com/sponsors/ljharb"
580
+ }
581
+ },
582
+ "node_modules/has-symbols": {
583
+ "version": "1.1.0",
584
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
585
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
586
+ "license": "MIT",
587
+ "engines": {
588
+ "node": ">= 0.4"
589
+ },
590
+ "funding": {
591
+ "url": "https://github.com/sponsors/ljharb"
592
+ }
593
+ },
594
+ "node_modules/hasown": {
595
+ "version": "2.0.2",
596
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
597
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
598
+ "license": "MIT",
599
+ "dependencies": {
600
+ "function-bind": "^1.1.2"
601
+ },
602
+ "engines": {
603
+ "node": ">= 0.4"
604
+ }
605
+ },
606
+ "node_modules/http-errors": {
607
+ "version": "2.0.0",
608
+ "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
609
+ "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
610
+ "license": "MIT",
611
+ "dependencies": {
612
+ "depd": "2.0.0",
613
+ "inherits": "2.0.4",
614
+ "setprototypeof": "1.2.0",
615
+ "statuses": "2.0.1",
616
+ "toidentifier": "1.0.1"
617
+ },
618
+ "engines": {
619
+ "node": ">= 0.8"
620
+ }
621
+ },
622
+ "node_modules/http-errors/node_modules/statuses": {
623
+ "version": "2.0.1",
624
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
625
+ "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
626
+ "license": "MIT",
627
+ "engines": {
628
+ "node": ">= 0.8"
629
+ }
630
+ },
631
+ "node_modules/iconv-lite": {
632
+ "version": "0.6.3",
633
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
634
+ "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
635
+ "license": "MIT",
636
+ "dependencies": {
637
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
638
+ },
639
+ "engines": {
640
+ "node": ">=0.10.0"
641
+ }
642
+ },
643
+ "node_modules/inherits": {
644
+ "version": "2.0.4",
645
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
646
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
647
+ "license": "ISC"
648
+ },
649
+ "node_modules/ipaddr.js": {
650
+ "version": "1.9.1",
651
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
652
+ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
653
+ "license": "MIT",
654
+ "engines": {
655
+ "node": ">= 0.10"
656
+ }
657
+ },
658
+ "node_modules/is-promise": {
659
+ "version": "4.0.0",
660
+ "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz",
661
+ "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==",
662
+ "license": "MIT"
663
+ },
664
+ "node_modules/is-property": {
665
+ "version": "1.0.2",
666
+ "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz",
667
+ "integrity": "sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==",
668
+ "license": "MIT"
669
+ },
670
+ "node_modules/kareem": {
671
+ "version": "2.6.3",
672
+ "resolved": "https://registry.npmjs.org/kareem/-/kareem-2.6.3.tgz",
673
+ "integrity": "sha512-C3iHfuGUXK2u8/ipq9LfjFfXFxAZMQJJq7vLS45r3D9Y2xQ/m4S8zaR4zMLFWh9AsNPXmcFfUDhTEO8UIC/V6Q==",
674
+ "license": "Apache-2.0",
675
+ "engines": {
676
+ "node": ">=12.0.0"
677
+ }
678
+ },
679
+ "node_modules/long": {
680
+ "version": "5.3.2",
681
+ "resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz",
682
+ "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==",
683
+ "license": "Apache-2.0"
684
+ },
685
+ "node_modules/lru-cache": {
686
+ "version": "8.0.5",
687
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-8.0.5.tgz",
688
+ "integrity": "sha512-MhWWlVnuab1RG5/zMRRcVGXZLCXrZTgfwMikgzCegsPnG62yDQo5JnqKkrK4jO5iKqDAZGItAqN5CtKBCBWRUA==",
689
+ "license": "ISC",
690
+ "engines": {
691
+ "node": ">=16.14"
692
+ }
693
+ },
694
+ "node_modules/lru.min": {
695
+ "version": "1.1.4",
696
+ "resolved": "https://registry.npmjs.org/lru.min/-/lru.min-1.1.4.tgz",
697
+ "integrity": "sha512-DqC6n3QQ77zdFpCMASA1a3Jlb64Hv2N2DciFGkO/4L9+q/IpIAuRlKOvCXabtRW6cQf8usbmM6BE/TOPysCdIA==",
698
+ "license": "MIT",
699
+ "engines": {
700
+ "bun": ">=1.0.0",
701
+ "deno": ">=1.30.0",
702
+ "node": ">=8.0.0"
703
+ },
704
+ "funding": {
705
+ "type": "github",
706
+ "url": "https://github.com/sponsors/wellwelwel"
707
+ }
708
+ },
709
+ "node_modules/math-intrinsics": {
710
+ "version": "1.1.0",
711
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
712
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
713
+ "license": "MIT",
714
+ "engines": {
715
+ "node": ">= 0.4"
716
+ }
717
+ },
718
+ "node_modules/media-typer": {
719
+ "version": "1.1.0",
720
+ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz",
721
+ "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==",
722
+ "license": "MIT",
723
+ "engines": {
724
+ "node": ">= 0.8"
725
+ }
726
+ },
727
+ "node_modules/memory-pager": {
728
+ "version": "1.5.0",
729
+ "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz",
730
+ "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==",
731
+ "license": "MIT"
732
+ },
733
+ "node_modules/merge-descriptors": {
734
+ "version": "2.0.0",
735
+ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz",
736
+ "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==",
737
+ "license": "MIT",
738
+ "engines": {
739
+ "node": ">=18"
740
+ },
741
+ "funding": {
742
+ "url": "https://github.com/sponsors/sindresorhus"
743
+ }
744
+ },
745
+ "node_modules/mime-db": {
746
+ "version": "1.54.0",
747
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
748
+ "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
749
+ "license": "MIT",
750
+ "engines": {
751
+ "node": ">= 0.6"
752
+ }
753
+ },
754
+ "node_modules/mime-types": {
755
+ "version": "3.0.1",
756
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.1.tgz",
757
+ "integrity": "sha512-xRc4oEhT6eaBpU1XF7AjpOFD+xQmXNB5OVKwp4tqCuBpHLS/ZbBDrc07mYTDqVMg6PfxUjjNp85O6Cd2Z/5HWA==",
758
+ "license": "MIT",
759
+ "dependencies": {
760
+ "mime-db": "^1.54.0"
761
+ },
762
+ "engines": {
763
+ "node": ">= 0.6"
764
+ }
765
+ },
766
+ "node_modules/mongodb": {
767
+ "version": "6.20.0",
768
+ "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.20.0.tgz",
769
+ "integrity": "sha512-Tl6MEIU3K4Rq3TSHd+sZQqRBoGlFsOgNrH5ltAcFBV62Re3Fd+FcaVf8uSEQFOJ51SDowDVttBTONMfoYWrWlQ==",
770
+ "license": "Apache-2.0",
771
+ "dependencies": {
772
+ "@mongodb-js/saslprep": "^1.3.0",
773
+ "bson": "^6.10.4",
774
+ "mongodb-connection-string-url": "^3.0.2"
775
+ },
776
+ "engines": {
777
+ "node": ">=16.20.1"
778
+ },
779
+ "peerDependencies": {
780
+ "@aws-sdk/credential-providers": "^3.188.0",
781
+ "@mongodb-js/zstd": "^1.1.0 || ^2.0.0",
782
+ "gcp-metadata": "^5.2.0",
783
+ "kerberos": "^2.0.1",
784
+ "mongodb-client-encryption": ">=6.0.0 <7",
785
+ "snappy": "^7.3.2",
786
+ "socks": "^2.7.1"
787
+ },
788
+ "peerDependenciesMeta": {
789
+ "@aws-sdk/credential-providers": {
790
+ "optional": true
791
+ },
792
+ "@mongodb-js/zstd": {
793
+ "optional": true
794
+ },
795
+ "gcp-metadata": {
796
+ "optional": true
797
+ },
798
+ "kerberos": {
799
+ "optional": true
800
+ },
801
+ "mongodb-client-encryption": {
802
+ "optional": true
803
+ },
804
+ "snappy": {
805
+ "optional": true
806
+ },
807
+ "socks": {
808
+ "optional": true
809
+ }
810
+ }
811
+ },
812
+ "node_modules/mongodb-connection-string-url": {
813
+ "version": "3.0.2",
814
+ "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-3.0.2.tgz",
815
+ "integrity": "sha512-rMO7CGo/9BFwyZABcKAWL8UJwH/Kc2x0g72uhDWzG48URRax5TCIcJ7Rc3RZqffZzO/Gwff/jyKwCU9TN8gehA==",
816
+ "license": "Apache-2.0",
817
+ "dependencies": {
818
+ "@types/whatwg-url": "^11.0.2",
819
+ "whatwg-url": "^14.1.0 || ^13.0.0"
820
+ }
821
+ },
822
+ "node_modules/mongoose": {
823
+ "version": "8.19.3",
824
+ "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-8.19.3.tgz",
825
+ "integrity": "sha512-fTAGaIohkk8wCggMuBuqTVD4YrM1/J8cBr1ekqzFqtz65qkLjtX2dcy3NH1e+2rk2365dyrrsPAnt4YTxBhEiQ==",
826
+ "license": "MIT",
827
+ "dependencies": {
828
+ "bson": "^6.10.4",
829
+ "kareem": "2.6.3",
830
+ "mongodb": "~6.20.0",
831
+ "mpath": "0.9.0",
832
+ "mquery": "5.0.0",
833
+ "ms": "2.1.3",
834
+ "sift": "17.1.3"
835
+ },
836
+ "engines": {
837
+ "node": ">=16.20.1"
838
+ },
839
+ "funding": {
840
+ "type": "opencollective",
841
+ "url": "https://opencollective.com/mongoose"
842
+ }
843
+ },
844
+ "node_modules/mpath": {
845
+ "version": "0.9.0",
846
+ "resolved": "https://registry.npmjs.org/mpath/-/mpath-0.9.0.tgz",
847
+ "integrity": "sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew==",
848
+ "license": "MIT",
849
+ "engines": {
850
+ "node": ">=4.0.0"
851
+ }
852
+ },
853
+ "node_modules/mquery": {
854
+ "version": "5.0.0",
855
+ "resolved": "https://registry.npmjs.org/mquery/-/mquery-5.0.0.tgz",
856
+ "integrity": "sha512-iQMncpmEK8R8ncT8HJGsGc9Dsp8xcgYMVSbs5jgnm1lFHTZqMJTUWTDx1LBO8+mK3tPNZWFLBghQEIOULSTHZg==",
857
+ "license": "MIT",
858
+ "dependencies": {
859
+ "debug": "4.x"
860
+ },
861
+ "engines": {
862
+ "node": ">=14.0.0"
863
+ }
864
+ },
865
+ "node_modules/ms": {
866
+ "version": "2.1.3",
867
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
868
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
869
+ "license": "MIT"
870
+ },
871
+ "node_modules/mysql2": {
872
+ "version": "3.22.3",
873
+ "resolved": "https://registry.npmjs.org/mysql2/-/mysql2-3.22.3.tgz",
874
+ "integrity": "sha512-uWWxvZSRvRhtBdh2CdcuK83YcOfPdmEeEYB069bAmPnV93QApDGVPuvCQOLjlh7tYHEWdgQPrn6kosDxHBVLkA==",
875
+ "license": "MIT",
876
+ "dependencies": {
877
+ "aws-ssl-profiles": "^1.1.2",
878
+ "denque": "^2.1.0",
879
+ "generate-function": "^2.3.1",
880
+ "iconv-lite": "^0.7.2",
881
+ "long": "^5.3.2",
882
+ "lru.min": "^1.1.4",
883
+ "named-placeholders": "^1.1.6",
884
+ "sql-escaper": "^1.3.3"
885
+ },
886
+ "engines": {
887
+ "node": ">= 8.0"
888
+ },
889
+ "peerDependencies": {
890
+ "@types/node": ">= 8"
891
+ }
892
+ },
893
+ "node_modules/mysql2/node_modules/iconv-lite": {
894
+ "version": "0.7.2",
895
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.2.tgz",
896
+ "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==",
897
+ "license": "MIT",
898
+ "dependencies": {
899
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
900
+ },
901
+ "engines": {
902
+ "node": ">=0.10.0"
903
+ },
904
+ "funding": {
905
+ "type": "opencollective",
906
+ "url": "https://opencollective.com/express"
907
+ }
908
+ },
909
+ "node_modules/named-placeholders": {
910
+ "version": "1.1.6",
911
+ "resolved": "https://registry.npmjs.org/named-placeholders/-/named-placeholders-1.1.6.tgz",
912
+ "integrity": "sha512-Tz09sEL2EEuv5fFowm419c1+a/jSMiBjI9gHxVLrVdbUkkNUUfjsVYs9pVZu5oCon/kmRh9TfLEObFtkVxmY0w==",
913
+ "license": "MIT",
914
+ "dependencies": {
915
+ "lru.min": "^1.1.0"
916
+ },
917
+ "engines": {
918
+ "node": ">=8.0.0"
919
+ }
920
+ },
921
+ "node_modules/negotiator": {
922
+ "version": "1.0.0",
923
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz",
924
+ "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==",
925
+ "license": "MIT",
926
+ "engines": {
927
+ "node": ">= 0.6"
928
+ }
929
+ },
930
+ "node_modules/node-addon-api": {
931
+ "version": "8.7.0",
932
+ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.7.0.tgz",
933
+ "integrity": "sha512-9MdFxmkKaOYVTV+XVRG8ArDwwQ77XIgIPyKASB1k3JPq3M8fGQQQE3YpMOrKm6g//Ktx8ivZr8xo1Qmtqub+GA==",
934
+ "license": "MIT",
935
+ "engines": {
936
+ "node": "^18 || ^20 || >= 21"
937
+ }
938
+ },
939
+ "node_modules/node-gyp-build": {
940
+ "version": "4.8.4",
941
+ "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz",
942
+ "integrity": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==",
943
+ "license": "MIT",
944
+ "bin": {
945
+ "node-gyp-build": "bin.js",
946
+ "node-gyp-build-optional": "optional.js",
947
+ "node-gyp-build-test": "build-test.js"
948
+ }
949
+ },
950
+ "node_modules/object-assign": {
951
+ "version": "4.1.1",
952
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
953
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
954
+ "license": "MIT",
955
+ "engines": {
956
+ "node": ">=0.10.0"
957
+ }
958
+ },
959
+ "node_modules/object-inspect": {
960
+ "version": "1.13.4",
961
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
962
+ "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
963
+ "license": "MIT",
964
+ "engines": {
965
+ "node": ">= 0.4"
966
+ },
967
+ "funding": {
968
+ "url": "https://github.com/sponsors/ljharb"
969
+ }
970
+ },
971
+ "node_modules/on-finished": {
972
+ "version": "2.4.1",
973
+ "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
974
+ "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
975
+ "license": "MIT",
976
+ "dependencies": {
977
+ "ee-first": "1.1.1"
978
+ },
979
+ "engines": {
980
+ "node": ">= 0.8"
981
+ }
982
+ },
983
+ "node_modules/on-headers": {
984
+ "version": "1.1.0",
985
+ "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz",
986
+ "integrity": "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==",
987
+ "license": "MIT",
988
+ "engines": {
989
+ "node": ">= 0.8"
990
+ }
991
+ },
992
+ "node_modules/once": {
993
+ "version": "1.4.0",
994
+ "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
995
+ "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
996
+ "license": "ISC",
997
+ "dependencies": {
998
+ "wrappy": "1"
999
+ }
1000
+ },
1001
+ "node_modules/parseurl": {
1002
+ "version": "1.3.3",
1003
+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
1004
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
1005
+ "license": "MIT",
1006
+ "engines": {
1007
+ "node": ">= 0.8"
1008
+ }
1009
+ },
1010
+ "node_modules/path-to-regexp": {
1011
+ "version": "8.3.0",
1012
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.3.0.tgz",
1013
+ "integrity": "sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA==",
1014
+ "license": "MIT",
1015
+ "funding": {
1016
+ "type": "opencollective",
1017
+ "url": "https://opencollective.com/express"
1018
+ }
1019
+ },
1020
+ "node_modules/proxy-addr": {
1021
+ "version": "2.0.7",
1022
+ "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
1023
+ "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
1024
+ "license": "MIT",
1025
+ "dependencies": {
1026
+ "forwarded": "0.2.0",
1027
+ "ipaddr.js": "1.9.1"
1028
+ },
1029
+ "engines": {
1030
+ "node": ">= 0.10"
1031
+ }
1032
+ },
1033
+ "node_modules/punycode": {
1034
+ "version": "2.3.1",
1035
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
1036
+ "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
1037
+ "license": "MIT",
1038
+ "engines": {
1039
+ "node": ">=6"
1040
+ }
1041
+ },
1042
+ "node_modules/qs": {
1043
+ "version": "6.14.0",
1044
+ "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.0.tgz",
1045
+ "integrity": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==",
1046
+ "license": "BSD-3-Clause",
1047
+ "dependencies": {
1048
+ "side-channel": "^1.1.0"
1049
+ },
1050
+ "engines": {
1051
+ "node": ">=0.6"
1052
+ },
1053
+ "funding": {
1054
+ "url": "https://github.com/sponsors/ljharb"
1055
+ }
1056
+ },
1057
+ "node_modules/random-bytes": {
1058
+ "version": "1.0.0",
1059
+ "resolved": "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz",
1060
+ "integrity": "sha512-iv7LhNVO047HzYR3InF6pUcUsPQiHTM1Qal51DcGSuZFBil1aBBWG5eHPNek7bvILMaYJ/8RU1e8w1AMdHmLQQ==",
1061
+ "license": "MIT",
1062
+ "engines": {
1063
+ "node": ">= 0.8"
1064
+ }
1065
+ },
1066
+ "node_modules/range-parser": {
1067
+ "version": "1.2.1",
1068
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
1069
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
1070
+ "license": "MIT",
1071
+ "engines": {
1072
+ "node": ">= 0.6"
1073
+ }
1074
+ },
1075
+ "node_modules/raw-body": {
1076
+ "version": "3.0.1",
1077
+ "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.1.tgz",
1078
+ "integrity": "sha512-9G8cA+tuMS75+6G/TzW8OtLzmBDMo8p1JRxN5AZ+LAp8uxGA8V8GZm4GQ4/N5QNQEnLmg6SS7wyuSmbKepiKqA==",
1079
+ "license": "MIT",
1080
+ "dependencies": {
1081
+ "bytes": "3.1.2",
1082
+ "http-errors": "2.0.0",
1083
+ "iconv-lite": "0.7.0",
1084
+ "unpipe": "1.0.0"
1085
+ },
1086
+ "engines": {
1087
+ "node": ">= 0.10"
1088
+ }
1089
+ },
1090
+ "node_modules/raw-body/node_modules/iconv-lite": {
1091
+ "version": "0.7.0",
1092
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.0.tgz",
1093
+ "integrity": "sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==",
1094
+ "license": "MIT",
1095
+ "dependencies": {
1096
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
1097
+ },
1098
+ "engines": {
1099
+ "node": ">=0.10.0"
1100
+ },
1101
+ "funding": {
1102
+ "type": "opencollective",
1103
+ "url": "https://opencollective.com/express"
1104
+ }
1105
+ },
1106
+ "node_modules/router": {
1107
+ "version": "2.2.0",
1108
+ "resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz",
1109
+ "integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==",
1110
+ "license": "MIT",
1111
+ "dependencies": {
1112
+ "debug": "^4.4.0",
1113
+ "depd": "^2.0.0",
1114
+ "is-promise": "^4.0.0",
1115
+ "parseurl": "^1.3.3",
1116
+ "path-to-regexp": "^8.0.0"
1117
+ },
1118
+ "engines": {
1119
+ "node": ">= 18"
1120
+ }
1121
+ },
1122
+ "node_modules/safe-buffer": {
1123
+ "version": "5.2.1",
1124
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
1125
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
1126
+ "funding": [
1127
+ {
1128
+ "type": "github",
1129
+ "url": "https://github.com/sponsors/feross"
1130
+ },
1131
+ {
1132
+ "type": "patreon",
1133
+ "url": "https://www.patreon.com/feross"
1134
+ },
1135
+ {
1136
+ "type": "consulting",
1137
+ "url": "https://feross.org/support"
1138
+ }
1139
+ ],
1140
+ "license": "MIT"
1141
+ },
1142
+ "node_modules/safer-buffer": {
1143
+ "version": "2.1.2",
1144
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
1145
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
1146
+ "license": "MIT"
1147
+ },
1148
+ "node_modules/send": {
1149
+ "version": "1.2.0",
1150
+ "resolved": "https://registry.npmjs.org/send/-/send-1.2.0.tgz",
1151
+ "integrity": "sha512-uaW0WwXKpL9blXE2o0bRhoL2EGXIrZxQ2ZQ4mgcfoBxdFmQold+qWsD2jLrfZ0trjKL6vOw0j//eAwcALFjKSw==",
1152
+ "license": "MIT",
1153
+ "dependencies": {
1154
+ "debug": "^4.3.5",
1155
+ "encodeurl": "^2.0.0",
1156
+ "escape-html": "^1.0.3",
1157
+ "etag": "^1.8.1",
1158
+ "fresh": "^2.0.0",
1159
+ "http-errors": "^2.0.0",
1160
+ "mime-types": "^3.0.1",
1161
+ "ms": "^2.1.3",
1162
+ "on-finished": "^2.4.1",
1163
+ "range-parser": "^1.2.1",
1164
+ "statuses": "^2.0.1"
1165
+ },
1166
+ "engines": {
1167
+ "node": ">= 18"
1168
+ }
1169
+ },
1170
+ "node_modules/seq-queue": {
1171
+ "version": "0.0.5",
1172
+ "resolved": "https://registry.npmjs.org/seq-queue/-/seq-queue-0.0.5.tgz",
1173
+ "integrity": "sha512-hr3Wtp/GZIc/6DAGPDcV4/9WoZhjrkXsi5B/07QgX8tsdc6ilr7BFM6PM6rbdAX1kFSDYeZGLipIZZKyQP0O5Q=="
1174
+ },
1175
+ "node_modules/serve-static": {
1176
+ "version": "2.2.0",
1177
+ "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.0.tgz",
1178
+ "integrity": "sha512-61g9pCh0Vnh7IutZjtLGGpTA355+OPn2TyDv/6ivP2h/AdAVX9azsoxmg2/M6nZeQZNYBEwIcsne1mJd9oQItQ==",
1179
+ "license": "MIT",
1180
+ "dependencies": {
1181
+ "encodeurl": "^2.0.0",
1182
+ "escape-html": "^1.0.3",
1183
+ "parseurl": "^1.3.3",
1184
+ "send": "^1.2.0"
1185
+ },
1186
+ "engines": {
1187
+ "node": ">= 18"
1188
+ }
1189
+ },
1190
+ "node_modules/setprototypeof": {
1191
+ "version": "1.2.0",
1192
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
1193
+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
1194
+ "license": "ISC"
1195
+ },
1196
+ "node_modules/side-channel": {
1197
+ "version": "1.1.0",
1198
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
1199
+ "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
1200
+ "license": "MIT",
1201
+ "dependencies": {
1202
+ "es-errors": "^1.3.0",
1203
+ "object-inspect": "^1.13.3",
1204
+ "side-channel-list": "^1.0.0",
1205
+ "side-channel-map": "^1.0.1",
1206
+ "side-channel-weakmap": "^1.0.2"
1207
+ },
1208
+ "engines": {
1209
+ "node": ">= 0.4"
1210
+ },
1211
+ "funding": {
1212
+ "url": "https://github.com/sponsors/ljharb"
1213
+ }
1214
+ },
1215
+ "node_modules/side-channel-list": {
1216
+ "version": "1.0.0",
1217
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
1218
+ "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
1219
+ "license": "MIT",
1220
+ "dependencies": {
1221
+ "es-errors": "^1.3.0",
1222
+ "object-inspect": "^1.13.3"
1223
+ },
1224
+ "engines": {
1225
+ "node": ">= 0.4"
1226
+ },
1227
+ "funding": {
1228
+ "url": "https://github.com/sponsors/ljharb"
1229
+ }
1230
+ },
1231
+ "node_modules/side-channel-map": {
1232
+ "version": "1.0.1",
1233
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
1234
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
1235
+ "license": "MIT",
1236
+ "dependencies": {
1237
+ "call-bound": "^1.0.2",
1238
+ "es-errors": "^1.3.0",
1239
+ "get-intrinsic": "^1.2.5",
1240
+ "object-inspect": "^1.13.3"
1241
+ },
1242
+ "engines": {
1243
+ "node": ">= 0.4"
1244
+ },
1245
+ "funding": {
1246
+ "url": "https://github.com/sponsors/ljharb"
1247
+ }
1248
+ },
1249
+ "node_modules/side-channel-weakmap": {
1250
+ "version": "1.0.2",
1251
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
1252
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
1253
+ "license": "MIT",
1254
+ "dependencies": {
1255
+ "call-bound": "^1.0.2",
1256
+ "es-errors": "^1.3.0",
1257
+ "get-intrinsic": "^1.2.5",
1258
+ "object-inspect": "^1.13.3",
1259
+ "side-channel-map": "^1.0.1"
1260
+ },
1261
+ "engines": {
1262
+ "node": ">= 0.4"
1263
+ },
1264
+ "funding": {
1265
+ "url": "https://github.com/sponsors/ljharb"
1266
+ }
1267
+ },
1268
+ "node_modules/sift": {
1269
+ "version": "17.1.3",
1270
+ "resolved": "https://registry.npmjs.org/sift/-/sift-17.1.3.tgz",
1271
+ "integrity": "sha512-Rtlj66/b0ICeFzYTuNvX/EF1igRbbnGSvEyT79McoZa/DeGhMyC5pWKOEsZKnpkqtSeovd5FL/bjHWC3CIIvCQ==",
1272
+ "license": "MIT"
1273
+ },
1274
+ "node_modules/sparse-bitfield": {
1275
+ "version": "3.0.3",
1276
+ "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz",
1277
+ "integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==",
1278
+ "license": "MIT",
1279
+ "dependencies": {
1280
+ "memory-pager": "^1.0.2"
1281
+ }
1282
+ },
1283
+ "node_modules/sql-escaper": {
1284
+ "version": "1.3.3",
1285
+ "resolved": "https://registry.npmjs.org/sql-escaper/-/sql-escaper-1.3.3.tgz",
1286
+ "integrity": "sha512-BsTCV265VpTp8tm1wyIm1xqQCS+Q9NHx2Sr+WcnUrgLrQ6yiDIvHYJV5gHxsj1lMBy2zm5twLaZao8Jd+S8JJw==",
1287
+ "license": "MIT",
1288
+ "engines": {
1289
+ "bun": ">=1.0.0",
1290
+ "deno": ">=2.0.0",
1291
+ "node": ">=12.0.0"
1292
+ },
1293
+ "funding": {
1294
+ "type": "github",
1295
+ "url": "https://github.com/mysqljs/sql-escaper?sponsor=1"
1296
+ }
1297
+ },
1298
+ "node_modules/sqlstring": {
1299
+ "version": "2.3.3",
1300
+ "resolved": "https://registry.npmjs.org/sqlstring/-/sqlstring-2.3.3.tgz",
1301
+ "integrity": "sha512-qC9iz2FlN7DQl3+wjwn3802RTyjCx7sDvfQEXchwa6CWOx07/WVfh91gBmQ9fahw8snwGEWU3xGzOt4tFyHLxg==",
1302
+ "license": "MIT",
1303
+ "engines": {
1304
+ "node": ">= 0.6"
1305
+ }
1306
+ },
1307
+ "node_modules/statuses": {
1308
+ "version": "2.0.2",
1309
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz",
1310
+ "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
1311
+ "license": "MIT",
1312
+ "engines": {
1313
+ "node": ">= 0.8"
1314
+ }
1315
+ },
1316
+ "node_modules/toidentifier": {
1317
+ "version": "1.0.1",
1318
+ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
1319
+ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
1320
+ "license": "MIT",
1321
+ "engines": {
1322
+ "node": ">=0.6"
1323
+ }
1324
+ },
1325
+ "node_modules/tr46": {
1326
+ "version": "5.1.1",
1327
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-5.1.1.tgz",
1328
+ "integrity": "sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==",
1329
+ "license": "MIT",
1330
+ "dependencies": {
1331
+ "punycode": "^2.3.1"
1332
+ },
1333
+ "engines": {
1334
+ "node": ">=18"
1335
+ }
1336
+ },
1337
+ "node_modules/type-is": {
1338
+ "version": "2.0.1",
1339
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz",
1340
+ "integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==",
1341
+ "license": "MIT",
1342
+ "dependencies": {
1343
+ "content-type": "^1.0.5",
1344
+ "media-typer": "^1.1.0",
1345
+ "mime-types": "^3.0.0"
1346
+ },
1347
+ "engines": {
1348
+ "node": ">= 0.6"
1349
+ }
1350
+ },
1351
+ "node_modules/uid-safe": {
1352
+ "version": "2.1.5",
1353
+ "resolved": "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.5.tgz",
1354
+ "integrity": "sha512-KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA==",
1355
+ "license": "MIT",
1356
+ "dependencies": {
1357
+ "random-bytes": "~1.0.0"
1358
+ },
1359
+ "engines": {
1360
+ "node": ">= 0.8"
1361
+ }
1362
+ },
1363
+ "node_modules/undici-types": {
1364
+ "version": "7.21.0",
1365
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.21.0.tgz",
1366
+ "integrity": "sha512-w9IMgQrz4O0YN1LtB7K5P63vhlIOvC7opSmouCJ+ZywlPAlO9gIkJ+otk6LvGpAs2wg4econaCz3TvQ9xPoyuQ==",
1367
+ "license": "MIT",
1368
+ "peer": true
1369
+ },
1370
+ "node_modules/unpipe": {
1371
+ "version": "1.0.0",
1372
+ "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
1373
+ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
1374
+ "license": "MIT",
1375
+ "engines": {
1376
+ "node": ">= 0.8"
1377
+ }
1378
+ },
1379
+ "node_modules/vary": {
1380
+ "version": "1.1.2",
1381
+ "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
1382
+ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
1383
+ "license": "MIT",
1384
+ "engines": {
1385
+ "node": ">= 0.8"
1386
+ }
1387
+ },
1388
+ "node_modules/webidl-conversions": {
1389
+ "version": "7.0.0",
1390
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz",
1391
+ "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==",
1392
+ "license": "BSD-2-Clause",
1393
+ "engines": {
1394
+ "node": ">=12"
1395
+ }
1396
+ },
1397
+ "node_modules/whatwg-url": {
1398
+ "version": "14.2.0",
1399
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.2.0.tgz",
1400
+ "integrity": "sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==",
1401
+ "license": "MIT",
1402
+ "dependencies": {
1403
+ "tr46": "^5.1.0",
1404
+ "webidl-conversions": "^7.0.0"
1405
+ },
1406
+ "engines": {
1407
+ "node": ">=18"
1408
+ }
1409
+ },
1410
+ "node_modules/wrappy": {
1411
+ "version": "1.0.2",
1412
+ "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
1413
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
1414
+ "license": "ISC"
1415
+ }
1416
+ }
1417
+ }