This repository was archived by the owner on Jan 7, 2025. It is now read-only.
forked from Aloento/Bunlog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
2924 lines (2487 loc) · 130 KB
/
pnpm-lock.yaml
File metadata and controls
2924 lines (2487 loc) · 130 KB
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
lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
dependencies:
'@fluentui/react-components':
specifier: 9.56.8
version: 9.56.8(@types/react-dom@18.2.17)(@types/react@18.2.38)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(scheduler@0.25.0)
'@lexical/file':
specifier: 0.10.0
version: 0.10.0(lexical@0.10.0)
'@lexical/react':
specifier: 0.10.0
version: 0.10.0(lexical@0.10.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(yjs@13.6.10)
'@prisma/client':
specifier: 6.1.0
version: 6.1.0(prisma@6.1.0)
ahooks:
specifier: 3.8.4
version: 3.8.4(react@18.2.0)
bufferutil:
specifier: 4.0.9
version: 4.0.9
dayjs:
specifier: 1.11.13
version: 1.11.13
gravatar-url:
specifier: 4.0.1
version: 4.0.1
lexical:
specifier: 0.10.0
version: 0.10.0
next:
specifier: 14.0.3
version: 14.0.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
next-auth:
specifier: 4.24.5
version: 4.24.5(next@14.0.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
prisma:
specifier: 6.1.0
version: 6.1.0
react:
specifier: 18.2.0
version: 18.2.0
react-dom:
specifier: 18.2.0
version: 18.2.0(react@18.2.0)
react-helmet:
specifier: 6.1.0
version: 6.1.0(react@18.2.0)
ts-node:
specifier: 10.9.2
version: 10.9.2(@types/node@22.10.5)(typescript@5.7.2)
typescript:
specifier: 5.7.2
version: 5.7.2
utf-8-validate:
specifier: 6.0.5
version: 6.0.5
devDependencies:
'@types/lodash':
specifier: 4.17.14
version: 4.17.14
'@types/node':
specifier: 22.10.5
version: 22.10.5
'@types/react':
specifier: 18.2.38
version: 18.2.38
'@types/react-dom':
specifier: 18.2.17
version: 18.2.17
'@types/react-helmet':
specifier: 6.1.11
version: 6.1.11
supports-color:
specifier: 10.0.0
version: 10.0.0
packages:
'@babel/runtime@7.26.0':
resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
engines: {node: '>=6.9.0'}
'@cspotcode/source-map-support@0.8.1':
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
engines: {node: '>=12'}
'@emotion/hash@0.9.2':
resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}
'@floating-ui/core@1.6.8':
resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==}
'@floating-ui/devtools@0.2.1':
resolution: {integrity: sha512-8PHJLbD6VhBh+LJ1uty/Bz30qs02NXCE5u8WpOhSewlYXUWl03GNXknr9AS2yaAWJEQaY27x7eByJs44gODBcw==}
peerDependencies:
'@floating-ui/dom': '>=1.5.4'
'@floating-ui/dom@1.6.12':
resolution: {integrity: sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==}
'@floating-ui/utils@0.2.8':
resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==}
'@fluentui/keyboard-keys@9.0.8':
resolution: {integrity: sha512-iUSJUUHAyTosnXK8O2Ilbfxma+ZyZPMua5vB028Ys96z80v+LFwntoehlFsdH3rMuPsA8GaC1RE7LMezwPBPdw==}
'@fluentui/priority-overflow@9.1.14':
resolution: {integrity: sha512-tIH8EhvjZF4MhxSjqrWOyodrQQW+RlVZqxuNFQF5OWRdSqcIK8g+Z+UbC5fYHQooCgVsthk2mFurfGMKFtf9ug==}
'@fluentui/react-accordion@9.5.12':
resolution: {integrity: sha512-xpY78JuTyxZF+id+GUxIMfFQG5mGkW5WvNW/H2t9kPKohYHfzQXTp7XUIkfSaqGMg/XjezqjtkJcCd+z9oKXnw==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-alert@9.0.0-beta.124':
resolution: {integrity: sha512-yFBo3B5H9hnoaXxlkuz8wRz04DEyQ+ElYA/p5p+Vojf19Zuta8DmFZZ6JtWdtxcdnnQ4LvAfC5OYYlzdReozPA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-aria@9.13.12':
resolution: {integrity: sha512-1qNa4Yux3X3l9pQMGnANkZcNJA4rtCNnaImW5rHDAXhRzvIkQtypN0bRIsWVZqeQEc5bABh9QJaItdOo+TPelw==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-avatar@9.6.47':
resolution: {integrity: sha512-ykEF6XVd+2vB7RghJaqcMZRpqbf6ZM7UgOVKLFIEAy8qiX2Fwa2VzzA3rhTQoBB2QvaXGrFKeDzN+bTkMkXKBg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-badge@9.2.48':
resolution: {integrity: sha512-yVP4SaLVjr97IvicxhlfECxB92MbDLIn+nevcGWV28/H7qWypZiCC8DXfJKE/QDVyrClefozqEIeww7lhUjcJg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-breadcrumb@9.0.47':
resolution: {integrity: sha512-r+sDXZWWVuwsS4JW+0tpOoC4F3iDCEWMtD0EOtc5wpwF/WASQWIvikzUDOS1N9ACTHVoyq1gPqQmECBHWCloQw==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-button@9.3.98':
resolution: {integrity: sha512-ET548xw82eXBz43tyxoswv51XnusSK2sq/mm9KrlNpSVbzjyOHxfG0ZQ88KZCIcFSqq/8ZpLG23tihlKOl/n+g==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-card@9.0.100':
resolution: {integrity: sha512-PLSWvFzNR9HvVQcMGbG1OIj2TjSlGVMV/6Nli/YaICRvGjjEX1f37NAu3yotEbxqZavJg7j8ekJ/dQqXPGv5HA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-carousel@9.4.3':
resolution: {integrity: sha512-wOd+cWV8b+2OOfITVmFY7fjouk28JtPTm5i7b3+1n0O8GMkkoI6dvpMyp+VXj4NnoYD86umrpXFGoSLX2UAqXw==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-checkbox@9.2.44':
resolution: {integrity: sha512-sVY0kKg3FMgzMMfGPbcM71dVqWYbOrkF7qtDDwwFeSCnk3km1SHxeNCR4KRIvtTriosvjkoo3u981ldLsufSWw==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-combobox@9.13.15':
resolution: {integrity: sha512-v03PcpOfeylfmF48SQ+FMEctafysMcScbVXej63fTiCXBZMxrdv3sJUG2Lf8ZbvQGVdEYad6l9J+Xsk1mhjr9Q==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-components@9.56.8':
resolution: {integrity: sha512-7Japh4zntMzCha2iuDYPPPCabvETpmJpxiLJptVR/iq7NdjYgpSX7RUkuIjjJOyYyvk6e1bQW9KXO6Eg3HyMPA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-context-selector@9.1.71':
resolution: {integrity: sha512-rBm3+e/RPERRdW8xbL7+JgUHApNkoVOXoRfzva4qWF4dOudmDytPobzNNAyNXQXSbFZoeBYiCQ62OZf7wVpE5A==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
scheduler: '>=0.19.0 <=0.23.0'
'@fluentui/react-dialog@9.11.26':
resolution: {integrity: sha512-I5/5zn843DQyOQ4mYuLqvgiA1UHS7wMYdwLFt5wGIQdk8oXgoCMwCJakFGU3/6JLWBl+YRxCd0RYMkCPuYdk1g==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-divider@9.2.80':
resolution: {integrity: sha512-8SahbCicYzoi75etgJwOI+YDh09/eGA9Pf0PUbpymY8c8+voH/o7OOxwiV45A8VlxZFd5K9TwA0MVtmxsiClDQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-drawer@9.6.6':
resolution: {integrity: sha512-Ky9Si3u5domFfkVMa/CclebHkj4OG+NQ4ut2yY0GYGAVnON0F1B3HWlqtmBId63gQNzdarosKM5WMjsSaDRMFA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-field@9.1.83':
resolution: {integrity: sha512-+Gm6RWcr32C+t+PVpqPRTzDNDDG01IUnevPJR2t2ROcr+rDmqGA8tQ0eT7Nl6ZpWDZeOHOHXR13YtMPEjq6VPw==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-icons@2.0.270':
resolution: {integrity: sha512-XFAUxbOTH5gb/eTZ5UDR/841tbNskr2SNa/hshsQdojyEKMjBxNNcXo2ruesdfCGKsz/KOlmSh2sZu7NmN2N7Q==}
peerDependencies:
react: '>=16.8.0 <19.0.0'
'@fluentui/react-image@9.1.78':
resolution: {integrity: sha512-/5bfyURPVgW2yJyFwsW5x+rCcS3yxZk+7vhrDPIQn/WzZ4cpO7XNQQvoeqZlpC/DbmPHJWjPzRi2kDwikuZgNg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-infobutton@9.0.0-beta.102':
resolution: {integrity: sha512-3kA4F0Vga8Ds6JGlBajLCCDOo/LmPuS786Wg7ui4ZTDYVIMzy1yp2XuVcZniifBFvEp0HQCUoDPWUV0VI3FfzQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-infolabel@9.0.54':
resolution: {integrity: sha512-DiU/mnt4TYAyrAYgfv8yFkYyrsKGsrkw09zUBl4yPXxz6fjtULQaAc1ahty8bndjuCrz3edDr8jbrHLVDB18Lg==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
'@fluentui/react-input@9.4.96':
resolution: {integrity: sha512-Fry5AwRwGotZmuSEYj7WNyGI2yYR+7kSO+2tqPy1HtajUVz+JfHbn95wem1ZoSkOUnuj15fmSuXJAAN5q967ug==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-jsx-runtime@9.0.48':
resolution: {integrity: sha512-Awk9rsbXsANqR+yCRSHlbVySn2jjP9FU94Jn+phe+USV93Pi32qJCwjL0zymIOIEYIeqdwngGHvSa+nrAx+jRQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
'@fluentui/react-label@9.1.81':
resolution: {integrity: sha512-Hv+rEbZDdLDTwrNqiDG66Yy21Qh2kpXg+etCfbqjF5ENua5J+I2iAdxDYwUUip7Hq12VckKnsqjytgdIhwyO/A==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-link@9.3.5':
resolution: {integrity: sha512-YAsnt0WOQvPA2esHjK9uuoxVuQVAN12nBO/DuNlqW9sv7Rpc2jHU/4de3gR608uGEWtp/K0bwyafo+oTtMzJKQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-menu@9.14.24':
resolution: {integrity: sha512-IJxvGQdJ2bMIYmpIpJixpJ55OqMLJUF6eAmLGZOMlk9TJiQxFKO04v6LYIffMFAuMknhwNfW3hbt6uU+hHcItA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-message-bar@9.2.19':
resolution: {integrity: sha512-wiO3kW8rCuCTscBZMUS9Lmt8e6DZiziwspjM/5ELu7DF6TQtIgPRe0CStL2UZEXvyLcGTpCCCj64LiTQ7UQhtA==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
'@fluentui/react-motion-components-preview@0.4.1':
resolution: {integrity: sha512-wHiwrhKpOACGHW4ozJjq8L598OKPk2IiSOT14IXOQ8XMOpKtusYO6CJ1nHukzFl3sQ/cx2ADIFoqaFJ1/1zYXg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-motion@9.6.5':
resolution: {integrity: sha512-EDgB/BqqIQuFiQk5dei92RR+/W9zZ15DaeDzDMqCMYgkipnYuJ2xE18cEHyuDpUVCQL4Uw25y3oLqLxb4fI6iA==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
'@fluentui/react-overflow@9.2.5':
resolution: {integrity: sha512-eH4QseZFy3S9qhOEG+0t8d2o5vY/0jqeJqcjsoXyh6WZskxhCpCxEWcvufPxTe0Y3YolMzYvIzTBmSgpRNljzg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-persona@9.2.106':
resolution: {integrity: sha512-QMU4RhGG4tVF09zniSlWtsg9p9RQ0MT8XOSIOSsaypATml8I8L3bVrIluKbJjLqR5BrxVpt/TAzrB0H0qUcD1g==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-popover@9.9.29':
resolution: {integrity: sha512-RAkL9rqUetCL+ie6AoChNwjKEVZweEyOGwExOIZW0U3kZ9dv87RHWFZrzl3EtiXaJ0c3BpvuMgZWpCVc+XKw2g==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-portal@9.4.40':
resolution: {integrity: sha512-YLpazsKAsc9u6x7z9E7vAIUcn8829PTECOtWNwDXLc9iSFKtTIO1HntybGkEtptb+2TYiquJgG+Lpg9YKFkaYQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-positioning@9.16.0':
resolution: {integrity: sha512-tVmsiH8bv654+dJYm6bmDA5E+Oo7j9J15tzlWvl7EowE9EBPNqZah5rTAyCoODkdU23pJcq43o2QpLGjPc36XQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-progress@9.1.94':
resolution: {integrity: sha512-Tfff8O5xMpji2oBeOuhp/yQolUqkpTQ1Ml8kIS/QS+nQ36XRAd/CSnI/OGyd/2Qsa9g93+XgXyopUemz1bUPAA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-provider@9.18.2':
resolution: {integrity: sha512-OVOGSYtcgl13nsQEIDEvhdL/d9LbA0gS87r4Kb2lWIn3iK3bLSjeYbNi++WLMQspaAI38jLSLrXyEoInN1WOdg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-radio@9.2.39':
resolution: {integrity: sha512-avEG2oM31ty69D4+OrZCakClleGgkJiqPyx6aVqyskH7Hy0/iC3TDMDpwkSY5QeLOvy+dNyhCNxY+rMuuVHAgA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-rating@9.0.26':
resolution: {integrity: sha512-SEL1uiiij+DMUTtvrJnawnni7xzbl1JQ3IvMN1I5PYw8uJNTL+JylF1P8/rltOd9xOCat1wsu7WsmzsahKnIUA==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
'@fluentui/react-search@9.0.26':
resolution: {integrity: sha512-pXmIG6L1bQk2eWPnnvFDczn67PcXjAuI/tT1N9tD+/iAc0SCz0sWN9S2rKTaYrrSVhDbUbM1EKyGci+MVlsW/A==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-select@9.1.94':
resolution: {integrity: sha512-kb0yeBQ41BlWNQZ/pjbgl21VFwlZc9hmm8YYriR+bc6cvRSj/oLAFj5/3XtB0DhjYO/IorvxCVI5vkSZnGgrnQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-shared-contexts@9.21.2':
resolution: {integrity: sha512-5hw9CfCmKaEbxmFi+ZF4EZzYWFKrfRLq9pXFIoJWprP1D3ZAds/ymtIOG/CsJzig8zQ1LQ3cNSUzNB75XWg6IQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
'@fluentui/react-skeleton@9.1.23':
resolution: {integrity: sha512-lDNP5xYnWJj6IHNd7FHVCi+p2XV7d2cIkwMJ5usKeoTTnWr/1E2T8P+pNsOyku68/r6zuozqtCOmCI2u/OLo4g==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-slider@9.2.3':
resolution: {integrity: sha512-2vaAR6eTDwhQf5t5d7nb+oHEbzD3nKbBnkdOVAieknmQV/Xxum8P6v1KY8FmYmwFhjxKaUYIZ9j9/mT95DEo+A==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-spinbutton@9.2.95':
resolution: {integrity: sha512-hJMXr+7X0wJhLQq0XmfQ2FLxvUxDTeUkHlEowtYjJJJDoepzuTm4chdyLz+Q4MSEV+NiKioLVMfNs750S7Z0Lw==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-spinner@9.5.5':
resolution: {integrity: sha512-PQSU0kJxOXBLwR/bNO996HkSqZ6mVWhDeT6Bt0gP+D+USl3Akj9cUnNtlzw5781tcdks/7U7SovqqKym3HTKoA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-swatch-picker@9.1.17':
resolution: {integrity: sha512-VG44DspajQFOvFpe71NyB7q1fBovtB41udvJCiaD5NVsUFo7THgtjJrgGjd4EUeruuoQ4SxJEv3T7HymFL64BA==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
'@fluentui/react-switch@9.1.101':
resolution: {integrity: sha512-7m7FiKVAyVOQbdeoiHWMbtnGxlcnSm7quhs9OySuP4fGRd0nR1DalmjOE4h/tbysyF/n0FcgGu3bD0dh5VgD7g==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-table@9.15.26':
resolution: {integrity: sha512-EMYQXxjtVYj6moL5lVQiA5hVEqm2raDv1nphX2wUGRb6Yy8YS5gS42B5DtNMPPnc6sDPwxhrqJL7BIeIHy5ILA==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-tabs@9.6.5':
resolution: {integrity: sha512-IulnVxI6gQEfmsdlVjmP33qtyzzAw2J/oBlXfSPz2JbARx6KEUMak7YNnIWm1Jv35lphQBuL6WVItDWY+9+xFg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-tabster@9.23.2':
resolution: {integrity: sha512-DG1rZy8dkD24urQQywhRPfo13qEALCHUWSBmuAYnZ9wAHkGRbDVgdGZLEEUkvP5a6PxdDsFD5AGnC4C+56gKOg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-tag-picker@9.3.13':
resolution: {integrity: sha512-F4TLdVR+ikGqFZVuM6CqVdCTqNYzJm5YY6cvMXlbN/nOFM6/sW/cxrdtNQ2tfgp+k4HXIzqOvd2ohtCca9DOBQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-tags@9.3.27':
resolution: {integrity: sha512-lJDXEI8KClPMZTnnviVegcvGIvWQXXT/fAq6cZm30EnzmM3hRLJFMDFpCLoCAWoYsK2Nyh2xyTny4Vr+/dE4Vg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-teaching-popover@9.1.26':
resolution: {integrity: sha512-AtMHNS8cQDVJoWpJsSInvNFcwUA+4bC+qXSAjxXK9CYAxztkqGmFoADqlvxSU7QufNwI/9aBR0AcmkefyM4/Ew==}
peerDependencies:
'@types/react': '>=16.8.0 <19.0.0'
'@types/react-dom': '>=16.8.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.8.0 <19.0.0'
'@fluentui/react-text@9.4.30':
resolution: {integrity: sha512-LwJL+daufTuTmelIKIYfzKjb6WdHzq4GiOD1COjElyAd8K5/hrsUB+oqKs6UxCRRDzHmuChLvInGiVIyAVunPw==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-textarea@9.3.95':
resolution: {integrity: sha512-f9MUl9nPDnVMINmK+rnJbxP6RjSadg2DxM2YubxivCMGEapnfeOLuWnBO82RXSMs60o66Zt3FUVmsGjCZ/HJ1A==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-theme@9.1.24':
resolution: {integrity: sha512-OhVKYD7CMYHxzJEn4PtIszledj8hbQJNWBMfIZsp4Sytdp9vCi0txIQUx4BhS1WqtQPhNGCF16eW9Q3NRrnIrQ==}
'@fluentui/react-toast@9.3.63':
resolution: {integrity: sha512-jNl7pcPpkUL31C9bc/Njikojd6ozfOUqa2l9PaKdfXg4FUDC/3lMELhFyjUfyWZD8cGsRaqRTp45DgCajd7ahg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-toolbar@9.2.13':
resolution: {integrity: sha512-6lY8YgxxstywsMh+6c66JNr1PtGE2FmPHRU5yNt0qYaZftXpOFg9UZrDcK00Um2sHTGXDZe+XlsWe4rsI1UdYQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-tooltip@9.5.2':
resolution: {integrity: sha512-hFx63frEUB0irYg7nBbTZh/1u4Ho57BBcpmrTTV/rq5NFlVAJJGWI9jj84utk7T+nFnnA9NUfvdy8KorCoxtkQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-tree@9.8.11':
resolution: {integrity: sha512-gKWzjgfjl4uVzX6fh9TAgVmil4ihBW1q84y1TIRdfB+nkLfE91KUqJRVgKqfKj3tL6mjkcvicJOZz0EKvt6iOg==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/react-utilities@9.18.19':
resolution: {integrity: sha512-cBYq2cRc+ofVv4DTgULX5ez6IN/DiZw8IC17giA7NyxGw9ed0Y2p7nqnz/tIa655tY/ZIw5oz+bRJrEPkpzA2g==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
'@fluentui/react-virtualizer@9.0.0-alpha.89':
resolution: {integrity: sha512-O4nw6FxlVZHQ6B8jCqpsDo308CEyyNNCFOqqC83c7KhA43QczwX0wif8UVlkGKPjY4iwBfEB4fGRO68khN/KRQ==}
peerDependencies:
'@types/react': '>=16.14.0 <19.0.0'
'@types/react-dom': '>=16.9.0 <19.0.0'
react: '>=16.14.0 <19.0.0'
react-dom: '>=16.14.0 <19.0.0'
'@fluentui/tokens@1.0.0-alpha.21':
resolution: {integrity: sha512-xQ1T56sNgDFGl+kJdIwhz67mHng8vcwO7Dvx5Uja4t+NRULQBgMcJ4reUo4FGF3TjufHj08pP0/OnKQgnOaSVg==}
'@griffel/core@1.18.2':
resolution: {integrity: sha512-odJspTMohsYZLSlO/oKsf6El6px1vg1461CpPverOzS9f0xaUKh/ZGenW+MjyyZ3aQ6adkPzcr/my6JFH/zdXQ==}
'@griffel/react@1.5.27':
resolution: {integrity: sha512-985A8iEBo++h9u96dbj3Kj5hdsBWbpkkwFpy0W8EGL0VRCzZmpb0AlWuq9pDJZACS6eZ2GAb/f9CqgVAgnTnOg==}
peerDependencies:
react: '>=16.8.0 <19.0.0'
'@griffel/style-types@1.3.0':
resolution: {integrity: sha512-bHwD3sUE84Xwv4dH011gOKe1jul77M1S6ZFN9Tnq8pvZ48UMdY//vtES6fv7GRS5wXYT4iqxQPBluAiYAfkpmw==}
'@jridgewell/resolve-uri@3.1.2':
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
'@jridgewell/sourcemap-codec@1.5.0':
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
'@jridgewell/trace-mapping@0.3.9':
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
'@lexical/clipboard@0.10.0':
resolution: {integrity: sha512-k1n93NQdTrGHFMQQ1NxD/G13uoTEBHKOqjgSAV3I3pQjG57zO51LsMjBxgR9BChVI1DotnQ/JQCbx2HCQkCeng==}
peerDependencies:
lexical: 0.10.0
'@lexical/code@0.10.0':
resolution: {integrity: sha512-ZEeoAtj/nXWmmN0Ol4lXSEAtxQozdDd/5I9P23Z4Leobg1YioZBDKwodM/TEITxrFme/cLgk3XCK1N2h2Noakw==}
peerDependencies:
lexical: 0.10.0
'@lexical/dragon@0.10.0':
resolution: {integrity: sha512-LBRkUW4NadFFQN9BIL3nz51AtPl1nSzRas61ob+hueSbovgr/+k9QGjLD1L7FIKnna2qzRlJjoI70Ll/V3fiCQ==}
peerDependencies:
lexical: 0.10.0
'@lexical/file@0.10.0':
resolution: {integrity: sha512-/lVAkIfANHdnrFzhcZfyBGBxIEoWj9q5qP7r8sEgHRRnYjmvp2IexGZB1qv7xTL3JfDTB4hoSsv7uGnFNib0tg==}
peerDependencies:
lexical: 0.10.0
'@lexical/hashtag@0.10.0':
resolution: {integrity: sha512-jy+LssP4ABfwS+bT2KD+W6gWl+dsyFd8Ql27bsfkNoeyIBMeSLRBNBymkkUyZGKfXrbkzMUJoH7Dws/loHY5Ng==}
peerDependencies:
lexical: 0.10.0
'@lexical/history@0.10.0':
resolution: {integrity: sha512-yu7FruEtOulZliE6nVgvC+GLVHhN15IcLVvKdYIi+QYzkOorKc6miVuGpLvJRHE7VtK0NMWb2ykyYz9gl5jW3Q==}
peerDependencies:
lexical: 0.10.0
'@lexical/html@0.10.0':
resolution: {integrity: sha512-zxPbjojLfZXt4Sx6CMi0NzPUrTJG8McXaCsqPKK2GQQnkKfmXLh5QsK7YhofngBDDQOtqVYzTNhrxMWVP1Sm/A==}
peerDependencies:
lexical: 0.10.0
'@lexical/link@0.10.0':
resolution: {integrity: sha512-LehZx9ruUR0UNZmNUMofrgwGkQo75X/yEAHQ/qFXt8Jz0D4g9fS6vsiSVn7BD4XrTdaf2kUaIe0VHScIZPjB0A==}
peerDependencies:
lexical: 0.10.0
'@lexical/list@0.10.0':
resolution: {integrity: sha512-xoba6e4RUPIOhD0kJ0X1iI8SgOGDNWtyObd/UBbFfAQDx0VETj31Q7PepSPy9OEeuvnF1Nn9pvUeHyG7cNFuHw==}
peerDependencies:
lexical: 0.10.0
'@lexical/mark@0.10.0':
resolution: {integrity: sha512-Xo8G8tADlxV9Es5hbca6MfZjOU5mkjZNdbRJ5dy4STNhtl3FcqbVGSAewFibzsKG3x/s8npFDY6nN/k/lkGaRg==}
peerDependencies:
lexical: 0.10.0
'@lexical/markdown@0.10.0':
resolution: {integrity: sha512-P6XT8736DtZoTV6KfO0+FM9pkCbGGk0wCim1HIDc3v2S4r9+Pie/FgOOWSz4jKygjhs/6EYgYJmZKq7G4Fo5WA==}
peerDependencies:
lexical: 0.10.0
'@lexical/offset@0.10.0':
resolution: {integrity: sha512-vgVmoR7XMjFuQiO6GecLGM/gcNgJlJXitO5uCHARi2yjJDmmCQ07THu5xpfXKXnkJTZXn1VfWWmAGu72Q9fKNw==}
peerDependencies:
lexical: 0.10.0
'@lexical/overflow@0.10.0':
resolution: {integrity: sha512-8YfYhjwDGliGzYFyLVH4nCqrgR0p3+vAwEe2WI65HJnPW9TnxRkrak7QkFPTsefiTnb1gnRc+FajP9LfjdQ8YA==}
peerDependencies:
lexical: 0.10.0
'@lexical/plain-text@0.10.0':
resolution: {integrity: sha512-KcjQR+nHvXQDDRZ9bhcLOWfrY47OXcQc1YMx3otHbMPlEC+f/J75DTUyp+V5fry9X8gHDq0iHm+w8hqgh5ii1Q==}
peerDependencies:
'@lexical/clipboard': 0.10.0
'@lexical/selection': 0.10.0
'@lexical/utils': 0.10.0
lexical: 0.10.0
'@lexical/react@0.10.0':
resolution: {integrity: sha512-7Ql/Y3FZSsPSCObT58CYRUd4tQzKL2U8B1xO0KXZBUbj+sO6gpNbc7/Y7MiZwCQzVNwP84j7mwkXQ1EnUBS52A==}
peerDependencies:
lexical: 0.10.0
react: '>=17.x'
react-dom: '>=17.x'
'@lexical/rich-text@0.10.0':
resolution: {integrity: sha512-mkg+8h5qh09daCc8+PhzHjczSVhlTOkrr8S4oma89mfQZ/CODJYd0tOOd9y/8JaDrBddTqjd4xTjXwEEJzVA4g==}
peerDependencies:
'@lexical/clipboard': 0.10.0
'@lexical/selection': 0.10.0
'@lexical/utils': 0.10.0
lexical: 0.10.0
'@lexical/selection@0.10.0':
resolution: {integrity: sha512-dziT1fb+/x8S3PUHI6BuF4DPML2njCDdyY7l9uTgzN9jGXxo9bzy+ySgRRN8IgjWQb8jkntAqkYIWTj4/3Jr7Q==}
peerDependencies:
lexical: 0.10.0
'@lexical/table@0.10.0':
resolution: {integrity: sha512-m0MBma4PNn5VV3yAGFK0iCTCZ5z/VBrZWLGxo3yPnY7FHgtUsDY84xYXziZGeixU+ehiQfsSPWVEGEC+EHFGTg==}
peerDependencies:
lexical: 0.10.0
'@lexical/text@0.10.0':
resolution: {integrity: sha512-kR/V4KgCIUedjEbdPtIrvsvalETDbAPhCB7HA9MBALYw9FxjXlpYBqP7yY8AxWoYCXMqDtKRu/vmo/OMi3Z8Bw==}
peerDependencies:
lexical: 0.10.0
'@lexical/utils@0.10.0':
resolution: {integrity: sha512-HrRZBLxZhe5V8+kNH6VZP9pfhQdBwK76KYBjWpCaQWkmeeuLx8clY3O+SMjy1Pu/Pdh80qqtad8bdJ0l2CxMSQ==}
peerDependencies:
lexical: 0.10.0
'@lexical/yjs@0.10.0':
resolution: {integrity: sha512-OV5yLl4XjfDKgRPSb1EyefU7c+MILKZrOzbPlv2xeTgIEd/sJiEszxvJlYsngLLN65wBDNKk90EcCWpH3KLz7A==}
peerDependencies:
lexical: 0.10.0
yjs: '>=13.5.22'
'@next/env@14.0.3':
resolution: {integrity: sha512-7xRqh9nMvP5xrW4/+L0jgRRX+HoNRGnfJpD+5Wq6/13j3dsdzxO3BCXn7D3hMqsDb+vjZnJq+vI7+EtgrYZTeA==}
'@next/swc-darwin-arm64@14.0.3':
resolution: {integrity: sha512-64JbSvi3nbbcEtyitNn2LEDS/hcleAFpHdykpcnrstITFlzFgB/bW0ER5/SJJwUPj+ZPY+z3e+1jAfcczRLVGw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
'@next/swc-darwin-x64@14.0.3':
resolution: {integrity: sha512-RkTf+KbAD0SgYdVn1XzqE/+sIxYGB7NLMZRn9I4Z24afrhUpVJx6L8hsRnIwxz3ERE2NFURNliPjJ2QNfnWicQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
'@next/swc-linux-arm64-gnu@14.0.3':
resolution: {integrity: sha512-3tBWGgz7M9RKLO6sPWC6c4pAw4geujSwQ7q7Si4d6bo0l6cLs4tmO+lnSwFp1Tm3lxwfMk0SgkJT7EdwYSJvcg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
'@next/swc-linux-arm64-musl@14.0.3':
resolution: {integrity: sha512-v0v8Kb8j8T23jvVUWZeA2D8+izWspeyeDGNaT2/mTHWp7+37fiNfL8bmBWiOmeumXkacM/AB0XOUQvEbncSnHA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
'@next/swc-linux-x64-gnu@14.0.3':
resolution: {integrity: sha512-VM1aE1tJKLBwMGtyBR21yy+STfl0MapMQnNrXkxeyLs0GFv/kZqXS5Jw/TQ3TSUnbv0QPDf/X8sDXuMtSgG6eg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
'@next/swc-linux-x64-musl@14.0.3':
resolution: {integrity: sha512-64EnmKy18MYFL5CzLaSuUn561hbO1Gk16jM/KHznYP3iCIfF9e3yULtHaMy0D8zbHfxset9LTOv6cuYKJgcOxg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
'@next/swc-win32-arm64-msvc@14.0.3':
resolution: {integrity: sha512-WRDp8QrmsL1bbGtsh5GqQ/KWulmrnMBgbnb+59qNTW1kVi1nG/2ndZLkcbs2GX7NpFLlToLRMWSQXmPzQm4tog==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
'@next/swc-win32-ia32-msvc@14.0.3':
resolution: {integrity: sha512-EKffQeqCrj+t6qFFhIFTRoqb2QwX1mU7iTOvMyLbYw3QtqTw9sMwjykyiMlZlrfm2a4fA84+/aeW+PMg1MjuTg==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
'@next/swc-win32-x64-msvc@14.0.3':
resolution: {integrity: sha512-ERhKPSJ1vQrPiwrs15Pjz/rvDHZmkmvbf/BjPN/UCOI++ODftT0GtasDPi0j+y6PPJi5HsXw+dpRaXUaw4vjuQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
'@panva/hkdf@1.2.1':
resolution: {integrity: sha512-6oclG6Y3PiDFcoyk8srjLfVKyMfVCKJ27JwNPViuXziFpmdz+MZnZN/aKY0JGXgYuO/VghU0jcOAZgWXZ1Dmrw==}
'@prisma/client@6.1.0':
resolution: {integrity: sha512-AbQYc5+EJKm1Ydfq3KxwcGiy7wIbm4/QbjCKWWoNROtvy7d6a3gmAGkKjK0iUCzh+rHV8xDhD5Cge8ke/kiy5Q==}
engines: {node: '>=18.18'}
peerDependencies:
prisma: '*'
peerDependenciesMeta:
prisma:
optional: true
'@prisma/debug@6.1.0':
resolution: {integrity: sha512-0himsvcM4DGBTtvXkd2Tggv6sl2JyUYLzEGXXleFY+7Kp6rZeSS3hiTW9mwtUlXrwYbJP6pwlVNB7jYElrjWUg==}
'@prisma/engines-version@6.1.0-21.11f085a2012c0f4778414c8db2651556ee0ef959':
resolution: {integrity: sha512-PdJqmYM2Fd8K0weOOtQThWylwjsDlTig+8Pcg47/jszMuLL9iLIaygC3cjWJLda69siRW4STlCTMSgOjZzvKPQ==}
'@prisma/engines@6.1.0':
resolution: {integrity: sha512-GnYJbCiep3Vyr1P/415ReYrgJUjP79fBNc1wCo7NP6Eia0CzL2Ot9vK7Infczv3oK7JLrCcawOSAxFxNFsAERQ==}
'@prisma/fetch-engine@6.1.0':
resolution: {integrity: sha512-asdFi7TvPlEZ8CzSZ/+Du5wZ27q6OJbRSXh+S8ISZguu+S9KtS/gP7NeXceZyb1Jv1SM1S5YfiCv+STDsG6rrg==}
'@prisma/get-platform@6.1.0':
resolution: {integrity: sha512-ia8bNjboBoHkmKGGaWtqtlgQOhCi7+f85aOkPJKgNwWvYrT6l78KgojLekE8zMhVk0R9lWcifV0Pf8l3/15V0Q==}
'@swc/helpers@0.5.15':
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
'@swc/helpers@0.5.2':
resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==}
'@tsconfig/node10@1.0.11':
resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==}
'@tsconfig/node12@1.0.11':
resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
'@tsconfig/node14@1.0.3':
resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
'@tsconfig/node16@1.0.4':
resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
'@types/lodash@4.17.14':
resolution: {integrity: sha512-jsxagdikDiDBeIRaPYtArcT8my4tN1og7MtMRquFT3XNA6axxyHDRUemqDz/taRDdOUn0GnGHRCuff4q48sW9A==}
'@types/node@22.10.5':
resolution: {integrity: sha512-F8Q+SeGimwOo86fiovQh8qiXfFEh2/ocYv7tU5pJ3EXMSSxk1Joj5wefpFK2fHTf/N6HKGSxIDBT9f3gCxXPkQ==}
'@types/prop-types@15.7.14':
resolution: {integrity: sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==}
'@types/react-dom@18.2.17':
resolution: {integrity: sha512-rvrT/M7Df5eykWFxn6MYt5Pem/Dbyc1N8Y0S9Mrkw2WFCRiqUgw9P7ul2NpwsXCSM1DVdENzdG9J5SreqfAIWg==}
'@types/react-helmet@6.1.11':
resolution: {integrity: sha512-0QcdGLddTERotCXo3VFlUSWO3ztraw8nZ6e3zJSgG7apwV5xt+pJUS8ewPBqT4NYB1optGLprNQzFleIY84u/g==}
'@types/react@18.2.38':
resolution: {integrity: sha512-cBBXHzuPtQK6wNthuVMV6IjHAFkdl/FOPFIlkd81/Cd1+IqkHu/A+w4g43kaQQoYHik/ruaQBDL72HyCy1vuMw==}
'@types/scheduler@0.23.0':
resolution: {integrity: sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw==}
acorn-walk@8.3.4:
resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
engines: {node: '>=0.4.0'}
acorn@8.14.0:
resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
engines: {node: '>=0.4.0'}
hasBin: true
ahooks@3.8.4:
resolution: {integrity: sha512-39wDEw2ZHvypaT14EpMMk4AzosHWt0z9bulY0BeDsvc9PqJEV+Kjh/4TZfftSsotBMq52iYIOFPd3PR56e0ZJg==}
engines: {node: '>=8.0.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
arg@4.1.3:
resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
blueimp-md5@2.19.0:
resolution: {integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==}
bufferutil@4.0.9:
resolution: {integrity: sha512-WDtdLmJvAuNNPzByAYpRo2rF1Mmradw6gvWsQKf63476DDXmomT9zUiGypLcG4ibIM67vhAj8jJRdbmEws2Aqw==}
engines: {node: '>=6.14.2'}
busboy@1.6.0:
resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
engines: {node: '>=10.16.0'}
caniuse-lite@1.0.30001690:
resolution: {integrity: sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==}
client-only@0.0.1:
resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
cookie@0.5.0:
resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
engines: {node: '>= 0.6'}
create-require@1.1.1:
resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
dayjs@1.11.13:
resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
diff@4.0.2:
resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
engines: {node: '>=0.3.1'}
dom-helpers@5.2.1:
resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
embla-carousel-autoplay@8.5.1:
resolution: {integrity: sha512-FnZklFpePfp8wbj177UwVaGFehgs+ASVcJvYLWTtHuYKURynCc3IdDn2qrn0E5Qpa3g9yeGwCS4p8QkrZmO8xg==}
peerDependencies:
embla-carousel: 8.5.1
embla-carousel-fade@8.5.1:
resolution: {integrity: sha512-n7vRe2tsTW0vc0Xxtk3APoxhUSXIGh/lGRKYtBJS/SWDeXf9E3qVUst4MfHhwXaHlfu5PLqG3xIEDAr2gwbbNA==}
peerDependencies:
embla-carousel: 8.5.1
embla-carousel@8.5.1:
resolution: {integrity: sha512-JUb5+FOHobSiWQ2EJNaueCNT/cQU9L6XWBbWmorWPQT9bkbk+fhsuLr8wWrzXKagO3oWszBO7MSx+GfaRk4E6A==}
fsevents@2.3.3:
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
gravatar-url@4.0.1:
resolution: {integrity: sha512-AiU83cghGg2D8vAUwrMXCByejkkm4RtLwMNGmPU7VhqBYhsxcBCV0SAzRpYNbUCpTci5v46J/KFKPmDYaG2oyA==}
engines: {node: '>=12'}
intersection-observer@0.12.2:
resolution: {integrity: sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg==}
isomorphic.js@0.2.5:
resolution: {integrity: sha512-PIeMbHqMt4DnUP3MA/Flc0HElYjMXArsw1qwJZcm9sqR8mq3l8NYizFMty0pWwE/tzIGH3EKK5+jes5mAr85yw==}
jose@4.15.9:
resolution: {integrity: sha512-1vUQX+IdDMVPj4k8kOxgUqlcK518yluMuGZwqlr44FS1ppZB/5GWh4rZG89erpOBOJjU/OBsnCVFfapsRz6nEA==}
js-cookie@3.0.5:
resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==}
engines: {node: '>=14'}
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
keyborg@2.6.0:
resolution: {integrity: sha512-o5kvLbuTF+o326CMVYpjlaykxqYP9DphFQZ2ZpgrvBouyvOxyEB7oqe8nOLFpiV5VCtz0D3pt8gXQYWpLpBnmA==}
lexical@0.10.0:
resolution: {integrity: sha512-/lYJVpjQPOzFVfQWhnxRSP6HHBywiltzx9/pWRsByzXDZL+FTty3yjTsSFiCWy4PoVZaXqH8gYBe9dkxZK7+Hg==}
lib0@0.2.99:
resolution: {integrity: sha512-vwztYuUf1uf/1zQxfzRfO5yzfNKhTtgOByCruuiQQxWQXnPb8Itaube5ylofcV0oM0aKal9Mv+S1s1Ky0UYP1w==}
engines: {node: '>=16'}
hasBin: true
lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
lru-cache@6.0.0:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
engines: {node: '>=10'}
make-error@1.3.6:
resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
md5-hex@4.0.0:
resolution: {integrity: sha512-di38zHPn4Tz8LCb5Lz8SpLb/20Hv23aPXpF4Bq1mR5r9JuCZQ/JpcDUxFfZF9Ur5GiUvqS5NQOkR+fm5cYZ0IQ==}
engines: {node: '>=12'}
nanoid@3.3.8:
resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
next-auth@4.24.5:
resolution: {integrity: sha512-3RafV3XbfIKk6rF6GlLE4/KxjTcuMCifqrmD+98ejFq73SRoj2rmzoca8u764977lH/Q7jo6Xu6yM+Re1Mz/Og==}
peerDependencies:
next: ^12.2.5 || ^13 || ^14
nodemailer: ^6.6.5
react: ^17.0.2 || ^18