-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
7476 lines (7476 loc) · 283 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": "technovit23",
"version": "0.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "technovit23",
"version": "0.1.0",
"dependencies": {
"@headlessui/react": "^1.7.17",
"@nextui-org/react": "^2.0.22",
"@react-three/drei": "^9.80.2",
"@react-three/fiber": "^8.13.6",
"@studio-freight/lenis": "^1.0.19",
"@types/node": "20.4.6",
"@types/react": "18.2.18",
"@types/react-dom": "18.2.7",
"@types/react-modal": "^3.16.0",
"autoprefixer": "10.4.14",
"eslint": "8.46.0",
"eslint-config-next": "13.4.12",
"framer-motion": "^10.16.0",
"framer-motion-carousel": "^2.0.3",
"gl-matrix": "^3.4.3",
"gsap": "^3.12.2",
"lodash.debounce": "^4.0.8",
"maath": "^0.7.0",
"next": "13.4.12",
"postcss": "8.4.27",
"react": "18.2.0",
"react-datepicker": "^4.16.0",
"react-dom": "18.2.0",
"react-icons": "^4.10.1",
"react-intersection-observer": "^9.5.2",
"react-modal": "^3.16.1",
"react-tilt": "^1.0.2",
"sass": "^1.65.1",
"swiper": "^10.1.0",
"tailwindcss": "3.3.3",
"three": "^0.155.0",
"typescript": "5.1.6"
},
"devDependencies": {
"@types/lodash.debounce": "^4.0.7",
"@types/react-datepicker": "^4.15.0"
}
},
"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==",
"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/runtime": {
"version": "7.22.6",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.6.tgz",
"integrity": "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==",
"dependencies": {
"regenerator-runtime": "^0.13.11"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@chevrotain/cst-dts-gen": {
"version": "10.5.0",
"resolved": "https://registry.npmjs.org/@chevrotain/cst-dts-gen/-/cst-dts-gen-10.5.0.tgz",
"integrity": "sha512-lhmC/FyqQ2o7pGK4Om+hzuDrm9rhFYIJ/AXoQBeongmn870Xeb0L6oGEiuR8nohFNL5sMaQEJWCxr1oIVIVXrw==",
"dependencies": {
"@chevrotain/gast": "10.5.0",
"@chevrotain/types": "10.5.0",
"lodash": "4.17.21"
}
},
"node_modules/@chevrotain/gast": {
"version": "10.5.0",
"resolved": "https://registry.npmjs.org/@chevrotain/gast/-/gast-10.5.0.tgz",
"integrity": "sha512-pXdMJ9XeDAbgOWKuD1Fldz4ieCs6+nLNmyVhe2gZVqoO7v8HXuHYs5OV2EzUtbuai37TlOAQHrTDvxMnvMJz3A==",
"dependencies": {
"@chevrotain/types": "10.5.0",
"lodash": "4.17.21"
}
},
"node_modules/@chevrotain/types": {
"version": "10.5.0",
"resolved": "https://registry.npmjs.org/@chevrotain/types/-/types-10.5.0.tgz",
"integrity": "sha512-f1MAia0x/pAVPWH/T73BJVyO2XU5tI4/iE7cnxb7tqdNTNhQI3Uq3XkqcoteTmD4t1aM0LbHCJOhgIDn07kl2A=="
},
"node_modules/@chevrotain/utils": {
"version": "10.5.0",
"resolved": "https://registry.npmjs.org/@chevrotain/utils/-/utils-10.5.0.tgz",
"integrity": "sha512-hBzuU5+JjB2cqNZyszkDHZgOSrUUT8V3dhgRl8Q9Gp6dAj/H5+KILGjbhDpc3Iy9qmqlm/akuOI2ut9VUtzJxQ=="
},
"node_modules/@emotion/is-prop-valid": {
"version": "0.8.8",
"resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz",
"integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==",
"optional": true,
"dependencies": {
"@emotion/memoize": "0.7.4"
}
},
"node_modules/@emotion/memoize": {
"version": "0.7.4",
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz",
"integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==",
"optional": true
},
"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==",
"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.6.2",
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.6.2.tgz",
"integrity": "sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==",
"engines": {
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
}
},
"node_modules/@eslint/eslintrc": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.1.tgz",
"integrity": "sha512-9t7ZA7NGGK8ckelF0PQCfcxIUzs1Md5rrO6U/c+FIQNanea5UZC0wqKXH4vHBccmu4ZJgZ2idtPeW7+Q2npOEA==",
"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.46.0",
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.46.0.tgz",
"integrity": "sha512-a8TLtmPi8xzPkCbp/OGFUo5yhRkHM2Ko9kOWP4znJr0WAhWyThaw3PnwX4vOTWOAMsV2uRt32PPDcEz63esSaA==",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@formatjs/ecma402-abstract": {
"version": "1.17.0",
"resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-1.17.0.tgz",
"integrity": "sha512-6ueQTeJZtwKjmh23bdkq/DMqH4l4bmfvtQH98blOSbiXv/OUiyijSW6jU22IT8BNM1ujCaEvJfTtyCYVH38EMQ==",
"dependencies": {
"@formatjs/intl-localematcher": "0.4.0",
"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.6.0",
"resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.6.0.tgz",
"integrity": "sha512-yT6at0qc0DANw9qM/TU8RZaCtfDXtj4pZM/IC2WnVU80yAcliS3KVDiuUt4jSQAeFL9JS5bc2hARnFmjPdA6qw==",
"dependencies": {
"@formatjs/ecma402-abstract": "1.17.0",
"@formatjs/icu-skeleton-parser": "1.6.0",
"tslib": "^2.4.0"
}
},
"node_modules/@formatjs/icu-skeleton-parser": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.6.0.tgz",
"integrity": "sha512-eMmxNpoX/J1IPUjPGSZwo0Wh+7CEvdEMddP2Jxg1gQJXfGfht/FdW2D5XDFj3VMbOTUQlDIdZJY7uC6O6gjPoA==",
"dependencies": {
"@formatjs/ecma402-abstract": "1.17.0",
"tslib": "^2.4.0"
}
},
"node_modules/@formatjs/intl-localematcher": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.4.0.tgz",
"integrity": "sha512-bRTd+rKomvfdS4QDlVJ6TA/Jx1F2h/TBVO5LjvhQ7QPPHp19oPNMIum7W2CMEReq/zPxpmCeB31F9+5gl/qtvw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@headlessui/react": {
"version": "1.7.17",
"resolved": "https://registry.npmjs.org/@headlessui/react/-/react-1.7.17.tgz",
"integrity": "sha512-4am+tzvkqDSSgiwrsEpGWqgGo9dz8qU5M3znCkC4PgkpY4HcCZzEDEvozltGGGHIKl9jbXbZPSH5TWn4sWJdow==",
"dependencies": {
"client-only": "^0.0.1"
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
"react": "^16 || ^17 || ^18",
"react-dom": "^16 || ^17 || ^18"
}
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.11.10",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz",
"integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==",
"dependencies": {
"@humanwhocodes/object-schema": "^1.2.1",
"debug": "^4.1.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==",
"engines": {
"node": ">=12.22"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
}
},
"node_modules/@humanwhocodes/object-schema": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
"integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="
},
"node_modules/@internationalized/date": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/@internationalized/date/-/date-3.4.0.tgz",
"integrity": "sha512-QUDSGCsvrEVITVf+kv9VSAraAmCgjQmU5CiXtesUBBhBe374NmnEIIaOFBZ72t29dfGMBP0zF+v6toVnbcc6jg==",
"dependencies": {
"@swc/helpers": "^0.5.0"
}
},
"node_modules/@internationalized/message": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/@internationalized/message/-/message-3.1.1.tgz",
"integrity": "sha512-ZgHxf5HAPIaR0th+w0RUD62yF6vxitjlprSxmLJ1tam7FOekqRSDELMg4Cr/DdszG5YLsp5BG3FgHgqquQZbqw==",
"dependencies": {
"@swc/helpers": "^0.5.0",
"intl-messageformat": "^10.1.0"
}
},
"node_modules/@internationalized/number": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@internationalized/number/-/number-3.2.1.tgz",
"integrity": "sha512-hK30sfBlmB1aIe3/OwAPg9Ey0DjjXvHEiGVhNaOiBJl31G0B6wMaX8BN3ibzdlpyRNE9p7X+3EBONmxtJO9Yfg==",
"dependencies": {
"@swc/helpers": "^0.5.0"
}
},
"node_modules/@internationalized/string": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/@internationalized/string/-/string-3.1.1.tgz",
"integrity": "sha512-fvSr6YRoVPgONiVIUhgCmIAlifMVCeej/snPZVzbzRPxGpHl3o1GRe+d/qh92D8KhgOciruDUH8I5mjdfdjzfA==",
"dependencies": {
"@swc/helpers": "^0.5.0"
}
},
"node_modules/@jridgewell/gen-mapping": {
"version": "0.3.3",
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz",
"integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==",
"dependencies": {
"@jridgewell/set-array": "^1.0.1",
"@jridgewell/sourcemap-codec": "^1.4.10",
"@jridgewell/trace-mapping": "^0.3.9"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/resolve-uri": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz",
"integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/set-array": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz",
"integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/sourcemap-codec": {
"version": "1.4.15",
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
"integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="
},
"node_modules/@jridgewell/trace-mapping": {
"version": "0.3.18",
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz",
"integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==",
"dependencies": {
"@jridgewell/resolve-uri": "3.1.0",
"@jridgewell/sourcemap-codec": "1.4.14"
}
},
"node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": {
"version": "1.4.14",
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz",
"integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
},
"node_modules/@motionone/animation": {
"version": "10.15.1",
"resolved": "https://registry.npmjs.org/@motionone/animation/-/animation-10.15.1.tgz",
"integrity": "sha512-mZcJxLjHor+bhcPuIFErMDNyrdb2vJur8lSfMCsuCB4UyV8ILZLvK+t+pg56erv8ud9xQGK/1OGPt10agPrCyQ==",
"dependencies": {
"@motionone/easing": "^10.15.1",
"@motionone/types": "^10.15.1",
"@motionone/utils": "^10.15.1",
"tslib": "^2.3.1"
}
},
"node_modules/@motionone/dom": {
"version": "10.12.0",
"resolved": "https://registry.npmjs.org/@motionone/dom/-/dom-10.12.0.tgz",
"integrity": "sha512-UdPTtLMAktHiqV0atOczNYyDd/d8Cf5fFsd1tua03PqTwwCe/6lwhLSQ8a7TbnQ5SN0gm44N1slBfj+ORIhrqw==",
"dependencies": {
"@motionone/animation": "^10.12.0",
"@motionone/generators": "^10.12.0",
"@motionone/types": "^10.12.0",
"@motionone/utils": "^10.12.0",
"hey-listen": "^1.0.8",
"tslib": "^2.3.1"
}
},
"node_modules/@motionone/easing": {
"version": "10.15.1",
"resolved": "https://registry.npmjs.org/@motionone/easing/-/easing-10.15.1.tgz",
"integrity": "sha512-6hIHBSV+ZVehf9dcKZLT7p5PEKHGhDwky2k8RKkmOvUoYP3S+dXsKupyZpqx5apjd9f+php4vXk4LuS+ADsrWw==",
"dependencies": {
"@motionone/utils": "^10.15.1",
"tslib": "^2.3.1"
}
},
"node_modules/@motionone/generators": {
"version": "10.15.1",
"resolved": "https://registry.npmjs.org/@motionone/generators/-/generators-10.15.1.tgz",
"integrity": "sha512-67HLsvHJbw6cIbLA/o+gsm7h+6D4Sn7AUrB/GPxvujse1cGZ38F5H7DzoH7PhX+sjvtDnt2IhFYF2Zp1QTMKWQ==",
"dependencies": {
"@motionone/types": "^10.15.1",
"@motionone/utils": "^10.15.1",
"tslib": "^2.3.1"
}
},
"node_modules/@motionone/types": {
"version": "10.15.1",
"resolved": "https://registry.npmjs.org/@motionone/types/-/types-10.15.1.tgz",
"integrity": "sha512-iIUd/EgUsRZGrvW0jqdst8st7zKTzS9EsKkP+6c6n4MPZoQHwiHuVtTQLD6Kp0bsBLhNzKIBlHXponn/SDT4hA=="
},
"node_modules/@motionone/utils": {
"version": "10.15.1",
"resolved": "https://registry.npmjs.org/@motionone/utils/-/utils-10.15.1.tgz",
"integrity": "sha512-p0YncgU+iklvYr/Dq4NobTRdAPv9PveRDUXabPEeOjBLSO/1FNB2phNTZxOxpi1/GZwYpAoECEa0Wam+nsmhSw==",
"dependencies": {
"@motionone/types": "^10.15.1",
"hey-listen": "^1.0.8",
"tslib": "^2.3.1"
}
},
"node_modules/@next/env": {
"version": "13.4.12",
"resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.12.tgz",
"integrity": "sha512-RmHanbV21saP/6OEPBJ7yJMuys68cIf8OBBWd7+uj40LdpmswVAwe1uzeuFyUsd6SfeITWT3XnQfn6wULeKwDQ=="
},
"node_modules/@next/eslint-plugin-next": {
"version": "13.4.12",
"resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.12.tgz",
"integrity": "sha512-6rhK9CdxEgj/j1qvXIyLTWEaeFv7zOK8yJMulz3Owel0uek0U9MJCGzmKgYxM3aAUBo3gKeywCZKyQnJKto60A==",
"dependencies": {
"glob": "7.1.7"
}
},
"node_modules/@next/swc-darwin-arm64": {
"version": "13.4.12",
"resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.12.tgz",
"integrity": "sha512-deUrbCXTMZ6ZhbOoloqecnUeNpUOupi8SE2tx4jPfNS9uyUR9zK4iXBvH65opVcA/9F5I/p8vDXSYbUlbmBjZg==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-darwin-x64": {
"version": "13.4.12",
"resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.12.tgz",
"integrity": "sha512-WRvH7RxgRHlC1yb5oG0ZLx8F7uci9AivM5/HGGv9ZyG2Als8Ij64GC3d+mQ5sJhWjusyU6T6V1WKTUoTmOB0zQ==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-arm64-gnu": {
"version": "13.4.12",
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.12.tgz",
"integrity": "sha512-YEKracAWuxp54tKiAvvq73PUs9lok57cc8meYRibTWe/VdPB2vLgkTVWFcw31YDuRXdEhdX0fWS6Q+ESBhnEig==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-arm64-musl": {
"version": "13.4.12",
"resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.12.tgz",
"integrity": "sha512-LhJR7/RAjdHJ2Isl2pgc/JaoxNk0KtBgkVpiDJPVExVWA1c6gzY57+3zWuxuyWzTG+fhLZo2Y80pLXgIJv7g3g==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-x64-gnu": {
"version": "13.4.12",
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.12.tgz",
"integrity": "sha512-1DWLL/B9nBNiQRng+1aqs3OaZcxC16Nf+mOnpcrZZSdyKHek3WQh6j/fkbukObgNGwmCoVevLUa/p3UFTTqgqg==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-linux-x64-musl": {
"version": "13.4.12",
"resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.12.tgz",
"integrity": "sha512-kEAJmgYFhp0VL+eRWmUkVxLVunn7oL9Mdue/FS8yzRBVj7Z0AnIrHpTIeIUl1bbdQq1VaoOztnKicAjfkLTRCQ==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"linux"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-win32-arm64-msvc": {
"version": "13.4.12",
"resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.12.tgz",
"integrity": "sha512-GMLuL/loR6yIIRTnPRY6UGbLL9MBdw2anxkOnANxvLvsml4F0HNIgvnU3Ej4BjbqMTNjD4hcPFdlEow4XHPdZA==",
"cpu": [
"arm64"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-win32-ia32-msvc": {
"version": "13.4.12",
"resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.12.tgz",
"integrity": "sha512-PhgNqN2Vnkm7XaMdRmmX0ZSwZXQAtamBVSa9A/V1dfKQCV1rjIZeiy/dbBnVYGdj63ANfsOR/30XpxP71W0eww==",
"cpu": [
"ia32"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@next/swc-win32-x64-msvc": {
"version": "13.4.12",
"resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.12.tgz",
"integrity": "sha512-Z+56e/Ljt0bUs+T+jPjhFyxYBcdY2RIq9ELFU+qAMQMteHo7ymbV7CKmlcX59RI9C4YzN8PgMgLyAoi916b5HA==",
"cpu": [
"x64"
],
"optional": true,
"os": [
"win32"
],
"engines": {
"node": ">= 10"
}
},
"node_modules/@nextui-org/accordion": {
"version": "2.0.12",
"resolved": "https://registry.npmjs.org/@nextui-org/accordion/-/accordion-2.0.12.tgz",
"integrity": "sha512-pD0E4Y/b/cJKGmk0iXjJ72UaMEou3hCbShDMa9KBx/iqei61e4WYJ4VcrzzmuH7rN5uTApCGa2bciYnWcGCa4A==",
"dependencies": {
"@nextui-org/aria-utils": "2.0.5",
"@nextui-org/divider": "2.0.10",
"@nextui-org/framer-transitions": "2.0.5",
"@nextui-org/react-utils": "2.0.6",
"@nextui-org/shared-icons": "2.0.2",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system": "2.0.5",
"@nextui-org/theme": "2.0.5",
"@nextui-org/use-aria-accordion-item": "2.0.3",
"@react-aria/accordion": "3.0.0-alpha.20",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/utils": "^3.19.0",
"@react-stately/tree": "^3.7.1"
},
"peerDependencies": {
"framer-motion": ">=4.0.0",
"react": ">=18"
}
},
"node_modules/@nextui-org/aria-utils": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@nextui-org/aria-utils/-/aria-utils-2.0.5.tgz",
"integrity": "sha512-pbfSGjQeGQoWMVHE9iCOPq2MSLPa2AIZwazdBO1QKyzfXGRCoJ6FM1zX+EvBrax/8+6DtZb9bZ6UzICr5ZLvVw==",
"dependencies": {
"@nextui-org/system": "2.0.5",
"@react-aria/utils": "^3.19.0",
"@react-stately/collections": "^3.10.0",
"@react-types/overlays": "^3.8.1",
"@react-types/shared": "^3.19.0"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/avatar": {
"version": "2.0.11",
"resolved": "https://registry.npmjs.org/@nextui-org/avatar/-/avatar-2.0.11.tgz",
"integrity": "sha512-AAbZrTyyiLbJJZRs94HRilg7J/YF42NBtPQf+GfGvgtjc6pFFrLwlKZrRKBqChx+nzvrkDdmiCFBp6t+MBRIvg==",
"dependencies": {
"@nextui-org/react-utils": "2.0.6",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system": "2.0.5",
"@nextui-org/theme": "2.0.5",
"@nextui-org/use-image": "2.0.2",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/utils": "^3.19.0"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/badge": {
"version": "2.0.9",
"resolved": "https://registry.npmjs.org/@nextui-org/badge/-/badge-2.0.9.tgz",
"integrity": "sha512-cKmFJTOCGa2jbRSHecfveO4By0AlsSiosP+FBK2dm9SxjCbyyONLBUHNwEmCn7US/TdBnKJYW79rpkkplptbSA==",
"dependencies": {
"@nextui-org/react-utils": "2.0.6",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system-rsc": "2.0.3",
"@nextui-org/theme": "2.0.5"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/button": {
"version": "2.0.11",
"resolved": "https://registry.npmjs.org/@nextui-org/button/-/button-2.0.11.tgz",
"integrity": "sha512-cIxnJ0T7zK24SEBenfpef2ln+Bbfg0m45scy1GdaPON8lFX7zr8hiHjaP4g/1aTqxujNOnGhanRS/Zu4m7NhOA==",
"dependencies": {
"@nextui-org/react-utils": "2.0.6",
"@nextui-org/ripple": "2.0.11",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/spinner": "2.0.9",
"@nextui-org/system": "2.0.5",
"@nextui-org/theme": "2.0.5",
"@nextui-org/use-aria-button": "2.0.3",
"@react-aria/button": "^3.8.1",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/utils": "^3.19.0",
"@react-types/button": "^3.7.4",
"@react-types/shared": "^3.19.0"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/card": {
"version": "2.0.11",
"resolved": "https://registry.npmjs.org/@nextui-org/card/-/card-2.0.11.tgz",
"integrity": "sha512-V/4cCuRfteMnCA7bBYUw7cQKZPNivSWpQgIHwCPbNVH1BkEcVdoq3IIa4FlFTHnWZGvjq6CTKBnFMVHOViO6cg==",
"dependencies": {
"@nextui-org/react-utils": "2.0.6",
"@nextui-org/ripple": "2.0.11",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system": "2.0.5",
"@nextui-org/theme": "2.0.5",
"@nextui-org/use-aria-button": "2.0.3",
"@react-aria/button": "^3.8.1",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/utils": "^3.19.0",
"@react-types/shared": "^3.19.0"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/checkbox": {
"version": "2.0.12",
"resolved": "https://registry.npmjs.org/@nextui-org/checkbox/-/checkbox-2.0.12.tgz",
"integrity": "sha512-hjtAxKvTEEnTGzGQ0SEgL0YEBemJ1b7iRkV1USrHM6g36PcN9XlSD4yVJcTU6gI0DgABHw027LWpkWbj0yfq/g==",
"dependencies": {
"@nextui-org/react-utils": "2.0.6",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system": "2.0.5",
"@nextui-org/theme": "2.0.5",
"@react-aria/checkbox": "^3.10.0",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/utils": "^3.19.0",
"@react-aria/visually-hidden": "^3.8.3",
"@react-stately/checkbox": "^3.4.4",
"@react-stately/toggle": "^3.6.1",
"@react-types/checkbox": "^3.5.0",
"@react-types/shared": "^3.19.0"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/chip": {
"version": "2.0.11",
"resolved": "https://registry.npmjs.org/@nextui-org/chip/-/chip-2.0.11.tgz",
"integrity": "sha512-jD6FcKS9k8b7cFA3PoNmSLdeqXqHQz1qFJ63LTKhbwJ5jV/DWzwIbfPFKN8uEmHGdQmbGSp45qcyCQj6jAcKRQ==",
"dependencies": {
"@nextui-org/react-utils": "2.0.6",
"@nextui-org/shared-icons": "2.0.2",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system": "2.0.5",
"@nextui-org/theme": "2.0.5",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/utils": "^3.19.0",
"@react-types/checkbox": "^3.5.0"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/code": {
"version": "2.0.9",
"resolved": "https://registry.npmjs.org/@nextui-org/code/-/code-2.0.9.tgz",
"integrity": "sha512-AO25ueB9hEpwdoL0njoSRKBxmu/5JED+HzV6SH/HhCKtJN0kMk6WpIHTNp2Rl69paa2H5wlt3dnwNQRXMs8Lqg==",
"dependencies": {
"@nextui-org/react-utils": "2.0.6",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system-rsc": "2.0.3",
"@nextui-org/theme": "2.0.5"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/divider": {
"version": "2.0.10",
"resolved": "https://registry.npmjs.org/@nextui-org/divider/-/divider-2.0.10.tgz",
"integrity": "sha512-5IuKtkDRX5jAVuxWyIP6BvuJuzUuyOL5V50siWqPgEqtt0O+iuDhSFuioDDWT4gv10CxvKfApm6Dx3+uFU99ZA==",
"dependencies": {
"@nextui-org/react-rsc-utils": "2.0.6",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system-rsc": "2.0.3",
"@nextui-org/theme": "2.0.5",
"@react-types/shared": "^3.19.0"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/dropdown": {
"version": "2.0.13",
"resolved": "https://registry.npmjs.org/@nextui-org/dropdown/-/dropdown-2.0.13.tgz",
"integrity": "sha512-WzBX0BW/kSV5phfFlPJR0Ia2kERi0jgJvN5+vAol9iSNlBdbYkJnKJJWNeb1+Zys5G5M+697XQvwQKtWkFA7yQ==",
"dependencies": {
"@nextui-org/aria-utils": "2.0.5",
"@nextui-org/divider": "2.0.10",
"@nextui-org/popover": "2.0.12",
"@nextui-org/react-utils": "2.0.6",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system": "2.0.5",
"@nextui-org/theme": "2.0.5",
"@nextui-org/use-is-mobile": "2.0.3",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/menu": "^3.10.1",
"@react-aria/utils": "^3.19.0",
"@react-stately/menu": "^3.5.4",
"@react-stately/tree": "^3.7.1",
"@react-types/menu": "^3.9.3",
"@react-types/shared": "^3.19.0"
},
"peerDependencies": {
"framer-motion": ">=4.0.0",
"react": ">=18"
}
},
"node_modules/@nextui-org/framer-transitions": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@nextui-org/framer-transitions/-/framer-transitions-2.0.5.tgz",
"integrity": "sha512-lf4u6cQZyCgxwX2HLYqos3czbt3174W6cyptxDSHW1VxZYlRhm4II31awR9ZGxaU0d4I2v5PJxNqj70oSNz2rg==",
"dependencies": {
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system": "2.0.5"
},
"peerDependencies": {
"framer-motion": ">=4.0.0",
"react": ">=18"
}
},
"node_modules/@nextui-org/image": {
"version": "2.0.11",
"resolved": "https://registry.npmjs.org/@nextui-org/image/-/image-2.0.11.tgz",
"integrity": "sha512-G8pRvcfOWPKdnLx3nqhDFT9N0VS2TrBZA97m9pFkmiD/cqGDc3mVv/s/sS/yg/qX1EFY9dNmP9hj+bQdZKvkHg==",
"dependencies": {
"@nextui-org/react-utils": "2.0.6",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system": "2.0.5",
"@nextui-org/theme": "2.0.5",
"@nextui-org/use-image": "2.0.2"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/input": {
"version": "2.0.14",
"resolved": "https://registry.npmjs.org/@nextui-org/input/-/input-2.0.14.tgz",
"integrity": "sha512-r6ND9JbhOlynbcEOpa0ZH1qYWEvp20+MtTJ8msofIO6LV2ibCoqPMlgepk4ced7UPlashW4lzZa7r38Agb4lEQ==",
"dependencies": {
"@nextui-org/react-utils": "2.0.6",
"@nextui-org/shared-icons": "2.0.2",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system": "2.0.5",
"@nextui-org/theme": "2.0.5",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/textfield": "^3.11.0",
"@react-aria/utils": "^3.19.0",
"@react-stately/utils": "^3.7.0",
"@react-types/shared": "^3.19.0",
"@react-types/textfield": "^3.7.3",
"react-textarea-autosize": "^8.5.2"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/kbd": {
"version": "2.0.10",
"resolved": "https://registry.npmjs.org/@nextui-org/kbd/-/kbd-2.0.10.tgz",
"integrity": "sha512-0zvJzLfdBZCOa48Wbjt4+MTklDVBILMCxHB4H7Sh8roPwIuqAfvnOi1xQYa+0AXoTT6J5Z7YL1ZK1EZkYCZKXg==",
"dependencies": {
"@nextui-org/react-utils": "2.0.6",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system-rsc": "2.0.3",
"@nextui-org/theme": "2.0.5",
"@react-aria/utils": "^3.19.0"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/link": {
"version": "2.0.11",
"resolved": "https://registry.npmjs.org/@nextui-org/link/-/link-2.0.11.tgz",
"integrity": "sha512-gDnmSn9OsoNb2bxJjVSHKgfHFqweZc2uOSB6hde64xlw9m3LbPCSlC8N414+TTxWhfrnyQijkwx5KxsUnFoxOg==",
"dependencies": {
"@nextui-org/react-utils": "2.0.6",
"@nextui-org/shared-icons": "2.0.2",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system": "2.0.5",
"@nextui-org/theme": "2.0.5",
"@react-aria/focus": "^3.14.0",
"@react-aria/link": "^3.5.3",
"@react-aria/utils": "^3.19.0",
"@react-types/link": "^3.4.4"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/modal": {
"version": "2.0.13",
"resolved": "https://registry.npmjs.org/@nextui-org/modal/-/modal-2.0.13.tgz",
"integrity": "sha512-SJbwN/e3swKE3Kx0/BBWHSPdP6NbtrwqH4GhY0ulpIQ0ZCziy8MAT76KIN46Fh/kBTzsRIXtPcAaf2bXEX3T1Q==",
"dependencies": {
"@nextui-org/framer-transitions": "2.0.5",
"@nextui-org/react-utils": "2.0.6",
"@nextui-org/shared-icons": "2.0.2",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system": "2.0.5",
"@nextui-org/theme": "2.0.5",
"@nextui-org/use-aria-button": "2.0.3",
"@nextui-org/use-aria-modal-overlay": "2.0.3",
"@nextui-org/use-disclosure": "2.0.3",
"@react-aria/dialog": "^3.5.4",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/overlays": "^3.16.0",
"@react-aria/utils": "^3.19.0",
"@react-stately/overlays": "^3.6.1",
"@react-types/overlays": "^3.8.1",
"react-remove-scroll": "^2.5.6"
},
"peerDependencies": {
"framer-motion": ">=4.0.0",
"react": ">=18"
}
},
"node_modules/@nextui-org/navbar": {
"version": "2.0.11",
"resolved": "https://registry.npmjs.org/@nextui-org/navbar/-/navbar-2.0.11.tgz",
"integrity": "sha512-y+GsQzJDOEvSbGXQb+cFR083mcjwI0VNwbPDMX+16euVL1gqIXqkrQiEiTxD6+urztMu41hOhSqMEb8ratbt0w==",
"dependencies": {
"@nextui-org/framer-transitions": "2.0.5",
"@nextui-org/react-utils": "2.0.6",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system": "2.0.5",
"@nextui-org/theme": "2.0.5",
"@nextui-org/use-aria-toggle-button": "2.0.3",
"@nextui-org/use-scroll-position": "2.0.2",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/overlays": "^3.16.0",
"@react-aria/utils": "^3.19.0",
"@react-stately/toggle": "^3.6.1",
"@react-stately/utils": "^3.7.0",
"react-remove-scroll": "^2.5.6"
},
"peerDependencies": {
"framer-motion": ">=4.0.0",
"react": ">=18"
}
},
"node_modules/@nextui-org/pagination": {
"version": "2.0.12",
"resolved": "https://registry.npmjs.org/@nextui-org/pagination/-/pagination-2.0.12.tgz",
"integrity": "sha512-IQcHfY8hdYWIzLhWuxcMWUBgDlzqfVSynfVfk5YAbskoGYVG6Bai47hs1isxG99mqiC6R0Bi37KahkyRphgpsg==",
"dependencies": {
"@nextui-org/react-utils": "2.0.6",
"@nextui-org/shared-icons": "2.0.2",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system": "2.0.5",
"@nextui-org/theme": "2.0.5",
"@nextui-org/use-pagination": "2.0.2",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/utils": "^3.19.0",
"scroll-into-view-if-needed": "3.0.10"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/popover": {
"version": "2.0.12",
"resolved": "https://registry.npmjs.org/@nextui-org/popover/-/popover-2.0.12.tgz",
"integrity": "sha512-90XxnaZN97IsFLUQhIKM0Yog8GMRjNC55KXVr3zN0iw7W+RleFrMr52n+nbcuzUshKkSlge4Dxjh4An9zBFOvA==",
"dependencies": {
"@nextui-org/aria-utils": "2.0.5",
"@nextui-org/button": "2.0.11",
"@nextui-org/framer-transitions": "2.0.5",
"@nextui-org/react-utils": "2.0.6",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system": "2.0.5",
"@nextui-org/theme": "2.0.5",
"@nextui-org/use-aria-button": "2.0.3",
"@react-aria/dialog": "^3.5.4",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/overlays": "^3.16.0",
"@react-aria/utils": "^3.19.0",
"@react-stately/overlays": "^3.6.1",
"@react-types/button": "^3.7.4",
"@react-types/overlays": "^3.8.1",
"react-remove-scroll": "^2.5.6"
},
"peerDependencies": {
"framer-motion": ">=4.0.0",
"react": ">=18"
}
},
"node_modules/@nextui-org/progress": {
"version": "2.0.11",
"resolved": "https://registry.npmjs.org/@nextui-org/progress/-/progress-2.0.11.tgz",
"integrity": "sha512-RFP7fTFPwXt7b7CSzmDKTLWbq/zx0rKbolfem6wYJFkO0F8S4UrUrTGTwSW06s1mBki35Gb1qMzE//apE51wiw==",
"dependencies": {
"@nextui-org/react-utils": "2.0.6",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system": "2.0.5",
"@nextui-org/theme": "2.0.5",
"@nextui-org/use-is-mounted": "2.0.2",
"@react-aria/i18n": "^3.8.1",
"@react-aria/progress": "^3.4.4",
"@react-aria/utils": "^3.19.0",
"@react-types/progress": "^3.4.1"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/radio": {
"version": "2.0.12",
"resolved": "https://registry.npmjs.org/@nextui-org/radio/-/radio-2.0.12.tgz",
"integrity": "sha512-wPFBWBbIhTMg7dc6sMdmBdjVo+cCIIplrsxTruv1cXp+JGv63UpVNfbsCriiMn4yMnQNkiwRKtz4ypQN2k4skw==",
"dependencies": {
"@nextui-org/react-utils": "2.0.6",
"@nextui-org/shared-utils": "2.0.2",
"@nextui-org/system": "2.0.5",
"@nextui-org/theme": "2.0.5",
"@react-aria/focus": "^3.14.0",
"@react-aria/interactions": "^3.17.0",
"@react-aria/radio": "^3.7.0",
"@react-aria/utils": "^3.19.0",
"@react-aria/visually-hidden": "^3.8.3",
"@react-stately/radio": "^3.8.3",
"@react-types/radio": "^3.5.0",
"@react-types/shared": "^3.19.0"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@nextui-org/react": {
"version": "2.0.22",
"resolved": "https://registry.npmjs.org/@nextui-org/react/-/react-2.0.22.tgz",
"integrity": "sha512-2+614OeBPq8p7tVRi9onWkBdBUzPRXOsdJf1hpKXOhmDsm4uhbshsx6moty9NyknWWdS8KPoLQOAuFISbtAVzw==",
"dependencies": {
"@nextui-org/accordion": "2.0.12",
"@nextui-org/avatar": "2.0.11",
"@nextui-org/badge": "2.0.9",
"@nextui-org/button": "2.0.11",