-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
9089 lines (9089 loc) · 358 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": "blairhacks_5",
"version": "0.1.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "blairhacks_5",
"version": "0.1.0",
"dependencies": {
"@chakra-ui/icons": "^1.0.7",
"@chakra-ui/react": "^1.6.4",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@hackclub/icons": "0.0.9",
"framer-motion": "^4.1.17",
"next": "^11.0.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-intersection-observer": "^8.33.1",
"react-scroll": "^1.8.2"
}
},
"node_modules/@babel/code-frame": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz",
"integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==",
"dependencies": {
"@babel/highlight": "^7.10.4"
}
},
"node_modules/@babel/helper-module-imports": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz",
"integrity": "sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ==",
"dependencies": {
"@babel/types": "^7.14.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-imports/node_modules/@babel/helper-validator-identifier": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz",
"integrity": "sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-imports/node_modules/@babel/types": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.5.tgz",
"integrity": "sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.14.5",
"to-fast-properties": "^2.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-plugin-utils": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz",
"integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
"integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw=="
},
"node_modules/@babel/highlight": {
"version": "7.13.10",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.10.tgz",
"integrity": "sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.12.11",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
}
},
"node_modules/@babel/plugin-syntax-jsx": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.14.5.tgz",
"integrity": "sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.14.5"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/runtime": {
"version": "7.12.5",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
"integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"dependencies": {
"regenerator-runtime": "^0.13.4"
}
},
"node_modules/@babel/types": {
"version": "7.8.3",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz",
"integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==",
"dependencies": {
"esutils": "^2.0.2",
"lodash": "^4.17.13",
"to-fast-properties": "^2.0.0"
}
},
"node_modules/@chakra-ui/accordion": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/@chakra-ui/accordion/-/accordion-1.3.3.tgz",
"integrity": "sha512-l0mtyChZxGlMfFRQhCS3yiucEXU4oV2k35W0OvYl5X1upzNlwD2o9JFCw/25PHJ+IbDo+bMAoQ/mPc4ZAy7s/Q==",
"dependencies": {
"@chakra-ui/descendant": "2.0.1",
"@chakra-ui/hooks": "1.5.3",
"@chakra-ui/icon": "1.1.9",
"@chakra-ui/react-utils": "1.1.2",
"@chakra-ui/transition": "1.3.2",
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/accordion/node_modules/@chakra-ui/icon": {
"version": "1.1.9",
"resolved": "https://registry.npmjs.org/@chakra-ui/icon/-/icon-1.1.9.tgz",
"integrity": "sha512-lmZHK4O+Wo7LwxRsQb0KmtOwq2iACESxwQgackuj7NPHbAsdF2/y3t2f7KCD+dTKGxoauEMgU2nVLePZWjtpTQ==",
"dependencies": {
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/accordion/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/alert": {
"version": "1.2.5",
"resolved": "https://registry.npmjs.org/@chakra-ui/alert/-/alert-1.2.5.tgz",
"integrity": "sha512-S+YaqaACteSOhGlBFygOeYsQC2FYO6m37g6M+N23kbUHKtT7I4gYsxczLuUwKJ65u4T2Bt1qNSVokjmKCMhE9w==",
"dependencies": {
"@chakra-ui/icon": "1.1.9",
"@chakra-ui/react-utils": "1.1.2",
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/alert/node_modules/@chakra-ui/icon": {
"version": "1.1.9",
"resolved": "https://registry.npmjs.org/@chakra-ui/icon/-/icon-1.1.9.tgz",
"integrity": "sha512-lmZHK4O+Wo7LwxRsQb0KmtOwq2iACESxwQgackuj7NPHbAsdF2/y3t2f7KCD+dTKGxoauEMgU2nVLePZWjtpTQ==",
"dependencies": {
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/alert/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/avatar": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/@chakra-ui/avatar/-/avatar-1.2.6.tgz",
"integrity": "sha512-Z07yd86nGYgrqFk1H/zyplpPRhQ04g3UioPWmufoqsGp6x/wysRO1ictF5O1duGQ1M5x4vrTqAS1ssAl5HmUzg==",
"dependencies": {
"@chakra-ui/image": "1.0.16",
"@chakra-ui/react-utils": "1.1.2",
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/avatar/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/breadcrumb": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/@chakra-ui/breadcrumb/-/breadcrumb-1.2.6.tgz",
"integrity": "sha512-dsISuwwqq46VcNUbeHJSE2kU939yPl6oSBo7RFQW/JNr+UN0wf9yGdB9BtETIhXZQDpnlEZgm3Gea78ubcDEKA==",
"dependencies": {
"@chakra-ui/react-utils": "1.1.2",
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/breadcrumb/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/button": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/button/-/button-1.4.0.tgz",
"integrity": "sha512-bkc5t2l3fBUm4yIllQAtoWBRvbElBWGEIzMEo9ABxWrB6bhXEeP513Mz1IoPFwHQmFhsQ1G+FpdH+X8TSN8cNw==",
"dependencies": {
"@chakra-ui/react-utils": "1.1.2",
"@chakra-ui/spinner": "1.1.10",
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/button/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/checkbox": {
"version": "1.5.3",
"resolved": "https://registry.npmjs.org/@chakra-ui/checkbox/-/checkbox-1.5.3.tgz",
"integrity": "sha512-0BXKci7D/dm0HxPBlFnZOtLy370dOYhOO11cMWnKGE+F3Zm2+vJKEU40O1wkWe7qnr6USsjFwXSHNLUkY9qH5A==",
"dependencies": {
"@chakra-ui/hooks": "1.5.3",
"@chakra-ui/react-utils": "1.1.2",
"@chakra-ui/utils": "1.8.0",
"@chakra-ui/visually-hidden": "1.0.12"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"framer-motion": "3.x || 4.x",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/checkbox/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/clickable": {
"version": "1.1.5",
"resolved": "https://registry.npmjs.org/@chakra-ui/clickable/-/clickable-1.1.5.tgz",
"integrity": "sha512-nC6vLxh7cYrYyuMdrotiq+CUqG+KGND+RLeE3WiWyP0JDivX6t7S1EtRENnskKyWaLvjMDFsLU0wDAZm18vQNA==",
"dependencies": {
"@chakra-ui/react-utils": "1.1.2",
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/clickable/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/close-button": {
"version": "1.1.9",
"resolved": "https://registry.npmjs.org/@chakra-ui/close-button/-/close-button-1.1.9.tgz",
"integrity": "sha512-Wj1nuNUw93AkswwQM+ifOi0guJddRavu4mJS4F15+Vv8d30BQo/O6NOGPFutJK4Fm48WA9QjqydCMb1n8umDxA==",
"dependencies": {
"@chakra-ui/icon": "1.1.9",
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/close-button/node_modules/@chakra-ui/icon": {
"version": "1.1.9",
"resolved": "https://registry.npmjs.org/@chakra-ui/icon/-/icon-1.1.9.tgz",
"integrity": "sha512-lmZHK4O+Wo7LwxRsQb0KmtOwq2iACESxwQgackuj7NPHbAsdF2/y3t2f7KCD+dTKGxoauEMgU2nVLePZWjtpTQ==",
"dependencies": {
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/close-button/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/color-mode": {
"version": "1.1.9",
"resolved": "https://registry.npmjs.org/@chakra-ui/color-mode/-/color-mode-1.1.9.tgz",
"integrity": "sha512-Bb8HpoJ4dzrYUIOHzIf0Ph+82ZphYEmRxc4Hd/ilCa5PGTHmOh7SSoFs6RToU4j/9Xmz32eKF6ioT6m6Fh8ycQ==",
"dependencies": {
"@chakra-ui/hooks": "1.5.3",
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/color-mode/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/control-box": {
"version": "1.0.13",
"resolved": "https://registry.npmjs.org/@chakra-ui/control-box/-/control-box-1.0.13.tgz",
"integrity": "sha512-C64WLlVaTRaHDI+aeZpIDMXSZZMsXxbjXN7UCzUoNcG/5PzZQNJgvcJ3Y82pKF6S+4Sl7rRzxw+zIZLSCasGPw==",
"dependencies": {
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/control-box/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/counter": {
"version": "1.1.6",
"resolved": "https://registry.npmjs.org/@chakra-ui/counter/-/counter-1.1.6.tgz",
"integrity": "sha512-KwmkgI6Sp+NAsGEIFQOOUZMJ1ePPWNoUev3mArPrw7KcymPsMQK8KS95JdQXmRIYU34xdbeDavcsRJVLkFCfwg==",
"dependencies": {
"@chakra-ui/hooks": "1.5.3",
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/counter/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/css-reset": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/css-reset/-/css-reset-1.0.0.tgz",
"integrity": "sha512-UaPsImGHvCgFO3ayp6Ugafu2/3/EG8wlW/8Y9Ihfk1UFv8cpV+3BfWKmuZ7IcmxcBL9dkP6E8p3/M1T0FB92hg==",
"peerDependencies": {
"@emotion/react": ">=10.0.35",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/descendant": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@chakra-ui/descendant/-/descendant-2.0.1.tgz",
"integrity": "sha512-TeYp94iOhu5Gs2oVzewJaep0qft/JKMKfmcf4PGgzJF+h6TWZm6NGohk6Jq7JOh+y0rExa1ulknIgnMzFx5xaA==",
"dependencies": {
"@chakra-ui/react-utils": "^1.1.2"
},
"peerDependencies": {
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/editable": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/@chakra-ui/editable/-/editable-1.2.6.tgz",
"integrity": "sha512-Zbb68l/whuVkB5anPbrNLua14XhTGuqgmlrsadsaWnPzdBYCQFUR9+nXPhYLlHdzlWM5WLZCdffVkUl9UVgJwQ==",
"dependencies": {
"@chakra-ui/hooks": "1.5.3",
"@chakra-ui/react-utils": "1.1.2",
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/editable/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/focus-lock": {
"version": "1.1.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/focus-lock/-/focus-lock-1.1.8.tgz",
"integrity": "sha512-y2aZGFv5O8vWL/oxt3FhhQSD6lQO5TEUdIFwaKFCh1qqHMoWrQMx0n7aGny1E8IMGvs2fKMKr1lIA3HovE/sCw==",
"dependencies": {
"@chakra-ui/utils": "1.8.0",
"react-focus-lock": "2.5.0"
},
"peerDependencies": {
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/focus-lock/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/form-control": {
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/@chakra-ui/form-control/-/form-control-1.3.7.tgz",
"integrity": "sha512-kXrnhI61SYbf+OL4XM+iMFS/OjdqfsIJo+BHNfTC8phY9xTbwnzTeA0kzEwcZa2n043ICzcD5O3QpPf9Z49Kig==",
"dependencies": {
"@chakra-ui/hooks": "1.5.3",
"@chakra-ui/icon": "1.1.9",
"@chakra-ui/react-utils": "1.1.2",
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/form-control/node_modules/@chakra-ui/icon": {
"version": "1.1.9",
"resolved": "https://registry.npmjs.org/@chakra-ui/icon/-/icon-1.1.9.tgz",
"integrity": "sha512-lmZHK4O+Wo7LwxRsQb0KmtOwq2iACESxwQgackuj7NPHbAsdF2/y3t2f7KCD+dTKGxoauEMgU2nVLePZWjtpTQ==",
"dependencies": {
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/form-control/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/hooks": {
"version": "1.5.3",
"resolved": "https://registry.npmjs.org/@chakra-ui/hooks/-/hooks-1.5.3.tgz",
"integrity": "sha512-a8j87nnS5mGopsNkEPmvXPOuW+Ua4vS3sQh48esx8WXQ3v9V2/XcJ8+eTA4AMJGhxXCU63brU2BciyN9dkxYwA==",
"dependencies": {
"@chakra-ui/react-utils": "1.1.2",
"@chakra-ui/utils": "1.8.0",
"compute-scroll-into-view": "1.0.14",
"copy-to-clipboard": "3.3.1"
},
"peerDependencies": {
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/hooks/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/icon": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@chakra-ui/icon/-/icon-1.1.3.tgz",
"integrity": "sha512-XZ9RTU0J/qB5bZawUK5yk6YN3P2fi74aTLap1qygmodAPo5sIroRzfuXndezjAYFhuRjI62zfSs/FVhwJyhmsw==",
"dependencies": {
"@chakra-ui/utils": "1.4.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/icons": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/@chakra-ui/icons/-/icons-1.0.7.tgz",
"integrity": "sha512-Fqc8jECA8e02RJ7zjgWUu/b1ue2QevxrIptkzgzE3gZTrndquBm9ikB2In/zRKR07FkUd653amd9OOEyU2COJQ==",
"dependencies": {
"@chakra-ui/icon": "1.1.3",
"@types/react": "^17.0.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/image": {
"version": "1.0.16",
"resolved": "https://registry.npmjs.org/@chakra-ui/image/-/image-1.0.16.tgz",
"integrity": "sha512-CrmT9HhnIawiQ4XiSz9O3tH1b0Hma2QQQzGyOQNrfiERxrG+m6pFaA1voCiK6e9RoDiRwcLeEPCg1tVus+AT2g==",
"dependencies": {
"@chakra-ui/hooks": "1.5.3",
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/image/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/input": {
"version": "1.2.7",
"resolved": "https://registry.npmjs.org/@chakra-ui/input/-/input-1.2.7.tgz",
"integrity": "sha512-PpcpFy9vYxU0DNEVpSDM4/400MDh2pS84MW+cF0SIepJSL+5DczUe+LO/+yoKx0Zh6ccmOfUSHUVDQLczwEFSg==",
"dependencies": {
"@chakra-ui/form-control": "1.3.7",
"@chakra-ui/react-utils": "1.1.2",
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/input/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/layout": {
"version": "1.4.6",
"resolved": "https://registry.npmjs.org/@chakra-ui/layout/-/layout-1.4.6.tgz",
"integrity": "sha512-dde/c0SNhFsSHwdgQY4m/JwBzcjY4gSCuODX90AcPJuDVd+CFm2mbRIicaJ9iFj3V83C3oIQUzn+LJlLLnmSig==",
"dependencies": {
"@chakra-ui/icon": "1.1.9",
"@chakra-ui/react-utils": "1.1.2",
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/layout/node_modules/@chakra-ui/icon": {
"version": "1.1.9",
"resolved": "https://registry.npmjs.org/@chakra-ui/icon/-/icon-1.1.9.tgz",
"integrity": "sha512-lmZHK4O+Wo7LwxRsQb0KmtOwq2iACESxwQgackuj7NPHbAsdF2/y3t2f7KCD+dTKGxoauEMgU2nVLePZWjtpTQ==",
"dependencies": {
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/layout/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/live-region": {
"version": "1.0.12",
"resolved": "https://registry.npmjs.org/@chakra-ui/live-region/-/live-region-1.0.12.tgz",
"integrity": "sha512-NgIZuCLAX7FCyLc7+7wxQ0WCmlFS+SHutHf2QXezU6NjkoUmiZ02yVoBHltGn9f0jBVkVBZ4LL1ng2ruwRsJog==",
"dependencies": {
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/live-region/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/media-query": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/media-query/-/media-query-1.1.0.tgz",
"integrity": "sha512-uito1LpqhO+xBgpXvnPcn4YZkeF905pAOgwNdudX88Wyn26Rcs81w/B4W90/MW0lAfPuUWqzYbGyUuiXyavQWQ==",
"dependencies": {
"@chakra-ui/react-env": "1.0.4",
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"@chakra-ui/theme": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/media-query/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/menu": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/menu/-/menu-1.7.0.tgz",
"integrity": "sha512-zhT174hDwRyf9A4xbfFERPIH46hZFckFVy9BEBhTGeFAY2ohyqY0BEQoaJwQriN4ivFv2Wpr8j8yYAGR68x4XA==",
"dependencies": {
"@chakra-ui/clickable": "1.1.5",
"@chakra-ui/descendant": "2.0.1",
"@chakra-ui/hooks": "1.5.3",
"@chakra-ui/popper": "2.2.1",
"@chakra-ui/react-utils": "1.1.2",
"@chakra-ui/transition": "1.3.2",
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"framer-motion": "3.x || 4.x",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/menu/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/modal": {
"version": "1.8.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/modal/-/modal-1.8.8.tgz",
"integrity": "sha512-E1fBHwGzmxjHv/+QK9jryiY4y544arRkR8gI6aBbXzpSmSZ2yke802NC6p2Xb22dnmrvzIT5G9MkJx2oV5jjCA==",
"dependencies": {
"@chakra-ui/close-button": "1.1.9",
"@chakra-ui/focus-lock": "1.1.8",
"@chakra-ui/hooks": "1.5.3",
"@chakra-ui/portal": "1.2.6",
"@chakra-ui/react-utils": "1.1.2",
"@chakra-ui/transition": "1.3.2",
"@chakra-ui/utils": "1.8.0",
"aria-hidden": "^1.1.1",
"react-remove-scroll": "2.4.1"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"framer-motion": "3.x || 4.x",
"react": ">=16.8.6",
"react-dom": ">=16.8.6"
}
},
"node_modules/@chakra-ui/modal/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/number-input": {
"version": "1.2.7",
"resolved": "https://registry.npmjs.org/@chakra-ui/number-input/-/number-input-1.2.7.tgz",
"integrity": "sha512-k5TUjDfPHmv/pM9Rq3Dmo3S55Y/yTl76gX/en93+KF8kTamVP0oAhunbC82fYegyFIgpjPckJ3VOxR51JdX/eg==",
"dependencies": {
"@chakra-ui/counter": "1.1.6",
"@chakra-ui/form-control": "1.3.7",
"@chakra-ui/hooks": "1.5.3",
"@chakra-ui/icon": "1.1.9",
"@chakra-ui/react-utils": "1.1.2",
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/number-input/node_modules/@chakra-ui/icon": {
"version": "1.1.9",
"resolved": "https://registry.npmjs.org/@chakra-ui/icon/-/icon-1.1.9.tgz",
"integrity": "sha512-lmZHK4O+Wo7LwxRsQb0KmtOwq2iACESxwQgackuj7NPHbAsdF2/y3t2f7KCD+dTKGxoauEMgU2nVLePZWjtpTQ==",
"dependencies": {
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/number-input/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/pin-input": {
"version": "1.6.2",
"resolved": "https://registry.npmjs.org/@chakra-ui/pin-input/-/pin-input-1.6.2.tgz",
"integrity": "sha512-E3eRuYmLEiyRNUui6OTh5blXD8X0jvqFYl7Nc60g3Sqwux2myiBkFBSflNPl0CPFkdBg2OpzwPglHQsW/dXBHw==",
"dependencies": {
"@chakra-ui/descendant": "2.0.1",
"@chakra-ui/hooks": "1.5.3",
"@chakra-ui/react-utils": "1.1.2",
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/pin-input/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/popover": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/popover/-/popover-1.8.0.tgz",
"integrity": "sha512-TNk5rztee9pen8vAQyBGuAxO0SpTvibJFqwnXDEFbDHDVd63HvH9IUNgQ4eB6hyh8kWrprTmU4KAnV5UDMvDWg==",
"dependencies": {
"@chakra-ui/close-button": "1.1.9",
"@chakra-ui/hooks": "1.5.3",
"@chakra-ui/popper": "2.2.1",
"@chakra-ui/react-utils": "1.1.2",
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"framer-motion": "3.x || 4.x",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/popover/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/popper": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/@chakra-ui/popper/-/popper-2.2.1.tgz",
"integrity": "sha512-W0hMTBp2X62UooF3qPNmsEW0IJfz72gr2DN8nsCvHQrMiARB9s2jECEss6qEsB97tnmIG8k2TNee8IzTGLmMyA==",
"dependencies": {
"@chakra-ui/react-utils": "1.1.2",
"@popperjs/core": "2.4.4"
},
"peerDependencies": {
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/portal": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/@chakra-ui/portal/-/portal-1.2.6.tgz",
"integrity": "sha512-OqsMN50XTOJezjfXwO7VxiiVpXWQhe1ngAeGGHEPHxsnNA8LI66uk1+GX3YjjclbsLMKNdnS0WcNuCRKSv/AAA==",
"dependencies": {
"@chakra-ui/hooks": "1.5.3",
"@chakra-ui/react-utils": "1.1.2",
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"react": ">=16.8.6",
"react-dom": ">=16.8.6"
}
},
"node_modules/@chakra-ui/portal/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/progress": {
"version": "1.1.10",
"resolved": "https://registry.npmjs.org/@chakra-ui/progress/-/progress-1.1.10.tgz",
"integrity": "sha512-9f5NN690GdF3rpPAhXVHgJHVSRUUXETHABFlzBsGZrr+AMzURo1xwp0USwzZrtzk4v9FpRy3Op/Td46oQodDSQ==",
"dependencies": {
"@chakra-ui/theme-tools": "1.1.7",
"@chakra-ui/utils": "1.8.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/progress/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/radio": {
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/@chakra-ui/radio/-/radio-1.3.7.tgz",
"integrity": "sha512-CqZWmFLVyAnzGeRyxsubQ2lQLSSedDldox3Rul3EQpHbKLhG3QUE3lLiedpui1/cwal5Ero9AWxVCR7jAg7WZQ==",
"dependencies": {
"@chakra-ui/form-control": "1.3.7",
"@chakra-ui/hooks": "1.5.3",
"@chakra-ui/react-utils": "1.1.2",
"@chakra-ui/utils": "1.8.0",
"@chakra-ui/visually-hidden": "1.0.12"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/radio/node_modules/@chakra-ui/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-BWIhKcXnLbOIwCTKeNcOStNwk9RyYVA9xRRFPGK6Kp3EhrxP0rDwAbu4D3o3qAc+yhIDhGmPaIj1jRXHB5DTfg==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
"framesync": "5.3.0",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/react": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@chakra-ui/react/-/react-1.6.4.tgz",
"integrity": "sha512-TBsSNT7+UHmsilXWWXFmwn+mFmBqHhsnjn443B9rL5AlfYBzXKP75TrIJ4AnQdZtgvAdVwIbWEkzs4nXvxHcjw==",
"dependencies": {
"@chakra-ui/accordion": "1.3.3",
"@chakra-ui/alert": "1.2.5",
"@chakra-ui/avatar": "1.2.6",
"@chakra-ui/breadcrumb": "1.2.6",
"@chakra-ui/button": "1.4.0",
"@chakra-ui/checkbox": "1.5.3",
"@chakra-ui/close-button": "1.1.9",
"@chakra-ui/control-box": "1.0.13",
"@chakra-ui/counter": "1.1.6",
"@chakra-ui/css-reset": "1.0.0",
"@chakra-ui/editable": "1.2.6",
"@chakra-ui/form-control": "1.3.7",
"@chakra-ui/hooks": "1.5.3",
"@chakra-ui/icon": "1.1.9",
"@chakra-ui/image": "1.0.16",
"@chakra-ui/input": "1.2.7",
"@chakra-ui/layout": "1.4.6",
"@chakra-ui/live-region": "1.0.12",
"@chakra-ui/media-query": "1.1.0",
"@chakra-ui/menu": "1.7.0",
"@chakra-ui/modal": "1.8.8",
"@chakra-ui/number-input": "1.2.7",
"@chakra-ui/pin-input": "1.6.2",
"@chakra-ui/popover": "1.8.0",
"@chakra-ui/popper": "2.2.1",
"@chakra-ui/portal": "1.2.6",
"@chakra-ui/progress": "1.1.10",
"@chakra-ui/radio": "1.3.7",
"@chakra-ui/react-env": "1.0.4",
"@chakra-ui/select": "1.1.11",
"@chakra-ui/skeleton": "1.1.15",
"@chakra-ui/slider": "1.2.6",
"@chakra-ui/spinner": "1.1.10",
"@chakra-ui/stat": "1.1.10",
"@chakra-ui/switch": "1.2.6",
"@chakra-ui/system": "1.7.0",
"@chakra-ui/table": "1.2.4",
"@chakra-ui/tabs": "1.5.2",