-
Notifications
You must be signed in to change notification settings - Fork 0
/
pnpm-lock.yaml
7590 lines (6824 loc) · 349 KB
/
pnpm-lock.yaml
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: '6.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
dependencies:
'@commitlint/cli':
specifier: ^18.6.0
version: 18.6.0(@types/node@20.3.1)(typescript@5.1.3)
'@commitlint/config-conventional':
specifier: ^18.6.0
version: 18.6.0
'@hookform/resolvers':
specifier: ^3.3.4
version: 3.3.4(react-hook-form@7.49.3)
'@nextui-org/react':
specifier: ^2.2.9
version: 2.2.9(@types/react@18.2.12)(framer-motion@10.18.0)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20)(tailwindcss@3.3.2)
'@radix-ui/react-alert-dialog':
specifier: ^1.0.5
version: 1.0.5(@types/react-dom@18.2.7)(@types/react@18.2.12)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
'@radix-ui/react-avatar':
specifier: ^1.0.4
version: 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.12)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
'@radix-ui/react-checkbox':
specifier: ^1.0.4
version: 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.12)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
'@radix-ui/react-dialog':
specifier: ^1.0.5
version: 1.0.5(@types/react-dom@18.2.7)(@types/react@18.2.12)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
'@radix-ui/react-dropdown-menu':
specifier: ^2.0.6
version: 2.0.6(@types/react-dom@18.2.7)(@types/react@18.2.12)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
'@radix-ui/react-hover-card':
specifier: ^1.0.7
version: 1.0.7(@types/react-dom@18.2.7)(@types/react@18.2.12)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
'@radix-ui/react-icons':
specifier: ^1.3.0
version: 1.3.0(react@0.0.0-experimental-5bcade5fc-20231208)
'@radix-ui/react-label':
specifier: ^2.0.2
version: 2.0.2(@types/react-dom@18.2.7)(@types/react@18.2.12)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
'@radix-ui/react-popover':
specifier: ^1.0.7
version: 1.0.7(@types/react-dom@18.2.7)(@types/react@18.2.12)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
'@radix-ui/react-scroll-area':
specifier: ^1.0.5
version: 1.0.5(@types/react-dom@18.2.7)(@types/react@18.2.12)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
'@radix-ui/react-select':
specifier: ^2.0.0
version: 2.0.0(@types/react-dom@18.2.7)(@types/react@18.2.12)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
'@radix-ui/react-separator':
specifier: ^1.0.3
version: 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.12)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
'@radix-ui/react-slot':
specifier: ^1.0.2
version: 1.0.2(@types/react@18.2.12)(react@0.0.0-experimental-5bcade5fc-20231208)
'@radix-ui/react-tabs':
specifier: ^1.0.4
version: 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.12)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
'@radix-ui/react-toast':
specifier: ^1.1.5
version: 1.1.5(@types/react-dom@18.2.7)(@types/react@18.2.12)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
'@supabase/auth-helpers-nextjs':
specifier: latest
version: 0.8.7(@supabase/supabase-js@2.39.3)
'@supabase/ssr':
specifier: ^0.0.10
version: 0.0.10(@supabase/supabase-js@2.39.3)
'@supabase/supabase-js':
specifier: ^2.39.3
version: 2.39.3
'@tanstack/react-query':
specifier: ^5.17.19
version: 5.17.19(react@0.0.0-experimental-5bcade5fc-20231208)
'@tanstack/react-query-devtools':
specifier: ^5.17.21
version: 5.17.21(@tanstack/react-query@5.17.19)(react@0.0.0-experimental-5bcade5fc-20231208)
autoprefixer:
specifier: 10.4.14
version: 10.4.14(postcss@8.4.24)
class-variance-authority:
specifier: ^0.7.0
version: 0.7.0
clsx:
specifier: ^2.1.0
version: 2.1.0
date-fns:
specifier: ^2.30.0
version: 2.30.0
eslint-config-next:
specifier: ^14.1.0
version: 14.1.0(eslint@8.56.0)(typescript@5.1.3)
framer-motion:
specifier: ^10.18.0
version: 10.18.0(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
lucide-react:
specifier: ^0.279.0
version: 0.279.0(react@0.0.0-experimental-5bcade5fc-20231208)
next:
specifier: 14.0.5-canary.25
version: 14.0.5-canary.25(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
postcss:
specifier: 8.4.24
version: 8.4.24
react:
specifier: 0.0.0-experimental-5bcade5fc-20231208
version: 0.0.0-experimental-5bcade5fc-20231208
react-day-picker:
specifier: ^8.10.0
version: 8.10.0(date-fns@2.30.0)(react@0.0.0-experimental-5bcade5fc-20231208)
react-dom:
specifier: 0.0.0-experimental-5bcade5fc-20231208
version: 0.0.0-experimental-5bcade5fc-20231208(react@0.0.0-experimental-5bcade5fc-20231208)
react-hook-form:
specifier: ^7.49.3
version: 7.49.3(react@0.0.0-experimental-5bcade5fc-20231208)
react-icons:
specifier: ^4.12.0
version: 4.12.0(react@0.0.0-experimental-5bcade5fc-20231208)
tailwind-merge:
specifier: ^1.14.0
version: 1.14.0
tailwindcss:
specifier: 3.3.2
version: 3.3.2
tailwindcss-animate:
specifier: ^1.0.7
version: 1.0.7(tailwindcss@3.3.2)
typescript:
specifier: 5.1.3
version: 5.1.3
zod:
specifier: ^3.22.4
version: 3.22.4
devDependencies:
'@biomejs/biome':
specifier: 1.5.3
version: 1.5.3
'@playwright/test':
specifier: ^1.41.1
version: 1.41.1
'@types/node':
specifier: 20.3.1
version: 20.3.1
'@types/react':
specifier: 18.2.12
version: 18.2.12
'@types/react-dom':
specifier: 18.2.7
version: 18.2.7
encoding:
specifier: ^0.1.13
version: 0.1.13
husky:
specifier: ^8.0.3
version: 8.0.3
packages:
/@aashutoshrathi/word-wrap@1.2.6:
resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
engines: {node: '>=0.10.0'}
dev: false
/@alloc/quick-lru@5.2.0:
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
dev: false
/@babel/code-frame@7.23.5:
resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.23.4
chalk: 2.4.2
dev: false
/@babel/helper-validator-identifier@7.22.20:
resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
engines: {node: '>=6.9.0'}
dev: false
/@babel/highlight@7.23.4:
resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': 7.22.20
chalk: 2.4.2
js-tokens: 4.0.0
dev: false
/@babel/runtime@7.23.9:
resolution: {integrity: sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.1
dev: false
/@biomejs/biome@1.5.3:
resolution: {integrity: sha512-yvZCa/g3akwTaAQ7PCwPWDCkZs3Qa5ONg/fgOUT9e6wAWsPftCjLQFPXBeGxPK30yZSSpgEmRCfpGTmVbUjGgg==}
engines: {node: '>=14.*'}
hasBin: true
requiresBuild: true
optionalDependencies:
'@biomejs/cli-darwin-arm64': 1.5.3
'@biomejs/cli-darwin-x64': 1.5.3
'@biomejs/cli-linux-arm64': 1.5.3
'@biomejs/cli-linux-arm64-musl': 1.5.3
'@biomejs/cli-linux-x64': 1.5.3
'@biomejs/cli-linux-x64-musl': 1.5.3
'@biomejs/cli-win32-arm64': 1.5.3
'@biomejs/cli-win32-x64': 1.5.3
dev: true
/@biomejs/cli-darwin-arm64@1.5.3:
resolution: {integrity: sha512-ImU7mh1HghEDyqNmxEZBoMPr8SxekkZuYcs+gynKlNW+TALQs7swkERiBLkG9NR0K1B3/2uVzlvYowXrmlW8hw==}
engines: {node: '>=14.*'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
/@biomejs/cli-darwin-x64@1.5.3:
resolution: {integrity: sha512-vCdASqYnlpq/swErH7FD6nrFz0czFtK4k/iLgj0/+VmZVjineFPgevOb+Sr9vz0tk0GfdQO60bSpI74zU8M9Dw==}
engines: {node: '>=14.*'}
cpu: [x64]
os: [darwin]
requiresBuild: true
dev: true
optional: true
/@biomejs/cli-linux-arm64-musl@1.5.3:
resolution: {integrity: sha512-DYuMizUYUBYfS0IHGjDrOP1RGipqWfMGEvNEJ398zdtmCKLXaUvTimiox5dvx4X15mBK5M2m8wgWUgOP1giUpQ==}
engines: {node: '>=14.*'}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: true
optional: true
/@biomejs/cli-linux-arm64@1.5.3:
resolution: {integrity: sha512-cupBQv0sNF1OKqBfx7EDWMSsKwRrBUZfjXawT4s6hKV6ALq7p0QzWlxr/sDmbKMLOaLQtw2Qgu/77N9rm+f9Rg==}
engines: {node: '>=14.*'}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: true
optional: true
/@biomejs/cli-linux-x64-musl@1.5.3:
resolution: {integrity: sha512-UUHiAnlDqr2Y/LpvshBFhUYMWkl2/Jn+bi3U6jKuav0qWbbBKU/ByHgR4+NBxpKBYoCtWxhnmatfH1bpPIuZMw==}
engines: {node: '>=14.*'}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: true
optional: true
/@biomejs/cli-linux-x64@1.5.3:
resolution: {integrity: sha512-YQrSArQvcv4FYsk7Q91Yv4uuu5F8hJyORVcv3zsjCLGkjIjx2RhjYLpTL733SNL7v33GmOlZY0eFR1ko38tuUw==}
engines: {node: '>=14.*'}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: true
optional: true
/@biomejs/cli-win32-arm64@1.5.3:
resolution: {integrity: sha512-HxatYH7vf/kX9nrD+pDYuV2GI9GV8EFo6cfKkahAecTuZLPxryHx1WEfJthp5eNsE0+09STGkKIKjirP0ufaZA==}
engines: {node: '>=14.*'}
cpu: [arm64]
os: [win32]
requiresBuild: true
dev: true
optional: true
/@biomejs/cli-win32-x64@1.5.3:
resolution: {integrity: sha512-fMvbSouZEASU7mZH8SIJSANDm5OqsjgtVXlbUqxwed6BP7uuHRSs396Aqwh2+VoW8fwTpp6ybIUoC9FrzB0kyA==}
engines: {node: '>=14.*'}
cpu: [x64]
os: [win32]
requiresBuild: true
dev: true
optional: true
/@commitlint/cli@18.6.0(@types/node@20.3.1)(typescript@5.1.3):
resolution: {integrity: sha512-FiH23cr9QG8VdfbmvJJZmdfHGVMCouOOAzoXZ3Cd7czGC52RbycwNt8YCI7SA69pAl+t30vh8LMaO/N+kcel6w==}
engines: {node: '>=v18'}
hasBin: true
dependencies:
'@commitlint/format': 18.6.0
'@commitlint/lint': 18.6.0
'@commitlint/load': 18.6.0(@types/node@20.3.1)(typescript@5.1.3)
'@commitlint/read': 18.6.0
'@commitlint/types': 18.6.0
execa: 5.1.1
lodash.isfunction: 3.0.9
resolve-from: 5.0.0
resolve-global: 1.0.0
yargs: 17.7.2
transitivePeerDependencies:
- '@types/node'
- typescript
dev: false
/@commitlint/config-conventional@18.6.0:
resolution: {integrity: sha512-CDCOf2eJz9D/TL44IBks0stM9TmdLCNE2B48owIU3YCadwzts/bobXPScagIgPQF6hhKYMEdj5zpUDlmbwuqwQ==}
engines: {node: '>=v18'}
dependencies:
conventional-changelog-conventionalcommits: 7.0.2
dev: false
/@commitlint/config-validator@18.6.0:
resolution: {integrity: sha512-Ptfa865arNozlkjxrYG3qt6wT9AlhNUHeuDyKEZiTL/l0ftncFhK/KN0t/EAMV2tec+0Mwxo0FmhbESj/bI+1g==}
engines: {node: '>=v18'}
dependencies:
'@commitlint/types': 18.6.0
ajv: 8.12.0
dev: false
/@commitlint/ensure@18.6.0:
resolution: {integrity: sha512-xY07NmOBJ7JuhX3tic021PaeLepZARIQyqpAQoNQZoml1keBFfB6MbA7XlWZv0ebbarUFE4yhKxOPw+WFv7/qw==}
engines: {node: '>=v18'}
dependencies:
'@commitlint/types': 18.6.0
lodash.camelcase: 4.3.0
lodash.kebabcase: 4.1.1
lodash.snakecase: 4.1.1
lodash.startcase: 4.4.0
lodash.upperfirst: 4.3.1
dev: false
/@commitlint/execute-rule@18.4.4:
resolution: {integrity: sha512-a37Nd3bDQydtg9PCLLWM9ZC+GO7X5i4zJvrggJv5jBhaHsXeQ9ZWdO6ODYR+f0LxBXXNYK3geYXJrCWUCP8JEg==}
engines: {node: '>=v18'}
dev: false
/@commitlint/format@18.6.0:
resolution: {integrity: sha512-8UNWfs2slPPSQiiVpLGJTnPHv7Jkd5KYxfbNXbmLL583bjom4RrylvyrCVnmZReA8nNad7pPXq6mDH4FNVj6xg==}
engines: {node: '>=v18'}
dependencies:
'@commitlint/types': 18.6.0
chalk: 4.1.2
dev: false
/@commitlint/is-ignored@18.6.0:
resolution: {integrity: sha512-Xjx/ZyyJ4FdLuz0FcOvqiqSFgiO2yYj3QN9XlvyrxqbXTxPVC7QFEXJYBVPulUSN/gR7WXH1Udw+HYYfD17xog==}
engines: {node: '>=v18'}
dependencies:
'@commitlint/types': 18.6.0
semver: 7.5.4
dev: false
/@commitlint/lint@18.6.0:
resolution: {integrity: sha512-ycbuDWfyykPmslgiHzhz8dL6F0BJYltXLVfc+M49z0c+FNITM0v+r0Vd2+Tdtq06VTc894p2+YSmZhulY8Jn3Q==}
engines: {node: '>=v18'}
dependencies:
'@commitlint/is-ignored': 18.6.0
'@commitlint/parse': 18.6.0
'@commitlint/rules': 18.6.0
'@commitlint/types': 18.6.0
dev: false
/@commitlint/load@18.6.0(@types/node@20.3.1)(typescript@5.1.3):
resolution: {integrity: sha512-RRssj7TmzT0bowoEKlgwg8uQ7ORXWkw7lYLsZZBMi9aInsJuGNLNWcMxJxRZbwxG3jkCidGUg85WmqJvRjsaDA==}
engines: {node: '>=v18'}
dependencies:
'@commitlint/config-validator': 18.6.0
'@commitlint/execute-rule': 18.4.4
'@commitlint/resolve-extends': 18.6.0
'@commitlint/types': 18.6.0
chalk: 4.1.2
cosmiconfig: 8.3.6(typescript@5.1.3)
cosmiconfig-typescript-loader: 5.0.0(@types/node@20.3.1)(cosmiconfig@8.3.6)(typescript@5.1.3)
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
resolve-from: 5.0.0
transitivePeerDependencies:
- '@types/node'
- typescript
dev: false
/@commitlint/message@18.4.4:
resolution: {integrity: sha512-lHF95mMDYgAI1LBXveJUyg4eLaMXyOqJccCK3v55ZOEUsMPrDi8upqDjd/NmzWmESYihaOMBTAnxm+6oD1WoDQ==}
engines: {node: '>=v18'}
dev: false
/@commitlint/parse@18.6.0:
resolution: {integrity: sha512-Y/G++GJpATFw54O0jikc/h2ibyGHgghtPnwsOk3O/aU092ydJ5XEHYcd7xGNQYuLweLzQis2uEwRNk9AVIPbQQ==}
engines: {node: '>=v18'}
dependencies:
'@commitlint/types': 18.6.0
conventional-changelog-angular: 7.0.0
conventional-commits-parser: 5.0.0
dev: false
/@commitlint/read@18.6.0:
resolution: {integrity: sha512-w39ji8VfWhPKRquPhRHB3Yd8XIHwaNHgOh28YI1QEmZ59qVpuVUQo6h/NsVb+uoC6LbXZiofTZv2iFR084jKEA==}
engines: {node: '>=v18'}
dependencies:
'@commitlint/top-level': 18.4.4
'@commitlint/types': 18.6.0
git-raw-commits: 2.0.11
minimist: 1.2.8
dev: false
/@commitlint/resolve-extends@18.6.0:
resolution: {integrity: sha512-k2Xp+Fxeggki2i90vGrbiLDMefPius3zGSTFFlRAPKce/SWLbZtI+uqE9Mne23mHO5lmcSV8z5m6ziiJwGpOcg==}
engines: {node: '>=v18'}
dependencies:
'@commitlint/config-validator': 18.6.0
'@commitlint/types': 18.6.0
import-fresh: 3.3.0
lodash.mergewith: 4.6.2
resolve-from: 5.0.0
resolve-global: 1.0.0
dev: false
/@commitlint/rules@18.6.0:
resolution: {integrity: sha512-pTalvCEvuCWrBWZA/YqO/3B3nZnY3Ncc+TmQsRajBdC1tkQIm5Iovdo4Ec7f2Dw1tVvpYMUUNAgcWqsY0WckWg==}
engines: {node: '>=v18'}
dependencies:
'@commitlint/ensure': 18.6.0
'@commitlint/message': 18.4.4
'@commitlint/to-lines': 18.4.4
'@commitlint/types': 18.6.0
execa: 5.1.1
dev: false
/@commitlint/to-lines@18.4.4:
resolution: {integrity: sha512-mwe2Roa59NCz/krniAdCygFabg7+fQCkIhXqBHw00XQ8Y7lw4poZLLxeGI3p3bLpcEOXdqIDrEGLwHmG5lBdwQ==}
engines: {node: '>=v18'}
dev: false
/@commitlint/top-level@18.4.4:
resolution: {integrity: sha512-PBwW1drgeavl9CadB7IPRUk6rkUP/O8jEkxjlC+ofuh3pw0bzJdAT+Kw7M1Yc9KtTb9xTaqUB8uvRtaybHa/tQ==}
engines: {node: '>=v18'}
dependencies:
find-up: 5.0.0
dev: false
/@commitlint/types@18.6.0:
resolution: {integrity: sha512-oavoKLML/eJa2rJeyYSbyGAYzTxQ6voG5oeX3OrxpfrkRWhJfm4ACnhoRf5tgiybx2MZ+EVFqC1Lw3W8/uwpZA==}
engines: {node: '>=v18'}
dependencies:
chalk: 4.1.2
dev: false
/@emotion/is-prop-valid@0.8.8:
resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==}
requiresBuild: true
dependencies:
'@emotion/memoize': 0.7.4
dev: false
optional: true
/@emotion/memoize@0.7.4:
resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==}
requiresBuild: true
dev: false
optional: true
/@eslint-community/eslint-utils@4.4.0(eslint@8.56.0):
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
dependencies:
eslint: 8.56.0
eslint-visitor-keys: 3.4.3
dev: false
/@eslint-community/regexpp@4.10.0:
resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
dev: false
/@eslint/eslintrc@2.1.4:
resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: 6.12.6
debug: 4.3.4
espree: 9.6.1
globals: 13.24.0
ignore: 5.3.0
import-fresh: 3.3.0
js-yaml: 4.1.0
minimatch: 3.1.2
strip-json-comments: 3.1.1
transitivePeerDependencies:
- supports-color
dev: false
/@eslint/js@8.56.0:
resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: false
/@floating-ui/core@1.6.0:
resolution: {integrity: sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==}
dependencies:
'@floating-ui/utils': 0.2.1
dev: false
/@floating-ui/dom@1.6.1:
resolution: {integrity: sha512-iA8qE43/H5iGozC3W0YSnVSW42Vh522yyM1gj+BqRwVsTNOyr231PsXDaV04yT39PsO0QL2QpbI/M0ZaLUQgRQ==}
dependencies:
'@floating-ui/core': 1.6.0
'@floating-ui/utils': 0.2.1
dev: false
/@floating-ui/react-dom@2.0.8(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208):
resolution: {integrity: sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
'@floating-ui/dom': 1.6.1
react: 0.0.0-experimental-5bcade5fc-20231208
react-dom: 0.0.0-experimental-5bcade5fc-20231208(react@0.0.0-experimental-5bcade5fc-20231208)
dev: false
/@floating-ui/utils@0.2.1:
resolution: {integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==}
dev: false
/@formatjs/ecma402-abstract@1.18.2:
resolution: {integrity: sha512-+QoPW4csYALsQIl8GbN14igZzDbuwzcpWrku9nyMXlaqAlwRBgl5V+p0vWMGFqHOw37czNXaP/lEk4wbLgcmtA==}
dependencies:
'@formatjs/intl-localematcher': 0.5.4
tslib: 2.6.2
dev: false
/@formatjs/fast-memoize@2.2.0:
resolution: {integrity: sha512-hnk/nY8FyrL5YxwP9e4r9dqeM6cAbo8PeU9UjyXojZMNvVad2Z06FAVHyR3Ecw6fza+0GH7vdJgiKIVXTMbSBA==}
dependencies:
tslib: 2.6.2
dev: false
/@formatjs/icu-messageformat-parser@2.7.6:
resolution: {integrity: sha512-etVau26po9+eewJKYoiBKP6743I1br0/Ie00Pb/S/PtmYfmjTcOn2YCh2yNkSZI12h6Rg+BOgQYborXk46BvkA==}
dependencies:
'@formatjs/ecma402-abstract': 1.18.2
'@formatjs/icu-skeleton-parser': 1.8.0
tslib: 2.6.2
dev: false
/@formatjs/icu-skeleton-parser@1.8.0:
resolution: {integrity: sha512-QWLAYvM0n8hv7Nq5BEs4LKIjevpVpbGLAJgOaYzg9wABEoX1j0JO1q2/jVkO6CVlq0dbsxZCngS5aXbysYueqA==}
dependencies:
'@formatjs/ecma402-abstract': 1.18.2
tslib: 2.6.2
dev: false
/@formatjs/intl-localematcher@0.5.4:
resolution: {integrity: sha512-zTwEpWOzZ2CiKcB93BLngUX59hQkuZjT2+SAQEscSm52peDW/getsawMcWF1rGRpMCX6D7nSJA3CzJ8gn13N/g==}
dependencies:
tslib: 2.6.2
dev: false
/@hookform/resolvers@3.3.4(react-hook-form@7.49.3):
resolution: {integrity: sha512-o5cgpGOuJYrd+iMKvkttOclgwRW86EsWJZZRC23prf0uU2i48Htq4PuT73AVb9ionFyZrwYEITuOFGF+BydEtQ==}
peerDependencies:
react-hook-form: ^7.0.0
dependencies:
react-hook-form: 7.49.3(react@0.0.0-experimental-5bcade5fc-20231208)
dev: false
/@humanwhocodes/config-array@0.11.14:
resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==}
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': 2.0.2
debug: 4.3.4
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
dev: false
/@humanwhocodes/module-importer@1.0.1:
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
dev: false
/@humanwhocodes/object-schema@2.0.2:
resolution: {integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==}
dev: false
/@internationalized/date@3.5.1:
resolution: {integrity: sha512-LUQIfwU9e+Fmutc/DpRTGXSdgYZLBegi4wygCWDSVmUdLTaMHsQyASDiJtREwanwKuQLq0hY76fCJ9J/9I2xOQ==}
dependencies:
'@swc/helpers': 0.5.3
dev: false
/@internationalized/message@3.1.1:
resolution: {integrity: sha512-ZgHxf5HAPIaR0th+w0RUD62yF6vxitjlprSxmLJ1tam7FOekqRSDELMg4Cr/DdszG5YLsp5BG3FgHgqquQZbqw==}
dependencies:
'@swc/helpers': 0.5.3
intl-messageformat: 10.5.11
dev: false
/@internationalized/number@3.5.0:
resolution: {integrity: sha512-ZY1BW8HT9WKYvaubbuqXbbDdHhOUMfE2zHHFJeTppid0S+pc8HtdIxFxaYMsGjCb4UsF+MEJ4n2TfU7iHnUK8w==}
dependencies:
'@swc/helpers': 0.5.3
dev: false
/@internationalized/string@3.2.0:
resolution: {integrity: sha512-Xx3Sy3f2c9ctT+vh8c7euEaEHQZltp0euZ3Hy4UfT3E13r6lxpUS3kgKyumEjboJZSnaZv7JhqWz3D75v+IxQg==}
dependencies:
'@swc/helpers': 0.5.3
dev: false
/@isaacs/cliui@8.0.2:
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
dependencies:
string-width: 5.1.2
string-width-cjs: /string-width@4.2.3
strip-ansi: 7.1.0
strip-ansi-cjs: /strip-ansi@6.0.1
wrap-ansi: 8.1.0
wrap-ansi-cjs: /wrap-ansi@7.0.0
dev: false
/@jridgewell/gen-mapping@0.3.3:
resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/set-array': 1.1.2
'@jridgewell/sourcemap-codec': 1.4.15
'@jridgewell/trace-mapping': 0.3.22
dev: false
/@jridgewell/resolve-uri@3.1.1:
resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
engines: {node: '>=6.0.0'}
dev: false
/@jridgewell/set-array@1.1.2:
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
engines: {node: '>=6.0.0'}
dev: false
/@jridgewell/sourcemap-codec@1.4.15:
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
dev: false
/@jridgewell/trace-mapping@0.3.22:
resolution: {integrity: sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==}
dependencies:
'@jridgewell/resolve-uri': 3.1.1
'@jridgewell/sourcemap-codec': 1.4.15
dev: false
/@next/env@14.0.5-canary.25:
resolution: {integrity: sha512-Eyc8hqzhoKi/UK/seC/tLxQVOZo1oifmEp1rmo9NKJN2bZNo/w+t6kKupEhihetEOQ1Oy4TG0voJmZzugTrahg==}
dev: false
/@next/eslint-plugin-next@14.1.0:
resolution: {integrity: sha512-x4FavbNEeXx/baD/zC/SdrvkjSby8nBn8KcCREqk6UuwvwoAPZmaV8TFCAuo/cpovBRTIY67mHhe86MQQm/68Q==}
dependencies:
glob: 10.3.10
dev: false
/@next/swc-darwin-arm64@14.0.5-canary.25:
resolution: {integrity: sha512-V/4zFfh5fgYcmMCxogFMSPcox60mBuqmt57/UM5iFJJ4MuVlRi+nA+0JYbEcGQ8BRdKzuDFLxntp5poMLfFXrQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
dev: false
optional: true
/@next/swc-darwin-x64@14.0.5-canary.25:
resolution: {integrity: sha512-TwtGbRC7GXiLMiWlWWS3R9Ws5Pi6pPX29Gr2hiwq8LanNKjGUNIUHvlU5YCEA0+fZpKQTvD2qt/0QD1EwJKdzQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
requiresBuild: true
dev: false
optional: true
/@next/swc-linux-arm64-gnu@14.0.5-canary.25:
resolution: {integrity: sha512-60xWpFFJJdpfB9kMZ4koxNduPzriYpAfnFolinWHRqMm5cUH6VVQvTxdaLJRihFsL0+ZAORU1hwupIsZ0/yoGQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: false
optional: true
/@next/swc-linux-arm64-musl@14.0.5-canary.25:
resolution: {integrity: sha512-i5V/VqHZykqCElmXJVv+m9yzmdey0jLuDS9sKtpS1RHY4bwQ/nlrcDzp4MkJHiyOpBSqoJAWz9VpUgAYcAsLPA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
requiresBuild: true
dev: false
optional: true
/@next/swc-linux-x64-gnu@14.0.5-canary.25:
resolution: {integrity: sha512-Ynk22mpQ3N9hcUYGm4hTBxUXB4XweE60etO16vS1HQVKl9akEnuPfkVPrh78O+pmYqlWBgkIUnSNFTe8lH24vw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: false
optional: true
/@next/swc-linux-x64-musl@14.0.5-canary.25:
resolution: {integrity: sha512-rqdeq2MvpnRDRdZcNvo3ILSLFyyWOlRvYQOwcbIQO81cEuoK80tknHLBmX0hNLmIJ18JuAnrzQOlFiAPGoEXAw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
requiresBuild: true
dev: false
optional: true
/@next/swc-win32-arm64-msvc@14.0.5-canary.25:
resolution: {integrity: sha512-lP1mR5MxcDejzDwfvMBussDD0xQHOib11VF7xpu+1GjyTJG+vJGSidM1Gncqu/lp+X4TfcOe8nh3zrMbS/9T+g==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
requiresBuild: true
dev: false
optional: true
/@next/swc-win32-ia32-msvc@14.0.5-canary.25:
resolution: {integrity: sha512-8ewbfzQmsPrgcpwxk15G7q5E8PeuGQ5X2hEUSoGArrU+GVMpAvT/ZmmLemyNDtwniQZLg0Pliht6gy2KY2QyqA==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
requiresBuild: true
dev: false
optional: true
/@next/swc-win32-x64-msvc@14.0.5-canary.25:
resolution: {integrity: sha512-6fqkAHnKoJZttwm1J9ugZ+z44wrvFk2DUaiexd/a2Y4eItZGPLlwWgdYh5fF7WQtmYrzkDxV3vHUvzUuGshIZg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
requiresBuild: true
dev: false
optional: true
/@nextui-org/accordion@2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20):
resolution: {integrity: sha512-WzD7sscL+4K0TFyUutTn1AhU0wcS68TqNCTNv7KgON6ODdwieydilMxAyXvwo3RgXeWG+8BbdxJC/6W+/iLBTg==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20)
'@nextui-org/divider': 2.0.25(@nextui-org/theme@2.1.17)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20)
'@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20)
'@nextui-org/react-utils': 2.0.10(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/shared-icons': 2.0.6(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/shared-utils': 2.0.4(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.2)
'@nextui-org/use-aria-accordion': 2.0.2(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/use-aria-press': 2.0.1(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/button': 3.9.1(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/focus': 3.16.0(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/interactions': 3.20.1(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/utils': 3.23.0(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-stately/tree': 3.7.5(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-types/accordion': 3.0.0-alpha.17(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-types/shared': 3.22.0(react@0.0.0-experimental-5bcade5fc-20231208)
framer-motion: 10.18.0(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
react: 0.0.0-experimental-5bcade5fc-20231208
react-dom: 0.0.0-experimental-5bcade5fc-20231208(react@0.0.0-experimental-5bcade5fc-20231208)
transitivePeerDependencies:
- tailwind-variants
dev: false
/@nextui-org/aria-utils@2.0.15(@nextui-org/theme@2.1.17)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20):
resolution: {integrity: sha512-4M4jeJ/ghGaia9064yS+mEZ3sFPH80onmjNGWJZkkZDmUV4R88lNkqe/XYBK1tbxfl4Kxa8jc/ALsZkUkkvR5w==}
peerDependencies:
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-rsc-utils': 2.0.10
'@nextui-org/shared-utils': 2.0.4(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20)
'@react-aria/utils': 3.23.0(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-stately/collections': 3.10.4(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-types/overlays': 3.8.4(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-types/shared': 3.22.0(react@0.0.0-experimental-5bcade5fc-20231208)
react: 0.0.0-experimental-5bcade5fc-20231208
react-dom: 0.0.0-experimental-5bcade5fc-20231208(react@0.0.0-experimental-5bcade5fc-20231208)
transitivePeerDependencies:
- '@nextui-org/theme'
- tailwind-variants
dev: false
/@nextui-org/autocomplete@2.0.9(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.12)(framer-motion@10.18.0)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20):
resolution: {integrity: sha512-ViPXrZnP35k7LF+TBA4w8nqu0OEj9p1z9Rt7rwrACmY2VmDGY6h6a6nDCMjhuTVXptftRvzxfIPsIyzBYqxb0g==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20)
'@nextui-org/button': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20)
'@nextui-org/input': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.12)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/listbox': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20)
'@nextui-org/popover': 2.1.14(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.12)(framer-motion@10.18.0)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20)
'@nextui-org/react-utils': 2.0.10(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/scroll-shadow': 2.1.12(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/shared-icons': 2.0.6(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/shared-utils': 2.0.4(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/spinner': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.2)
'@nextui-org/use-aria-button': 2.0.6(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/combobox': 3.8.2(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/focus': 3.16.0(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/i18n': 3.10.0(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/interactions': 3.20.1(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/utils': 3.23.0(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/visually-hidden': 3.8.8(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-stately/combobox': 3.8.1(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-types/combobox': 3.10.0(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-types/shared': 3.22.0(react@0.0.0-experimental-5bcade5fc-20231208)
framer-motion: 10.18.0(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
react: 0.0.0-experimental-5bcade5fc-20231208
react-dom: 0.0.0-experimental-5bcade5fc-20231208(react@0.0.0-experimental-5bcade5fc-20231208)
transitivePeerDependencies:
- '@types/react'
- tailwind-variants
dev: false
/@nextui-org/avatar@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208):
resolution: {integrity: sha512-3QUn8v61iNvAYogUbEDVnhDjBK6WBxxFYLp95a0H52zN0p2LHXe+UNwdGZYFo5QNWx6CHGH3vh2AHlLLy3WFSQ==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.10(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/shared-utils': 2.0.4(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.2)
'@nextui-org/use-image': 2.0.4(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/focus': 3.16.0(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/interactions': 3.20.1(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/utils': 3.23.0(react@0.0.0-experimental-5bcade5fc-20231208)
react: 0.0.0-experimental-5bcade5fc-20231208
react-dom: 0.0.0-experimental-5bcade5fc-20231208(react@0.0.0-experimental-5bcade5fc-20231208)
dev: false
/@nextui-org/badge@2.0.24(@nextui-org/theme@2.1.17)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20):
resolution: {integrity: sha512-FA3XgqEbyKWepMXqMZg7D+1IRf7flrb2LzFvTbkmsbvWQ4yYz1LqJXZ/HDmoCydvh2pOnc+1zPK3BpB7vGrrwA==}
peerDependencies:
'@nextui-org/theme': '>=2.1.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.10(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/shared-utils': 2.0.4(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.17)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.2)
react: 0.0.0-experimental-5bcade5fc-20231208
react-dom: 0.0.0-experimental-5bcade5fc-20231208(react@0.0.0-experimental-5bcade5fc-20231208)
transitivePeerDependencies:
- tailwind-variants
dev: false
/@nextui-org/breadcrumbs@2.0.4(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208):
resolution: {integrity: sha512-SAE0+QRgA7vxUHPL65TKz3MRj7u2mbSwk8Eifkwo6hPcF0d34zv2QDupTGyphIjoGCSrQHFIq/CPAkXyaOXZxw==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.10(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/shared-icons': 2.0.6(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/shared-utils': 2.0.4(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.2)
'@react-aria/breadcrumbs': 3.5.9(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/focus': 3.16.0(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/utils': 3.23.0(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-types/breadcrumbs': 3.7.2(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-types/shared': 3.22.0(react@0.0.0-experimental-5bcade5fc-20231208)
react: 0.0.0-experimental-5bcade5fc-20231208
react-dom: 0.0.0-experimental-5bcade5fc-20231208(react@0.0.0-experimental-5bcade5fc-20231208)
dev: false
/@nextui-org/button@2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20):
resolution: {integrity: sha512-mDrSII1oneY4omwDdxUhl5oLa3AhoWCchwV/jt7egunnAFie32HbTqfFYGpLGiJw3JMMh3WDUthrI1islVTRKA==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.10(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/shared-utils': 2.0.4(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/spinner': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.2)
'@nextui-org/use-aria-button': 2.0.6(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/button': 3.9.1(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/focus': 3.16.0(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/interactions': 3.20.1(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/utils': 3.23.0(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-types/button': 3.9.1(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-types/shared': 3.22.0(react@0.0.0-experimental-5bcade5fc-20231208)
framer-motion: 10.18.0(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
react: 0.0.0-experimental-5bcade5fc-20231208
react-dom: 0.0.0-experimental-5bcade5fc-20231208(react@0.0.0-experimental-5bcade5fc-20231208)
transitivePeerDependencies:
- tailwind-variants
dev: false
/@nextui-org/card@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208):
resolution: {integrity: sha512-16uAS0i6+EO+u8aqtmaCXatjovsyuTq51JwCLBlB67OldfgXoYcYl3GaE2VoZdEwxVu1G/qypDfXv29k46nZuA==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
framer-motion: '>=4.0.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.10(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/shared-utils': 2.0.4(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.2)
'@nextui-org/use-aria-button': 2.0.6(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/button': 3.9.1(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/focus': 3.16.0(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/interactions': 3.20.1(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/utils': 3.23.0(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-types/shared': 3.22.0(react@0.0.0-experimental-5bcade5fc-20231208)
framer-motion: 10.18.0(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)
react: 0.0.0-experimental-5bcade5fc-20231208
react-dom: 0.0.0-experimental-5bcade5fc-20231208(react@0.0.0-experimental-5bcade5fc-20231208)
dev: false
/@nextui-org/checkbox@2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208):
resolution: {integrity: sha512-X6WkwPbZlDvioEcXF6HhKH21wD6OK+3+FSroKkzMPQLJrj2KYUIYGbiuw9rT9aCtdjbT+6HUCv+FA8/cBQr7cA==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.10(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/shared-utils': 2.0.4(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.2)
'@nextui-org/use-aria-press': 2.0.1(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/checkbox': 3.13.0(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/focus': 3.16.0(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/interactions': 3.20.1(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/utils': 3.23.0(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/visually-hidden': 3.8.8(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-stately/checkbox': 3.6.1(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-stately/toggle': 3.7.0(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-types/checkbox': 3.6.0(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-types/shared': 3.22.0(react@0.0.0-experimental-5bcade5fc-20231208)
react: 0.0.0-experimental-5bcade5fc-20231208
react-dom: 0.0.0-experimental-5bcade5fc-20231208(react@0.0.0-experimental-5bcade5fc-20231208)
dev: false
/@nextui-org/chip@2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208):
resolution: {integrity: sha512-hfVSaq5JWzGn97s3K2Ac/xOopHWelaUW3eus0O0wns/6+NCI0QUjgwNt2bAQSNvnE6vjvYLJTqGG/jFHyFJjOg==}
peerDependencies:
'@nextui-org/system': '>=2.0.0'
'@nextui-org/theme': '>=2.1.0'
react: '>=18'
react-dom: '>=18'
dependencies:
'@nextui-org/react-utils': 2.0.10(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/shared-icons': 2.0.6(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/shared-utils': 2.0.4(react@0.0.0-experimental-5bcade5fc-20231208)
'@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@0.0.0-experimental-5bcade5fc-20231208)(react@0.0.0-experimental-5bcade5fc-20231208)(tailwind-variants@0.1.20)
'@nextui-org/theme': 2.1.17(tailwindcss@3.3.2)
'@nextui-org/use-aria-press': 2.0.1(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/focus': 3.16.0(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/interactions': 3.20.1(react@0.0.0-experimental-5bcade5fc-20231208)
'@react-aria/utils': 3.23.0(react@0.0.0-experimental-5bcade5fc-20231208)