-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
15329 lines (15329 loc) · 596 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": "zachblog",
"version": "0.1.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "zachblog",
"version": "0.1.0",
"dependencies": {
"@chakra-ui/core": "^1.0.0-rc.8",
"@chakra-ui/css-reset": "^1.0.0",
"@chakra-ui/icons": "^1.0.16",
"@chakra-ui/react": "^1.6.6",
"@chakra-ui/theme-tools": "^1.3.1",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@supabase/supabase-js": "^1.22.3",
"emotion": "^10.0.9",
"escape-html": "^1.0.3",
"focus-visible": "^5.2.0",
"framer-motion": "^3.10.6",
"gray-matter": "^4.0.3",
"image-extensions": "^1.1.0",
"is-hotkey": "^0.2.0",
"is-url": "^1.2.4",
"marker": "^0.1.2",
"next": "12.0.2",
"next-connect": "^0.10.2",
"next-google-fonts": "^2.2.0",
"next-seo": "^5.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"slate": "^0.65.3",
"slate-history": "^0.65.3",
"slate-hyperscript": "^0.66.0",
"slate-react": "^0.65.3",
"styled-components": "^5.3.1",
"supabase-swr": "^1.0.0-alpha.4"
},
"devDependencies": {
"eslint": "7.32.0",
"eslint-config-next": "11.1.0",
"prismjs": "^1.25.0",
"svg-react-loader": "^0.4.6"
}
},
"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/generator": {
"version": "7.15.4",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.15.4.tgz",
"integrity": "sha512-d3itta0tu+UayjEORPNz6e1T3FtvWlP5N4V5M+lhp/CxT4oAA7/NcScnpRyspUMLK6tu9MNHmQHxRykuN2R7hw==",
"dependencies": {
"@babel/types": "^7.15.4",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/generator/node_modules/@babel/types": {
"version": "7.15.6",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.6.tgz",
"integrity": "sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.14.9",
"to-fast-properties": "^2.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/generator/node_modules/source-map": {
"version": "0.5.7",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
"integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@babel/helper-annotate-as-pure": {
"version": "7.15.4",
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.15.4.tgz",
"integrity": "sha512-QwrtdNvUNsPCj2lfNQacsGSQvGX8ee1ttrBrcozUP2Sv/jylewBP/8QFe6ZkBsC8T/GYWonNAWJV4aRR9AL2DA==",
"dependencies": {
"@babel/types": "^7.15.4"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-annotate-as-pure/node_modules/@babel/types": {
"version": "7.15.6",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.6.tgz",
"integrity": "sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.14.9",
"to-fast-properties": "^2.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-function-name": {
"version": "7.15.4",
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz",
"integrity": "sha512-Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw==",
"dependencies": {
"@babel/helper-get-function-arity": "^7.15.4",
"@babel/template": "^7.15.4",
"@babel/types": "^7.15.4"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-function-name/node_modules/@babel/types": {
"version": "7.15.6",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.6.tgz",
"integrity": "sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.14.9",
"to-fast-properties": "^2.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-get-function-arity": {
"version": "7.15.4",
"resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz",
"integrity": "sha512-1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA==",
"dependencies": {
"@babel/types": "^7.15.4"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-get-function-arity/node_modules/@babel/types": {
"version": "7.15.6",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.6.tgz",
"integrity": "sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.14.9",
"to-fast-properties": "^2.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-hoist-variables": {
"version": "7.15.4",
"resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz",
"integrity": "sha512-VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA==",
"dependencies": {
"@babel/types": "^7.15.4"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-hoist-variables/node_modules/@babel/types": {
"version": "7.15.6",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.6.tgz",
"integrity": "sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.14.9",
"to-fast-properties": "^2.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"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-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-split-export-declaration": {
"version": "7.15.4",
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz",
"integrity": "sha512-HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw==",
"dependencies": {
"@babel/types": "^7.15.4"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-split-export-declaration/node_modules/@babel/types": {
"version": "7.15.6",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.6.tgz",
"integrity": "sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.14.9",
"to-fast-properties": "^2.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.14.9",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz",
"integrity": "sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz",
"integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.14.5",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight/node_modules/ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"dependencies": {
"color-convert": "^1.9.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dependencies": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/color-convert": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"dependencies": {
"color-name": "1.1.3"
}
},
"node_modules/@babel/highlight/node_modules/color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
},
"node_modules/@babel/highlight/node_modules/has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
"integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/supports-color": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"dependencies": {
"has-flag": "^3.0.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/parser": {
"version": "7.15.7",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.15.7.tgz",
"integrity": "sha512-rycZXvQ+xS9QyIcJ9HXeDWf1uxqlbVFAUq0Rq0dbc50Zb/+wUe/ehyfzGfm9KZZF0kBejYgxltBXocP+gKdL2g==",
"bin": {
"parser": "bin/babel-parser.js"
},
"engines": {
"node": ">=6.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.15.3",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.3.tgz",
"integrity": "sha512-OvwMLqNXkCXSz1kSm58sEsNuhqOx/fKpnUnKnFB5v8uDda5bLNEHNgKPvhDN6IU0LDcnHQ90LlJ0Q6jnyBSIBA==",
"dependencies": {
"regenerator-runtime": "^0.13.4"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/runtime-corejs3": {
"version": "7.15.3",
"resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.15.3.tgz",
"integrity": "sha512-30A3lP+sRL6ml8uhoJSs+8jwpKzbw8CqBvDc1laeptxPm5FahumJxirigcbD2qTs71Sonvj1cyZB0OKGAmxQ+A==",
"dev": true,
"dependencies": {
"core-js-pure": "^3.16.0",
"regenerator-runtime": "^0.13.4"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/template": {
"version": "7.15.4",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.15.4.tgz",
"integrity": "sha512-UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg==",
"dependencies": {
"@babel/code-frame": "^7.14.5",
"@babel/parser": "^7.15.4",
"@babel/types": "^7.15.4"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/template/node_modules/@babel/code-frame": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz",
"integrity": "sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==",
"dependencies": {
"@babel/highlight": "^7.14.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/template/node_modules/@babel/types": {
"version": "7.15.6",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.6.tgz",
"integrity": "sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.14.9",
"to-fast-properties": "^2.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse": {
"version": "7.15.4",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.4.tgz",
"integrity": "sha512-W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA==",
"dependencies": {
"@babel/code-frame": "^7.14.5",
"@babel/generator": "^7.15.4",
"@babel/helper-function-name": "^7.15.4",
"@babel/helper-hoist-variables": "^7.15.4",
"@babel/helper-split-export-declaration": "^7.15.4",
"@babel/parser": "^7.15.4",
"@babel/types": "^7.15.4",
"debug": "^4.1.0",
"globals": "^11.1.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse/node_modules/@babel/code-frame": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz",
"integrity": "sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==",
"dependencies": {
"@babel/highlight": "^7.14.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse/node_modules/@babel/types": {
"version": "7.15.6",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.6.tgz",
"integrity": "sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.14.9",
"to-fast-properties": "^2.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse/node_modules/globals": {
"version": "11.12.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
"integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/types": {
"version": "7.15.0",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.0.tgz",
"integrity": "sha512-OBvfqnllOIdX4ojTHpwZbpvz4j3EWyjkZEdmjH0/cgsd6QOdSgU8rLSk6ard/pcW7rlmjdVSX/AWOaORR1uNOQ==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.14.9",
"to-fast-properties": "^2.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@chakra-ui/accordion": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/accordion/-/accordion-1.0.0-rc.8.tgz",
"integrity": "sha512-4carsEN6gJFPc9Acl1zckLxQZgxETKSE2ILOL4M+HCx83BMOER59KdEpOH5qNhB6bWlYUdXaj3metvfQz83pCA==",
"dependencies": {
"@chakra-ui/descendant": "1.0.0-rc.8",
"@chakra-ui/hooks": "1.0.0-rc.8",
"@chakra-ui/icon": "1.0.0-rc.8",
"@chakra-ui/transition": "1.0.0-rc.8",
"@chakra-ui/utils": "1.0.0-rc.8"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0-rc.5",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/alert": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/alert/-/alert-1.0.0-rc.8.tgz",
"integrity": "sha512-/K6Y3dT14zs7T12/3zYHiECOF/j0OoyLQsqPpOxsDmsaXrmaxhXzsYRFqn5Skurja240Z9O2SXS+ABRVGeo95w==",
"dependencies": {
"@chakra-ui/icon": "1.0.0-rc.8",
"@chakra-ui/utils": "1.0.0-rc.8"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0-rc.5",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/avatar": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/avatar/-/avatar-1.0.0-rc.8.tgz",
"integrity": "sha512-gDj/dtFIpNyILJ7EMHENnadrTcRd97mvvhe2uty/9FkPOhPALqofIKkUKvIKbsm9IVg2TDnttS5tylzLRyceQg==",
"dependencies": {
"@chakra-ui/image": "1.0.0-rc.8",
"@chakra-ui/utils": "1.0.0-rc.8"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0-rc.5",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/breadcrumb": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/breadcrumb/-/breadcrumb-1.0.0-rc.8.tgz",
"integrity": "sha512-6vUDDAaEQvQPBOqkvhtfQPFOh0CsCLYnrjqDPofQpd+UqVMDINembuHCVpAunswo73GCym5vagVe56QvXt7jow==",
"dependencies": {
"@chakra-ui/utils": "1.0.0-rc.8"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0-rc.5",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/button": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/button/-/button-1.0.0-rc.8.tgz",
"integrity": "sha512-qX9Duvio01XEWWFAn3f+SQ/qr5TRX4HxTuBEuF1kIw8RqKCnP5a5pS7g+7KS3Uxx+bIbZ/q/ADuChn0AgXpCsA==",
"dependencies": {
"@chakra-ui/spinner": "1.0.0-rc.8",
"@chakra-ui/utils": "1.0.0-rc.8"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0-rc.5",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/checkbox": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/checkbox/-/checkbox-1.0.0-rc.8.tgz",
"integrity": "sha512-BW8g3pO2bp5YPl1udGnAZeQ3YEuHCplX7iDWFsSREJLstJOrC1mb9VyGyWHuEsq/KXjjfaWAfPDqy9CNlf6aTg==",
"dependencies": {
"@chakra-ui/hooks": "1.0.0-rc.8",
"@chakra-ui/utils": "1.0.0-rc.8",
"@chakra-ui/visually-hidden": "1.0.0-rc.8"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0-rc.5",
"framer-motion": "^2.9.3",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/clickable": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/clickable/-/clickable-1.0.0-rc.8.tgz",
"integrity": "sha512-45mMSfpKami4/NQk+QKXgfnkPyQ57yXQc2LFHx35m6ErXAe2m450Qv40Hj5lxJgrzmETms/SgskJ6GAhdajjtg==",
"dependencies": {
"@chakra-ui/utils": "1.0.0-rc.8"
},
"peerDependencies": {
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/close-button": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/close-button/-/close-button-1.0.0-rc.8.tgz",
"integrity": "sha512-jELCVjMaDbrP6YnAj/fTG7hhItc1HK23LxaLZ2Fug82Tb04+8Y5097Sszvn9U0JI46oxhqoUSPPo6UxKHCZrZQ==",
"dependencies": {
"@chakra-ui/icon": "1.0.0-rc.8",
"@chakra-ui/utils": "1.0.0-rc.8"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0-rc.5",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/color-mode": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/color-mode/-/color-mode-1.0.0-rc.8.tgz",
"integrity": "sha512-NLanjgYN/rzHzWZ9KLGWsaTDmrlGR4PlS9ngXPQW9K0dy8d362wDVuag8IDx435aovXt6tOkbwmNZ1HGNPzAfw==",
"dependencies": {
"@chakra-ui/hooks": "1.0.0-rc.8",
"@chakra-ui/utils": "1.0.0-rc.8"
},
"peerDependencies": {
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/control-box": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/control-box/-/control-box-1.0.0-rc.8.tgz",
"integrity": "sha512-fg/9tfUqaFHjn6JGnHytoGX6W3DUjBxkzcNJtrYX+LNb7CFuC94EOV8d1XkXAMxUVxA901SIOionAU/cTRDkEQ==",
"dependencies": {
"@chakra-ui/utils": "1.0.0-rc.8"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0-rc.5",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/core": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/core/-/core-1.0.0-rc.8.tgz",
"integrity": "sha512-ZPGjTwy5QrYG/sYuGhrYeBNfWNIfQMSI4spHkNusd+qmNwPJMXR/WO0M8FwTdSnLc0ZVubUpvqdY4e9fp+xT+g==",
"dependencies": {
"@chakra-ui/accordion": "1.0.0-rc.8",
"@chakra-ui/alert": "1.0.0-rc.8",
"@chakra-ui/avatar": "1.0.0-rc.8",
"@chakra-ui/breadcrumb": "1.0.0-rc.8",
"@chakra-ui/button": "1.0.0-rc.8",
"@chakra-ui/checkbox": "1.0.0-rc.8",
"@chakra-ui/close-button": "1.0.0-rc.8",
"@chakra-ui/control-box": "1.0.0-rc.8",
"@chakra-ui/counter": "1.0.0-rc.8",
"@chakra-ui/css-reset": "1.0.0-rc.8",
"@chakra-ui/editable": "1.0.0-rc.8",
"@chakra-ui/form-control": "1.0.0-rc.8",
"@chakra-ui/hooks": "1.0.0-rc.8",
"@chakra-ui/icon": "1.0.0-rc.8",
"@chakra-ui/image": "1.0.0-rc.8",
"@chakra-ui/input": "1.0.0-rc.8",
"@chakra-ui/layout": "1.0.0-rc.8",
"@chakra-ui/live-region": "1.0.0-rc.8",
"@chakra-ui/media-query": "1.0.0-rc.8",
"@chakra-ui/menu": "1.0.0-rc.8",
"@chakra-ui/modal": "1.0.0-rc.8",
"@chakra-ui/number-input": "1.0.0-rc.8",
"@chakra-ui/pin-input": "1.0.0-rc.8",
"@chakra-ui/popover": "1.0.0-rc.8",
"@chakra-ui/popper": "1.0.0-rc.8",
"@chakra-ui/portal": "1.0.0-rc.8",
"@chakra-ui/progress": "1.0.0-rc.8",
"@chakra-ui/radio": "1.0.0-rc.8",
"@chakra-ui/select": "1.0.0-rc.8",
"@chakra-ui/skeleton": "1.0.0-rc.8",
"@chakra-ui/slider": "1.0.0-rc.8",
"@chakra-ui/spinner": "1.0.0-rc.8",
"@chakra-ui/stat": "1.0.0-rc.8",
"@chakra-ui/switch": "1.0.0-rc.8",
"@chakra-ui/system": "1.0.0-rc.8",
"@chakra-ui/tabs": "1.0.0-rc.8",
"@chakra-ui/tag": "1.0.0-rc.8",
"@chakra-ui/textarea": "1.0.0-rc.8",
"@chakra-ui/theme": "1.0.0-rc.8",
"@chakra-ui/toast": "1.0.0-rc.8",
"@chakra-ui/tooltip": "1.0.0-rc.8",
"@chakra-ui/transition": "1.0.0-rc.8",
"@chakra-ui/utils": "1.0.0-rc.8",
"@chakra-ui/visually-hidden": "1.0.0-rc.8"
},
"peerDependencies": {
"framer-motion": "^2.9.3",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/core/node_modules/@chakra-ui/css-reset": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/css-reset/-/css-reset-1.0.0-rc.8.tgz",
"integrity": "sha512-s/V28H0W324OYRL8yxpBT1u0rTe+D0R9AmmUjMDmUV+ETxZ77zQMa3DykutbD+Kem3fJv8bpgVuM/uB2utfXSw==",
"peerDependencies": {
"@emotion/core": "10.0.35",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/counter": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/counter/-/counter-1.0.0-rc.8.tgz",
"integrity": "sha512-Ry+U48Z8wATdclxQ3eLmRcSCKScUT7hO71QPd8k8HOexftXowMHi2Iv5XjBBJReb9wCagSc4P5einAUWUAUbnQ==",
"dependencies": {
"@chakra-ui/hooks": "1.0.0-rc.8",
"@chakra-ui/utils": "1.0.0-rc.8"
},
"peerDependencies": {
"react": "16.x || 17.x"
}
},
"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": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/descendant/-/descendant-1.0.0-rc.8.tgz",
"integrity": "sha512-JK40BihvaNZBlEss8Ez58Ccub0XlOyJVJkGm9xPva7p5MygeTlqwXu8dE8IhJfDI99AFheMNPY1r24n1yoYOMQ==",
"dependencies": {
"@chakra-ui/hooks": "1.0.0-rc.8"
},
"peerDependencies": {
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/editable": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/editable/-/editable-1.0.0-rc.8.tgz",
"integrity": "sha512-9kiJk4QVzgv9yVKiTCsYcSbdVcWPq3btj5gHfKDvKgwevD5Wv2sWW8gHklpT5oGNpIxEZB8lcJLpywG+p2Ct/g==",
"dependencies": {
"@chakra-ui/hooks": "1.0.0-rc.8",
"@chakra-ui/utils": "1.0.0-rc.8"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0-rc.5",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/focus-lock": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/focus-lock/-/focus-lock-1.0.0-rc.8.tgz",
"integrity": "sha512-a53KsV/i5bII2jaHDU8LbvkNkJKIiqETiWMxhetUSQ5kevY2XLLGyCQibj814f9awsnUXD7ydo0nW3B8DaRYPw==",
"dependencies": {
"@chakra-ui/utils": "1.0.0-rc.8",
"react-focus-lock": "2.4.1"
},
"peerDependencies": {
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/form-control": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/form-control/-/form-control-1.0.0-rc.8.tgz",
"integrity": "sha512-aoQWl7QMg+RJ51s/NkuxldCPGVtN5gaQLASAXXaUbrwyLCPFyEpgk541096laRB+h5uKytIzRcEvVv7Ox5Gtdw==",
"dependencies": {
"@chakra-ui/hooks": "1.0.0-rc.8",
"@chakra-ui/icon": "1.0.0-rc.8",
"@chakra-ui/utils": "1.0.0-rc.8"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0-rc.5",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/hooks": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/hooks/-/hooks-1.0.0-rc.8.tgz",
"integrity": "sha512-4B1WBsAU47ZKUyvgTvu5vo1d2aczGHDv7YAcuNQdLF7Bwpk5geWvYf8iO5rz15Bfu9NuBOwU76VoG95b+TBzUA==",
"dependencies": {
"@chakra-ui/utils": "1.0.0-rc.8",
"@reach/auto-id": "0.11.0",
"compute-scroll-into-view": "1.0.14",
"copy-to-clipboard": "3.3.1"
},
"peerDependencies": {
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/icon": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/icon/-/icon-1.0.0-rc.8.tgz",
"integrity": "sha512-kWcetk7d7iKd8Ht5+c+065UWKYHbCSJl3EYnNXLpGr/UJh/Saq/qHhftJASm1lcxjy6lVVTlnP6qm8kVvcvpAw==",
"dependencies": {
"@chakra-ui/utils": "1.0.0-rc.8"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0-rc.5",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/icons": {
"version": "1.0.16",
"resolved": "https://registry.npmjs.org/@chakra-ui/icons/-/icons-1.0.16.tgz",
"integrity": "sha512-coxrM4ZYl103p4Y1cXQlDc2cvqRBbNmvccbwUBcB5lod2HKoaZIBhEbxoue5DbrRnNoWIOENnHFxe/ANffu6bw==",
"dependencies": {
"@chakra-ui/icon": "1.1.12",
"@types/react": "^17.0.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/icons/node_modules/@chakra-ui/icon": {
"version": "1.1.12",
"resolved": "https://registry.npmjs.org/@chakra-ui/icon/-/icon-1.1.12.tgz",
"integrity": "sha512-MVzsW+IqAYUGPjxOiEWu9kU3kl3gQ8tNONN77EyDEEcbqPOCgPOomitQ4/scmgSWWWOrAL+SvjlbykXtH8g6+Q==",
"dependencies": {
"@chakra-ui/utils": "1.8.3"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": ">=16.8.6"
}
},
"node_modules/@chakra-ui/icons/node_modules/@chakra-ui/utils": {
"version": "1.8.3",
"resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-1.8.3.tgz",
"integrity": "sha512-v184c2TYwQYBEcDI/9C1DjN668jZVTJeb/DPtucAjEHNi4T0py3tjGDbUd05LoNoZ64uijtWYanfrr6Abe4m1Q==",
"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/icons/node_modules/framesync": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/framesync/-/framesync-5.3.0.tgz",
"integrity": "sha512-oc5m68HDO/tuK2blj7ZcdEBRx3p1PjrgHazL8GYEpvULhrtGIFbQArN6cQS2QhW8mitffaB+VYzMjDqBxxQeoA==",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/@chakra-ui/icons/node_modules/tslib": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz",
"integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw=="
},
"node_modules/@chakra-ui/image": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/image/-/image-1.0.0-rc.8.tgz",
"integrity": "sha512-u+el3/RS7JOlPbu1xUNzfhNsMYFWVdcaSGEDPCrRI2m4/8Egik2uWEplNxakZYCfvhu2Orx3GO6JyEnaWJvvkw==",
"dependencies": {
"@chakra-ui/hooks": "1.0.0-rc.8",
"@chakra-ui/utils": "1.0.0-rc.8"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0-rc.5",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/input": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/input/-/input-1.0.0-rc.8.tgz",
"integrity": "sha512-FJtB9zwOf38GuhS5VGyLlCUFXHSl0OrCQbrwdKakIZz986o+6DGEShIczoifs0QniGKSsNXcLu3m2FX0QxWQmw==",
"dependencies": {
"@chakra-ui/form-control": "1.0.0-rc.8",
"@chakra-ui/utils": "1.0.0-rc.8"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0-rc.5",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/layout": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/layout/-/layout-1.0.0-rc.8.tgz",
"integrity": "sha512-nDocS9eW0f/dnSFtkMYa9aOSUkawbUSOJHmEMRmd696NW/cf8jYWifZPcSWJHqw1V8NR6MYgGLYJ/fgdlT/OGA==",
"dependencies": {
"@chakra-ui/icon": "1.0.0-rc.8",
"@chakra-ui/utils": "1.0.0-rc.8"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0-rc.5",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/live-region": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/live-region/-/live-region-1.0.0-rc.8.tgz",
"integrity": "sha512-QFOokqJJ5BrvaMG9EsyzKG/O4xIcGDk+P5+Otuuu8dtBV01e+lb/mXts4lTi+eXVgSOONMZNuLuhkZ0tYVNvmA==",
"dependencies": {
"@chakra-ui/utils": "1.0.0-rc.8"
},
"peerDependencies": {
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/media-query": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/media-query/-/media-query-1.0.0-rc.8.tgz",
"integrity": "sha512-q8pmT4kgxc9pHZ7qtKRxfdQbMLbZ14Z8AEEbTGy4oD7eZutmWn77zkx5cC4MN02pRFghndEqFKIh5Wr+X1KjCg==",
"dependencies": {
"@chakra-ui/utils": "1.0.0-rc.8"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0-rc.5",
"@chakra-ui/theme": ">=1.0.0-rc.5",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/menu": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/menu/-/menu-1.0.0-rc.8.tgz",
"integrity": "sha512-uIxetUTY9SoTihQqNJUpX4WnrRKBAAFbx7FqUjuASsTa8NRWEtp9DCFrrL3hQt2XJxkmxN29Y02cGdrJoymYJg==",
"dependencies": {
"@chakra-ui/clickable": "1.0.0-rc.8",
"@chakra-ui/descendant": "1.0.0-rc.8",
"@chakra-ui/hooks": "1.0.0-rc.8",
"@chakra-ui/popper": "1.0.0-rc.8",
"@chakra-ui/transition": "1.0.0-rc.8",
"@chakra-ui/utils": "1.0.0-rc.8"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0-rc.5",
"framer-motion": "^2.9.3",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/modal": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/modal/-/modal-1.0.0-rc.8.tgz",
"integrity": "sha512-qiRjRkYYl/ycfBKMCrXtbi0lZcjIzVdIVO2/HQluMg+N1XrfiRKLU5CQPUot6RO4DWUlUEA+i+7YtH8VrItoMg==",
"dependencies": {
"@chakra-ui/close-button": "1.0.0-rc.8",
"@chakra-ui/focus-lock": "1.0.0-rc.8",
"@chakra-ui/hooks": "1.0.0-rc.8",
"@chakra-ui/portal": "1.0.0-rc.8",
"@chakra-ui/transition": "1.0.0-rc.8",
"@chakra-ui/utils": "1.0.0-rc.8",
"aria-hidden": "^1.1.1",
"react-remove-scroll": "2.4.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0-rc.5",
"framer-motion": "2.x",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/number-input": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/number-input/-/number-input-1.0.0-rc.8.tgz",
"integrity": "sha512-kWo43cD2aj2svUXObbdzcfeR1d+7S9hbm6WOnrWVkxWaOgl+zQ+Lb++ZAaFiE9eul8nJqHxz+b1chfy8Ix+EjQ==",
"dependencies": {
"@chakra-ui/counter": "1.0.0-rc.8",
"@chakra-ui/hooks": "1.0.0-rc.8",
"@chakra-ui/icon": "1.0.0-rc.8",
"@chakra-ui/utils": "1.0.0-rc.8"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0-rc.5",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/pin-input": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/pin-input/-/pin-input-1.0.0-rc.8.tgz",
"integrity": "sha512-nJivIHAyptM4A+pgjq6ros/gern4VlbGTr+9x2D2aA6ullS3/W25TW0VR2+eI46ODfCtqitqwtiZuSUGYLJHWg==",
"dependencies": {
"@chakra-ui/descendant": "1.0.0-rc.8",
"@chakra-ui/hooks": "1.0.0-rc.8",
"@chakra-ui/utils": "1.0.0-rc.8"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0-rc.5",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/popover": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/popover/-/popover-1.0.0-rc.8.tgz",
"integrity": "sha512-wl7AOisR3JyHWo4kkAJvT9no4rEYFrSHsOrrf/0YM3P6vks5ajEDu5XVc4UAf+JAUatp1pqovuis/Fae20ds4Q==",
"dependencies": {
"@chakra-ui/close-button": "1.0.0-rc.8",
"@chakra-ui/hooks": "1.0.0-rc.8",
"@chakra-ui/popper": "1.0.0-rc.8",
"@chakra-ui/portal": "1.0.0-rc.8",
"@chakra-ui/transition": "1.0.0-rc.8",
"@chakra-ui/utils": "1.0.0-rc.8"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0-rc.5",
"framer-motion": "^2.9.3",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/popper": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/popper/-/popper-1.0.0-rc.8.tgz",
"integrity": "sha512-MAqCdf6/vLaJZr+YnRr9b1iceOdViM6TUnNKejLVQBEVunWxFQAqAlTWnatmqcjNaYO/pcd95lQ71TVqQdKmIw==",
"dependencies": {
"@chakra-ui/hooks": "1.0.0-rc.8",
"@chakra-ui/utils": "1.0.0-rc.8",
"@popperjs/core": "2.4.4",
"dequal": "2.0.2"
},
"peerDependencies": {
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/portal": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/portal/-/portal-1.0.0-rc.8.tgz",
"integrity": "sha512-jkDY7BawoupgIgEcYNS2X/wO7gSRappzqOfvAj0VxPMREvrQOclIBWoTLad5UAQJp+OP1BzAwPzpo79OC8IaYQ==",
"dependencies": {
"@chakra-ui/hooks": "1.0.0-rc.8",
"@chakra-ui/utils": "1.0.0-rc.8"
},
"peerDependencies": {
"react": "16.x || 17.x",
"react-dom": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/progress": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/progress/-/progress-1.0.0-rc.8.tgz",
"integrity": "sha512-rgo1A34tEAErzRTnmv8E+4bf2PVfka+Rm7nInBL/hptIa2JeC7YtwuiV20yBITJhwBYP2NTgF1S0KmINzpi61g==",
"dependencies": {
"@chakra-ui/theme-tools": "1.0.0-rc.8",
"@chakra-ui/utils": "1.0.0-rc.8"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0-rc.5",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/progress/node_modules/@chakra-ui/theme-tools": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/theme-tools/-/theme-tools-1.0.0-rc.8.tgz",
"integrity": "sha512-z9suTMHa+La8mpYKS3c601PMa9YMtZqJCucflPXqTvHog8YMJFgsw2nAV5hdtmE81L6z/qzhNxrS8W+uzXrmCQ==",
"dependencies": {
"@chakra-ui/utils": "1.0.0-rc.8",
"@types/tinycolor2": "1.4.2",
"tinycolor2": "1.4.1"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0-rc.5"
}
},
"node_modules/@chakra-ui/radio": {
"version": "1.0.0-rc.8",
"resolved": "https://registry.npmjs.org/@chakra-ui/radio/-/radio-1.0.0-rc.8.tgz",
"integrity": "sha512-ecsUP7rcUgVIlUHhkWmHYYe0DKymuOpEPKuzJkagDl425vKyg4Z9hPtHC0aFLesWD+wLcHwbpDUQTyrtuK7qow==",
"dependencies": {
"@chakra-ui/hooks": "1.0.0-rc.8",
"@chakra-ui/utils": "1.0.0-rc.8",
"@chakra-ui/visually-hidden": "1.0.0-rc.8"
},
"peerDependencies": {