-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
10304 lines (10304 loc) · 391 KB
/
package-lock.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "cuhk-map",
"version": "0.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "cuhk-map",
"version": "0.1.0",
"dependencies": {
"@builder.io/react-hydration-overlay": "^0.0.8",
"@custom-react-hooks/all": "^1.4.19",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@googlemaps/js-api-loader": "^1.16.6",
"@googlemaps/markerclusterer": "^2.5.3",
"@googlemaps/react-wrapper": "^1.1.35",
"@mui/icons-material": "^5.15.14",
"@mui/material": "^5.15.14",
"@nextui-org/react": "^2.2.10",
"@react-google-maps/api": "^2.19.3",
"@tanstack/react-query": "^5.29.2",
"@vercel/analytics": "^1.2.2",
"@vercel/speed-insights": "^1.0.10",
"@vis.gl/react-google-maps": "^0.7.0",
"axios": "^1.6.8",
"date-holidays": "^3.23.10",
"framer-motion": "^11.0.21",
"mongodb": "^6.5.0",
"mongoose": "^8.3.1",
"next": "^14.2.0",
"next-intl": "^3.11.1",
"next-seo": "^6.5.0",
"next-themes": "^0.3.0",
"react": "^18",
"react-dom": "^18",
"react-geolocated": "^4.1.2",
"react-google-places-autocomplete": "^4.0.1",
"react-icons": "^5.0.1",
"react-spinners": "^0.13.8",
"react-text-transition": "^3.1.0",
"react-timer-hook": "^3.0.7",
"sweetalert2": "^11.10.7",
"sweetalert2-react-content": "^5.0.7",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/google.maps": "^3.55.7",
"@types/mongoose": "^5.11.97",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
},
"node_modules/@aashutoshrathi/word-wrap": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
"integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==",
"dev": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@alloc/quick-lru": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
"integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@babel/code-frame": {
"version": "7.24.1",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.1.tgz",
"integrity": "sha512-bC49z4spJQR3j8vFtJBLqzyzFV0ciuL5HYX7qfSl3KEqeMVV+eTquRvmXxpvB0AMubRrvv7y5DILiLLPi57Ewg==",
"dependencies": {
"@babel/highlight": "^7.24.1",
"picocolors": "^1.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-imports": {
"version": "7.24.1",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.1.tgz",
"integrity": "sha512-HfEWzysMyOa7xI5uQHc/OcZf67/jc+xe/RZlznWQHhbb8Pg1SkRdbK4yEi61aY8wxQA7PkSfoojtLQP/Kpe3og==",
"dependencies": {
"@babel/types": "^7.24.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-string-parser": {
"version": "7.24.1",
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz",
"integrity": "sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.22.20",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz",
"integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight": {
"version": "7.24.1",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.1.tgz",
"integrity": "sha512-EPmDPxidWe/Ex+HTFINpvXdPHRmgSF3T8hGvzondYjmgzTQ/0EbLpSxyt+w3zzlYSk9cNBQNF9k0dT5Z2NiBjw==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.22.20",
"chalk": "^2.4.2",
"js-tokens": "^4.0.0",
"picocolors": "^1.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight/node_modules/ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"dependencies": {
"color-convert": "^1.9.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dependencies": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/color-convert": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"dependencies": {
"color-name": "1.1.3"
}
},
"node_modules/@babel/highlight/node_modules/color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
},
"node_modules/@babel/highlight/node_modules/escape-string-regexp": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
"engines": {
"node": ">=0.8.0"
}
},
"node_modules/@babel/highlight/node_modules/has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
"integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/supports-color": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"dependencies": {
"has-flag": "^3.0.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/runtime": {
"version": "7.24.1",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.1.tgz",
"integrity": "sha512-+BIznRzyqBf+2wCTxcKE3wDjfGeCoVE61KSHGpkzqrLi8qxqFwBeUFyId2cxkTmm55fzDGnm0+yCxaxygrLUnQ==",
"dependencies": {
"regenerator-runtime": "^0.14.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/types": {
"version": "7.24.0",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.0.tgz",
"integrity": "sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==",
"dependencies": {
"@babel/helper-string-parser": "^7.23.4",
"@babel/helper-validator-identifier": "^7.22.20",
"to-fast-properties": "^2.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@builder.io/react-hydration-overlay": {
"version": "0.0.8",
"resolved": "https://registry.npmjs.org/@builder.io/react-hydration-overlay/-/react-hydration-overlay-0.0.8.tgz",
"integrity": "sha512-iybjiiI3b2Fud9H0LWXrBL0V9v9QZ09GY1UjGM1z3q2lzvXutA4YsK+5yXCoJM1rGDGN43MzVG98NLLFIfB+1Q==",
"dependencies": {
"beautify": "^0.0.8",
"react-diff-viewer": "^3.1.1"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16",
"webpack": ">=4"
}
},
"node_modules/@builder.io/react-hydration-overlay/node_modules/memoize-one": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz",
"integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q=="
},
"node_modules/@builder.io/react-hydration-overlay/node_modules/react-diff-viewer": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/react-diff-viewer/-/react-diff-viewer-3.1.1.tgz",
"integrity": "sha512-rmvwNdcClp6ZWdS11m1m01UnBA4OwYaLG/li0dB781e/bQEzsGyj+qewVd6W5ztBwseQ72pO7nwaCcq5jnlzcw==",
"dependencies": {
"classnames": "^2.2.6",
"create-emotion": "^10.0.14",
"diff": "^4.0.1",
"emotion": "^10.0.14",
"memoize-one": "^5.0.4",
"prop-types": "^15.6.2"
},
"engines": {
"node": ">= 8"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0",
"react-dom": "^15.3.0 || ^16.0.0"
}
},
"node_modules/@custom-react-hooks/all": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/all/-/all-1.4.19.tgz",
"integrity": "sha512-NR07wemLq8d+rGW5VGnZO/QmcvCnDoBGdXwZZyKZngENPFuvhrE8aeITrXiE2VOu4jZoop2+yy2kb42Oepldpg==",
"dependencies": {
"@custom-react-hooks/use-async": "1.4.19",
"@custom-react-hooks/use-click-outside": "1.4.19",
"@custom-react-hooks/use-clipboard": "1.4.19",
"@custom-react-hooks/use-debounce": "1.4.19",
"@custom-react-hooks/use-document-title": "1.4.19",
"@custom-react-hooks/use-drag-drop": "1.4.19",
"@custom-react-hooks/use-effect-once": "1.4.19",
"@custom-react-hooks/use-element-size": "1.4.19",
"@custom-react-hooks/use-event-listener": "1.4.19",
"@custom-react-hooks/use-fetch": "1.4.19",
"@custom-react-hooks/use-form": "1.4.19",
"@custom-react-hooks/use-geo-location": "1.4.19",
"@custom-react-hooks/use-hover": "1.4.19",
"@custom-react-hooks/use-idle": "1.4.19",
"@custom-react-hooks/use-image-load": "1.4.19",
"@custom-react-hooks/use-key-press": "1.4.19",
"@custom-react-hooks/use-lock-body-scroll": "1.4.19",
"@custom-react-hooks/use-long-press": "1.4.19",
"@custom-react-hooks/use-media-devices": "1.4.19",
"@custom-react-hooks/use-media-query": "1.4.19",
"@custom-react-hooks/use-mouse": "1.4.19",
"@custom-react-hooks/use-on-screen": "1.4.19",
"@custom-react-hooks/use-orientation": "1.4.19",
"@custom-react-hooks/use-permission": "1.4.19",
"@custom-react-hooks/use-portal": "1.4.19",
"@custom-react-hooks/use-script": "1.4.19",
"@custom-react-hooks/use-status": "1.4.19",
"@custom-react-hooks/use-step": "1.4.19",
"@custom-react-hooks/use-storage": "1.4.19",
"@custom-react-hooks/use-throttle": "1.4.19",
"@custom-react-hooks/use-timeout": "1.4.19",
"@custom-react-hooks/use-toggle": "1.4.19",
"@custom-react-hooks/use-update-effect": "1.4.19",
"@custom-react-hooks/use-window-size": "1.4.19"
},
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-async": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-async/-/use-async-1.4.19.tgz",
"integrity": "sha512-DYOBimkU9FPJ4pEM5rd4/x829NW7B2Uu0XvjPX754AF6D6TTY0xxrQ18KOVAHByyzojfDX0NtF5PaOy07hFwdw==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-click-outside": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-click-outside/-/use-click-outside-1.4.19.tgz",
"integrity": "sha512-M/y3czr5dfQBl21y0NBJ/tANgSjshCKiz7uM0UajlaLhJsBnvrE2MTq6p3EZeqNRcCBNj4UFirTz/m0ElVzGyw==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-clipboard": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-clipboard/-/use-clipboard-1.4.19.tgz",
"integrity": "sha512-VP43xLhtUUUo13fMRTY/vHRR9ZX5s8R1pbtwxXB8LBU2BP+fkdWRk8inRvBm783BJyDd2BKrpeKgC7b2qz22Yw==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-debounce": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-debounce/-/use-debounce-1.4.19.tgz",
"integrity": "sha512-GhWeYQjyHxy+7LS4v8oYU1+DJ2ChSMFmZMz+pZqJRMj6OEbqngyDBBPENcw4dgOLCUaYoETxUh9FRqPm3Fwcgw==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-document-title": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-document-title/-/use-document-title-1.4.19.tgz",
"integrity": "sha512-o6yx6cjIxmlUJLHOvNv6LAUFwj80WoUyy9zFm9eF7I090oQ10YlAZ5T+Me7bDCoNlVYCtt5KnUbiiO9JYkoXFQ==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-drag-drop": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-drag-drop/-/use-drag-drop-1.4.19.tgz",
"integrity": "sha512-HNhhd1l1oNpA9090DQqgNV19MTlao/46WpPRciJkIlxMhFMdnHxjqvCmqhvVri0BaxtmBys5xFxL76r1IcSZdg==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-effect-once": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-effect-once/-/use-effect-once-1.4.19.tgz",
"integrity": "sha512-7Ou+9mekLOxYD4fKHwlYQjvgAIA16UNxiIr7yupBbl1Qzopm7Gd2hLkhJTT+iE/0b/CgO7HtwVtAwRF2QAvKaQ==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-element-size": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-element-size/-/use-element-size-1.4.19.tgz",
"integrity": "sha512-J+qqDDWW9iDm8djvKOJqROxrort4OFkyJYgVI0qNGFIznX/gRqpE1wnurDZI/Qkl+4OCi3CSiOh+rWDcm2wRrA==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-event-listener": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-event-listener/-/use-event-listener-1.4.19.tgz",
"integrity": "sha512-gbpU/1NQOo5f3oOn/zBss7Yfd74t7r40QuEcBpTHHVIwxpPKCNWi17iqpt2V4PzS6iYEQ4pXTmWS3eEJfoDqsg==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-fetch": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-fetch/-/use-fetch-1.4.19.tgz",
"integrity": "sha512-r1nW6ZtvWjIHKmzR/aE706oltTM1C5FTHMLhEBOyMtmCmPIPi5+hCmXmn7AS+YENSt48IUlUYKl9zocT++sYzg==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-form": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-form/-/use-form-1.4.19.tgz",
"integrity": "sha512-JeC4Pzla8uVWC22nKXeNxzpxa2J0F9Mhc4xftZv0pxVuFHavK9KPvjzolpzu/eXSk5YZy57A18yAdw4OKdJ5uQ==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-geo-location": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-geo-location/-/use-geo-location-1.4.19.tgz",
"integrity": "sha512-Rw70YACVcVg3Lv1fBgUkTFkW93KgqlKxIGbz9gsAY+V/EcEGVnC+eEGdZ6sffkohbiB4m59NcoNqpCw87isLsQ==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-hover": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-hover/-/use-hover-1.4.19.tgz",
"integrity": "sha512-KbNR01WlFmTOJ5VP1f1/qhoA//1YTJZIyZfReamvHNiO0hcerH/Sca69Gq62IzLADqUKE9sjqSiKqu3BkuaCUA==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-idle": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-idle/-/use-idle-1.4.19.tgz",
"integrity": "sha512-jZY8nCJ9yZARrZ7BCZz+f5b2DQ3rodPKwXEQJUdmH2/Sp4XnPHg1UBzeC/pT0RTDJN81bzryUsL7ttew0+QuTg==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-image-load": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-image-load/-/use-image-load-1.4.19.tgz",
"integrity": "sha512-8r+naU3G+TPogF83fTAnpBHq/l89Oc9F2eX8YW7Fbg8yZRhe6rwUz5UfY1BrMe8O4Wvfhd6nTIxAsN9/p06KVA==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-key-press": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-key-press/-/use-key-press-1.4.19.tgz",
"integrity": "sha512-hDqC0t52N4NlxujRmZ1F7X/4lYtrEJeOUkD49S6F0+FSjZ6kZhloJIQKoSzU0/WlRArHPT1TjIe5oGf9rGwxRg==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-lock-body-scroll": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-lock-body-scroll/-/use-lock-body-scroll-1.4.19.tgz",
"integrity": "sha512-IGPnlnPv5yWg2hDbQEK1M3nR7lzrzy1wLPyzUZzVRPsQ/kGFem+eYAv6/UYrT1JczTrI5l/x39d7oT0uAN0nFg==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-long-press": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-long-press/-/use-long-press-1.4.19.tgz",
"integrity": "sha512-+H5bM486XMHUSF8fH8Mo26Q/2BblqTP11Ynjp3UfIAmkWpXvj0AAs6TXvXfknT1NZ+89dwfRYgx14n9MsHse7w==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-media-devices": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-media-devices/-/use-media-devices-1.4.19.tgz",
"integrity": "sha512-JhDowSUvcZQO8qt8hYtSZV8PevI/P+9ZoADjgdNcJf8/Y0gza/oFrMN+HUr+0sEYrCZuXlKhi6khSX49+NipbA==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-media-query": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-media-query/-/use-media-query-1.4.19.tgz",
"integrity": "sha512-jCyb7BqBjZA10Ht5y5goXNfUfl2/p4cvsrXXWCY2ReDTKyig79HPG7g4kxABRJurgAr/D/OD1lIe7AYt5CKHkg==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-mouse": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-mouse/-/use-mouse-1.4.19.tgz",
"integrity": "sha512-P1i82gOSKTCPUaZPECjzTJHY7R3gU5M1IzkyA150W7qy2/MOwYFWt6gavkI9KAjhaTWamHNtJwZkxBJam4vdOw==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-on-screen": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-on-screen/-/use-on-screen-1.4.19.tgz",
"integrity": "sha512-MJhvRz7m05TYH5KbLA3F0MU5banSAa+mLl3CBz4gTiaLtSPtUYYoEL2dgeISBr1MbdccDQZ4hzjevoaEeuyIxQ==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-orientation": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-orientation/-/use-orientation-1.4.19.tgz",
"integrity": "sha512-KKk9Y9SyiQlpDExINpE5sKFLWequsWR6YRio/KD1oiG9brI12nwpN7ZRd7gmwEtpcGs+ITrziU4/osCic5Fwwg==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-permission": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-permission/-/use-permission-1.4.19.tgz",
"integrity": "sha512-2ibY7qUudW3f/fKksxuEi2o5dfSGmdGJVhQK8HTV+pich6FeFVl0a6h7C6NWHA202VszcGzUSjhRsz9TopVaBg==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-portal": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-portal/-/use-portal-1.4.19.tgz",
"integrity": "sha512-5EZE8Zmf6p465QybuJ7zqDmYVXs1EU3YwpCShAtJhrUVqA+oqLlN8PwGAZQ+XndL7FYp5bhWixdgSSlj0AMM0Q==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-script": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-script/-/use-script-1.4.19.tgz",
"integrity": "sha512-KRkBRPwfVOnT1nw2NUU4FdIsuEwOTufyBKqw03lJkhJmf62O3VZKofec4IoEThvjbVClWSsYQ/ZHRnQf+bxVVA==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-status": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-status/-/use-status-1.4.19.tgz",
"integrity": "sha512-1/pCPPzy7Q+KNFkWk2T4HGwKOvj9y7RA0UemQXrQrlVeyAuvLP3vw+bBx5ZL9+YU/B1yIroGEjVeYGrBtnSDcQ==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-step": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-step/-/use-step-1.4.19.tgz",
"integrity": "sha512-gX+nHEUOPpPMZcF7CLNwtiz2p60y1nTsIlrBw1JnV0g7hduaNFyaAJxDXPbusCviWpWQYkMAe5VRZAxliGi0JQ==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-storage": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-storage/-/use-storage-1.4.19.tgz",
"integrity": "sha512-jzDrGQ6UNRm2mw5aXSZOKWAvRl6baAVkCvNFE/8eJH6weDE32Qwa1P55CmA2UGtbCrohHddAdbwjXKwXi0+VZw==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-throttle": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-throttle/-/use-throttle-1.4.19.tgz",
"integrity": "sha512-or6moppLHlbNnr3xV7L1rO/7RI5mDnJCvL89okdIKYVGuB1Z5Fpd8qLukjrfVDbJqtM2c2+Mk8cWVDTAuZ5tCw==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-timeout": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-timeout/-/use-timeout-1.4.19.tgz",
"integrity": "sha512-DypQSne50VK9N+0i68tE+Fss+RcJk1xiR6+/dxKKdVsjEeKAT+zgsBWDm+u+Edem5zdB18FJDq+s/cvkr8eD/Q==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-toggle": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-toggle/-/use-toggle-1.4.19.tgz",
"integrity": "sha512-smYjmjyWH0jHPJ9XRZ/OXuDnCCzK3rTiHS88YhSi/rFMCFgZj911O8Vau9WiKdFVIbmC2Aj+MahEN5lepfjjOw==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-update-effect": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-update-effect/-/use-update-effect-1.4.19.tgz",
"integrity": "sha512-N1I/0FvcGD0VxRgVhFYQrT70f+ZXy8fVriT2vaxx94r9jp+anElX/GFpBS05oqmXLn0f2w3vnLr7+JLp3b9rBA==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@custom-react-hooks/use-window-size": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@custom-react-hooks/use-window-size/-/use-window-size-1.4.19.tgz",
"integrity": "sha512-xO2YLc22Xt+0kubQbtKm7tk5m82pFreQIY3Wg6Km3Jp/h8wqL3cMzxqxPRII9JRtJF4Wp4hSm9yMFfnohXQcGw==",
"peerDependencies": {
"react": ">=16"
}
},
"node_modules/@emotion/babel-plugin": {
"version": "11.11.0",
"resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz",
"integrity": "sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==",
"dependencies": {
"@babel/helper-module-imports": "^7.16.7",
"@babel/runtime": "^7.18.3",
"@emotion/hash": "^0.9.1",
"@emotion/memoize": "^0.8.1",
"@emotion/serialize": "^1.1.2",
"babel-plugin-macros": "^3.1.0",
"convert-source-map": "^1.5.0",
"escape-string-regexp": "^4.0.0",
"find-root": "^1.1.0",
"source-map": "^0.5.7",
"stylis": "4.2.0"
}
},
"node_modules/@emotion/cache": {
"version": "11.11.0",
"resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.11.0.tgz",
"integrity": "sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==",
"dependencies": {
"@emotion/memoize": "^0.8.1",
"@emotion/sheet": "^1.2.2",
"@emotion/utils": "^1.2.1",
"@emotion/weak-memoize": "^0.3.1",
"stylis": "4.2.0"
}
},
"node_modules/@emotion/hash": {
"version": "0.9.1",
"resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz",
"integrity": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ=="
},
"node_modules/@emotion/is-prop-valid": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.2.tgz",
"integrity": "sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==",
"dependencies": {
"@emotion/memoize": "^0.8.1"
}
},
"node_modules/@emotion/memoize": {
"version": "0.8.1",
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz",
"integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA=="
},
"node_modules/@emotion/react": {
"version": "11.11.4",
"resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.11.4.tgz",
"integrity": "sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw==",
"dependencies": {
"@babel/runtime": "^7.18.3",
"@emotion/babel-plugin": "^11.11.0",
"@emotion/cache": "^11.11.0",
"@emotion/serialize": "^1.1.3",
"@emotion/use-insertion-effect-with-fallbacks": "^1.0.1",
"@emotion/utils": "^1.2.1",
"@emotion/weak-memoize": "^0.3.1",
"hoist-non-react-statics": "^3.3.1"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@emotion/serialize": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.3.tgz",
"integrity": "sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA==",
"dependencies": {
"@emotion/hash": "^0.9.1",
"@emotion/memoize": "^0.8.1",
"@emotion/unitless": "^0.8.1",
"@emotion/utils": "^1.2.1",
"csstype": "^3.0.2"
}
},
"node_modules/@emotion/sheet": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.2.tgz",
"integrity": "sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA=="
},
"node_modules/@emotion/styled": {
"version": "11.11.0",
"resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.11.0.tgz",
"integrity": "sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==",
"dependencies": {
"@babel/runtime": "^7.18.3",
"@emotion/babel-plugin": "^11.11.0",
"@emotion/is-prop-valid": "^1.2.1",
"@emotion/serialize": "^1.1.2",
"@emotion/use-insertion-effect-with-fallbacks": "^1.0.1",
"@emotion/utils": "^1.2.1"
},
"peerDependencies": {
"@emotion/react": "^11.0.0-rc.0",
"react": ">=16.8.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@emotion/stylis": {
"version": "0.8.5",
"resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz",
"integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ=="
},
"node_modules/@emotion/unitless": {
"version": "0.8.1",
"resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz",
"integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ=="
},
"node_modules/@emotion/use-insertion-effect-with-fallbacks": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz",
"integrity": "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==",
"peerDependencies": {
"react": ">=16.8.0"
}
},
"node_modules/@emotion/utils": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.1.tgz",
"integrity": "sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg=="
},
"node_modules/@emotion/weak-memoize": {
"version": "0.3.1",
"resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz",
"integrity": "sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww=="
},
"node_modules/@eslint-community/eslint-utils": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
"integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==",
"dev": true,
"dependencies": {
"eslint-visitor-keys": "^3.3.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
}
},
"node_modules/@eslint-community/regexpp": {
"version": "4.10.0",
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz",
"integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==",
"dev": true,
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
}
},
"node_modules/@eslint/eslintrc": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz",
"integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==",
"dev": true,
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
"espree": "^9.6.0",
"globals": "^13.19.0",
"ignore": "^5.2.0",
"import-fresh": "^3.2.1",
"js-yaml": "^4.1.0",
"minimatch": "^3.1.2",
"strip-json-comments": "^3.1.1"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/eslint"
}
},
"node_modules/@eslint/js": {
"version": "8.56.0",
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz",
"integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==",
"dev": true,
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@floating-ui/core": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.0.tgz",
"integrity": "sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==",
"dependencies": {
"@floating-ui/utils": "^0.2.1"
}
},
"node_modules/@floating-ui/dom": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.3.tgz",
"integrity": "sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==",
"dependencies": {
"@floating-ui/core": "^1.0.0",
"@floating-ui/utils": "^0.2.0"
}
},
"node_modules/@floating-ui/react-dom": {
"version": "2.0.8",
"resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.0.8.tgz",
"integrity": "sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==",
"dependencies": {
"@floating-ui/dom": "^1.6.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
},
"node_modules/@floating-ui/utils": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.1.tgz",
"integrity": "sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q=="
},
"node_modules/@formatjs/ecma402-abstract": {
"version": "1.18.2",
"resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-1.18.2.tgz",
"integrity": "sha512-+QoPW4csYALsQIl8GbN14igZzDbuwzcpWrku9nyMXlaqAlwRBgl5V+p0vWMGFqHOw37czNXaP/lEk4wbLgcmtA==",
"dependencies": {
"@formatjs/intl-localematcher": "0.5.4",
"tslib": "^2.4.0"
}
},
"node_modules/@formatjs/fast-memoize": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@formatjs/fast-memoize/-/fast-memoize-2.2.0.tgz",
"integrity": "sha512-hnk/nY8FyrL5YxwP9e4r9dqeM6cAbo8PeU9UjyXojZMNvVad2Z06FAVHyR3Ecw6fza+0GH7vdJgiKIVXTMbSBA==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@formatjs/icu-messageformat-parser": {
"version": "2.7.6",
"resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.7.6.tgz",
"integrity": "sha512-etVau26po9+eewJKYoiBKP6743I1br0/Ie00Pb/S/PtmYfmjTcOn2YCh2yNkSZI12h6Rg+BOgQYborXk46BvkA==",
"dependencies": {
"@formatjs/ecma402-abstract": "1.18.2",
"@formatjs/icu-skeleton-parser": "1.8.0",
"tslib": "^2.4.0"
}
},
"node_modules/@formatjs/icu-skeleton-parser": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.8.0.tgz",
"integrity": "sha512-QWLAYvM0n8hv7Nq5BEs4LKIjevpVpbGLAJgOaYzg9wABEoX1j0JO1q2/jVkO6CVlq0dbsxZCngS5aXbysYueqA==",
"dependencies": {
"@formatjs/ecma402-abstract": "1.18.2",
"tslib": "^2.4.0"
}
},
"node_modules/@formatjs/intl-localematcher": {
"version": "0.5.4",
"resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.5.4.tgz",
"integrity": "sha512-zTwEpWOzZ2CiKcB93BLngUX59hQkuZjT2+SAQEscSm52peDW/getsawMcWF1rGRpMCX6D7nSJA3CzJ8gn13N/g==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@googlemaps/js-api-loader": {
"version": "1.16.6",
"resolved": "https://registry.npmjs.org/@googlemaps/js-api-loader/-/js-api-loader-1.16.6.tgz",
"integrity": "sha512-V8p5W9DbPQx74jWUmyYJOerhiB4C+MHekaO0ZRmc6lrOYrvY7+syLhzOWpp55kqSPeNb+qbC2h8i69aLIX6krQ==",
"dependencies": {
"fast-deep-equal": "^3.1.3"
}
},
"node_modules/@googlemaps/markerclusterer": {
"version": "2.5.3",
"resolved": "https://registry.npmjs.org/@googlemaps/markerclusterer/-/markerclusterer-2.5.3.tgz",
"integrity": "sha512-x7lX0R5yYOoiNectr10wLgCBasNcXFHiADIBdmn7jQllF2B5ENQw5XtZK+hIw4xnV0Df0xhN4LN98XqA5jaiOw==",
"dependencies": {
"fast-deep-equal": "^3.1.3",
"supercluster": "^8.0.1"
}
},
"node_modules/@googlemaps/react-wrapper": {
"version": "1.1.35",
"resolved": "https://registry.npmjs.org/@googlemaps/react-wrapper/-/react-wrapper-1.1.35.tgz",
"integrity": "sha512-vK+BDQMHN0Oqr66cW3ZPWVK43BUmJJBu6P8T74tc6/fKpUJUlFEaZsupgIIRRRDW9ejB8uGagUmwOnA2gdcvbw==",
"dependencies": {
"@googlemaps/js-api-loader": "^1.13.2"
},
"peerDependencies": {
"react": ">=16.8.0"
}
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.11.14",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz",
"integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==",
"dev": true,
"dependencies": {
"@humanwhocodes/object-schema": "^2.0.2",
"debug": "^4.3.1",
"minimatch": "^3.0.5"
},
"engines": {
"node": ">=10.10.0"
}
},
"node_modules/@humanwhocodes/module-importer": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
"integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
"dev": true,
"engines": {
"node": ">=12.22"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
}
},
"node_modules/@humanwhocodes/object-schema": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz",
"integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==",
"dev": true
},
"node_modules/@internationalized/date": {
"version": "3.5.2",
"resolved": "https://registry.npmjs.org/@internationalized/date/-/date-3.5.2.tgz",
"integrity": "sha512-vo1yOMUt2hzp63IutEaTUxROdvQg1qlMRsbCvbay2AK2Gai7wIgCyK5weEX3nHkiLgo4qCXHijFNC/ILhlRpOQ==",
"dependencies": {
"@swc/helpers": "^0.5.0"
}
},
"node_modules/@internationalized/message": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@internationalized/message/-/message-3.1.2.tgz",
"integrity": "sha512-MHAWsZWz8jf6jFPZqpTudcCM361YMtPIRu9CXkYmKjJ/0R3pQRScV5C0zS+Qi50O5UAm8ecKhkXx6mWDDcF6/g==",
"dependencies": {
"@swc/helpers": "^0.5.0",
"intl-messageformat": "^10.1.0"
}
},
"node_modules/@internationalized/number": {
"version": "3.5.1",
"resolved": "https://registry.npmjs.org/@internationalized/number/-/number-3.5.1.tgz",
"integrity": "sha512-N0fPU/nz15SwR9IbfJ5xaS9Ss/O5h1sVXMZf43vc9mxEG48ovglvvzBjF53aHlq20uoR6c+88CrIXipU/LSzwg==",
"dependencies": {
"@swc/helpers": "^0.5.0"
}
},
"node_modules/@internationalized/string": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@internationalized/string/-/string-3.2.1.tgz",
"integrity": "sha512-vWQOvRIauvFMzOO+h7QrdsJmtN1AXAFVcaLWP9AseRN2o7iHceZ6bIXhBD4teZl8i91A3gxKnWBlGgjCwU6MFQ==",
"dependencies": {
"@swc/helpers": "^0.5.0"
}
},
"node_modules/@isaacs/cliui": {
"version": "8.0.2",
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
"integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
"dependencies": {
"string-width": "^5.1.2",
"string-width-cjs": "npm:string-width@^4.2.0",
"strip-ansi": "^7.0.1",
"strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
"wrap-ansi": "^8.1.0",
"wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
},
"engines": {
"node": ">=12"
}
},
"node_modules/@isaacs/cliui/node_modules/ansi-regex": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz",
"integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==",
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
}
},
"node_modules/@isaacs/cliui/node_modules/strip-ansi": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
"dependencies": {
"ansi-regex": "^6.0.1"
},
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
}
},
"node_modules/@jridgewell/gen-mapping": {
"version": "0.3.5",
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
"integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==",
"dependencies": {
"@jridgewell/set-array": "^1.2.1",
"@jridgewell/sourcemap-codec": "^1.4.10",
"@jridgewell/trace-mapping": "^0.3.24"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/resolve-uri": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",