-
Notifications
You must be signed in to change notification settings - Fork 10
/
package-lock.json
16281 lines (16281 loc) · 731 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": "with-typescript",
"version": "1.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "with-typescript",
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"@chakra-ui/icons": "^1.0.2",
"@chakra-ui/react": "^1.1.1",
"@emotion/react": "^11.1.4",
"@emotion/styled": "^11.0.0",
"framer-motion": "^3.1.4",
"lodash": "^4.17.20",
"next": "latest",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-icons": "^4.1.0"
},
"devDependencies": {
"@types/node": "^12.12.21",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"prettier": "^2.2.1",
"typescript": "4.0"
}
},
"node_modules/@ampproject/toolbox-core": {
"version": "2.7.4",
"resolved": "https://registry.npmjs.org/@ampproject/toolbox-core/-/toolbox-core-2.7.4.tgz",
"integrity": "sha512-qpBhcS4urB7IKc+jx2kksN7BuvvwCo7Y3IstapWo+EW+COY5EYAUwb2pil37v3TsaqHKgX//NloFP1SKzGZAnw==",
"dependencies": {
"cross-fetch": "3.0.6",
"lru-cache": "6.0.0"
}
},
"node_modules/@ampproject/toolbox-optimizer": {
"version": "2.7.1-alpha.0",
"resolved": "https://registry.npmjs.org/@ampproject/toolbox-optimizer/-/toolbox-optimizer-2.7.1-alpha.0.tgz",
"integrity": "sha512-WGPZKVQvHgNYJk1XVJCCmY+NVGTGJtvn0OALDyiegN4FJWOcilQUhCIcjMkZN59u1flz/u+sEKccM5qsROqVyg==",
"hasInstallScript": true,
"dependencies": {
"@ampproject/toolbox-core": "^2.7.1-alpha.0",
"@ampproject/toolbox-runtime-version": "^2.7.1-alpha.0",
"@ampproject/toolbox-script-csp": "^2.5.4",
"@ampproject/toolbox-validator-rules": "^2.7.1-alpha.0",
"abort-controller": "3.0.0",
"cross-fetch": "3.0.6",
"cssnano-simple": "1.2.1",
"dom-serializer": "1.1.0",
"domhandler": "3.3.0",
"domutils": "2.4.2",
"htmlparser2": "5.0.1",
"https-proxy-agent": "5.0.0",
"lru-cache": "6.0.0",
"node-fetch": "2.6.1",
"normalize-html-whitespace": "1.0.0",
"postcss": "7.0.32",
"postcss-safe-parser": "4.0.2",
"terser": "5.5.1"
},
"peerDependenciesMeta": {
"jimp": {
"optional": true
},
"probe-image-size": {
"optional": true
}
}
},
"node_modules/@ampproject/toolbox-optimizer/node_modules/postcss": {
"version": "7.0.32",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz",
"integrity": "sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==",
"dependencies": {
"chalk": "^2.4.2",
"source-map": "^0.6.1",
"supports-color": "^6.1.0"
},
"engines": {
"node": ">=6.0.0"
},
"funding": {
"type": "tidelift",
"url": "https://tidelift.com/funding/github/npm/postcss"
}
},
"node_modules/@ampproject/toolbox-optimizer/node_modules/source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@ampproject/toolbox-optimizer/node_modules/supports-color": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
"integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
"dependencies": {
"has-flag": "^3.0.0"
},
"engines": {
"node": ">=6"
}
},
"node_modules/@ampproject/toolbox-runtime-version": {
"version": "2.7.4",
"resolved": "https://registry.npmjs.org/@ampproject/toolbox-runtime-version/-/toolbox-runtime-version-2.7.4.tgz",
"integrity": "sha512-SAdOUOERp42thVNWaBJlnFvFVvnacMVnz5z9LyUZHSnoL1EqrAW5Sz5jv+Ly+gkA8NYsEaUxAdSCBAzE9Uzb4Q==",
"dependencies": {
"@ampproject/toolbox-core": "2.7.4"
}
},
"node_modules/@ampproject/toolbox-script-csp": {
"version": "2.5.4",
"resolved": "https://registry.npmjs.org/@ampproject/toolbox-script-csp/-/toolbox-script-csp-2.5.4.tgz",
"integrity": "sha512-+knTYetI5nWllRZ9wFcj7mYxelkiiFVRAAW/hl0ad8EnKHMH82tRlk40CapEnUHhp6Er5sCYkumQ8dngs3Q4zQ=="
},
"node_modules/@ampproject/toolbox-validator-rules": {
"version": "2.7.4",
"resolved": "https://registry.npmjs.org/@ampproject/toolbox-validator-rules/-/toolbox-validator-rules-2.7.4.tgz",
"integrity": "sha512-z3JRcpIZLLdVC9XVe7YTZuB3a/eR9s2SjElYB9AWRdyJyL5Jt7+pGNv4Uwh1uHVoBXsWEVQzNOWSNtrO3mSwZA==",
"dependencies": {
"cross-fetch": "3.0.6"
}
},
"node_modules/@babel/code-frame": {
"version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
"integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==",
"dependencies": {
"@babel/highlight": "^7.10.4"
}
},
"node_modules/@babel/core": {
"version": "7.12.10",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.10.tgz",
"integrity": "sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w==",
"peer": true,
"dependencies": {
"@babel/code-frame": "^7.10.4",
"@babel/generator": "^7.12.10",
"@babel/helper-module-transforms": "^7.12.1",
"@babel/helpers": "^7.12.5",
"@babel/parser": "^7.12.10",
"@babel/template": "^7.12.7",
"@babel/traverse": "^7.12.10",
"@babel/types": "^7.12.10",
"convert-source-map": "^1.7.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.1",
"json5": "^2.1.2",
"lodash": "^4.17.19",
"semver": "^5.4.1",
"source-map": "^0.5.0"
},
"engines": {
"node": ">=6.9.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/babel"
}
},
"node_modules/@babel/core/node_modules/@babel/types": {
"version": "7.12.12",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
"integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
"peer": true,
"dependencies": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
"node_modules/@babel/core/node_modules/semver": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
"integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
"peer": true,
"bin": {
"semver": "bin/semver"
}
},
"node_modules/@babel/core/node_modules/source-map": {
"version": "0.5.7",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
"integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
"peer": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@babel/generator": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz",
"integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==",
"peer": true,
"dependencies": {
"@babel/types": "^7.12.11",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
},
"node_modules/@babel/generator/node_modules/@babel/types": {
"version": "7.12.12",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
"integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
"peer": true,
"dependencies": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.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=",
"peer": true,
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@babel/helper-function-name": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz",
"integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==",
"peer": true,
"dependencies": {
"@babel/helper-get-function-arity": "^7.12.10",
"@babel/template": "^7.12.7",
"@babel/types": "^7.12.11"
}
},
"node_modules/@babel/helper-function-name/node_modules/@babel/types": {
"version": "7.12.12",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
"integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
"peer": true,
"dependencies": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
"node_modules/@babel/helper-get-function-arity": {
"version": "7.12.10",
"resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz",
"integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==",
"peer": true,
"dependencies": {
"@babel/types": "^7.12.10"
}
},
"node_modules/@babel/helper-get-function-arity/node_modules/@babel/types": {
"version": "7.12.12",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
"integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
"peer": true,
"dependencies": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
"node_modules/@babel/helper-member-expression-to-functions": {
"version": "7.12.7",
"resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz",
"integrity": "sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==",
"peer": true,
"dependencies": {
"@babel/types": "^7.12.7"
}
},
"node_modules/@babel/helper-member-expression-to-functions/node_modules/@babel/types": {
"version": "7.12.12",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
"integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
"peer": true,
"dependencies": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
"node_modules/@babel/helper-module-imports": {
"version": "7.12.5",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
"integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
"dependencies": {
"@babel/types": "^7.12.5"
}
},
"node_modules/@babel/helper-module-imports/node_modules/@babel/types": {
"version": "7.12.12",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
"integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
"node_modules/@babel/helper-module-transforms": {
"version": "7.12.1",
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz",
"integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==",
"peer": true,
"dependencies": {
"@babel/helper-module-imports": "^7.12.1",
"@babel/helper-replace-supers": "^7.12.1",
"@babel/helper-simple-access": "^7.12.1",
"@babel/helper-split-export-declaration": "^7.11.0",
"@babel/helper-validator-identifier": "^7.10.4",
"@babel/template": "^7.10.4",
"@babel/traverse": "^7.12.1",
"@babel/types": "^7.12.1",
"lodash": "^4.17.19"
}
},
"node_modules/@babel/helper-module-transforms/node_modules/@babel/types": {
"version": "7.12.12",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
"integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
"peer": true,
"dependencies": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
"node_modules/@babel/helper-optimise-call-expression": {
"version": "7.12.10",
"resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.10.tgz",
"integrity": "sha512-4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ==",
"peer": true,
"dependencies": {
"@babel/types": "^7.12.10"
}
},
"node_modules/@babel/helper-optimise-call-expression/node_modules/@babel/types": {
"version": "7.12.12",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
"integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
"peer": true,
"dependencies": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
"node_modules/@babel/helper-plugin-utils": {
"version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz",
"integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg=="
},
"node_modules/@babel/helper-replace-supers": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.11.tgz",
"integrity": "sha512-q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA==",
"peer": true,
"dependencies": {
"@babel/helper-member-expression-to-functions": "^7.12.7",
"@babel/helper-optimise-call-expression": "^7.12.10",
"@babel/traverse": "^7.12.10",
"@babel/types": "^7.12.11"
}
},
"node_modules/@babel/helper-replace-supers/node_modules/@babel/types": {
"version": "7.12.12",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
"integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
"peer": true,
"dependencies": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
"node_modules/@babel/helper-simple-access": {
"version": "7.12.1",
"resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz",
"integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==",
"peer": true,
"dependencies": {
"@babel/types": "^7.12.1"
}
},
"node_modules/@babel/helper-simple-access/node_modules/@babel/types": {
"version": "7.12.12",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
"integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
"peer": true,
"dependencies": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
"node_modules/@babel/helper-split-export-declaration": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz",
"integrity": "sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==",
"peer": true,
"dependencies": {
"@babel/types": "^7.12.11"
}
},
"node_modules/@babel/helper-split-export-declaration/node_modules/@babel/types": {
"version": "7.12.12",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
"integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
"peer": true,
"dependencies": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.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/helpers": {
"version": "7.12.5",
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz",
"integrity": "sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==",
"peer": true,
"dependencies": {
"@babel/template": "^7.10.4",
"@babel/traverse": "^7.12.5",
"@babel/types": "^7.12.5"
}
},
"node_modules/@babel/helpers/node_modules/@babel/types": {
"version": "7.12.12",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
"integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
"peer": true,
"dependencies": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
"node_modules/@babel/highlight": {
"version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
"integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.10.4",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
}
},
"node_modules/@babel/parser": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz",
"integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==",
"peer": true,
"bin": {
"parser": "bin/babel-parser.js"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/plugin-syntax-jsx": {
"version": "7.12.1",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.1.tgz",
"integrity": "sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.10.4"
},
"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/template": {
"version": "7.12.7",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz",
"integrity": "sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==",
"peer": true,
"dependencies": {
"@babel/code-frame": "^7.10.4",
"@babel/parser": "^7.12.7",
"@babel/types": "^7.12.7"
}
},
"node_modules/@babel/template/node_modules/@babel/types": {
"version": "7.12.12",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
"integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
"peer": true,
"dependencies": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
"node_modules/@babel/traverse": {
"version": "7.12.12",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.12.tgz",
"integrity": "sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w==",
"peer": true,
"dependencies": {
"@babel/code-frame": "^7.12.11",
"@babel/generator": "^7.12.11",
"@babel/helper-function-name": "^7.12.11",
"@babel/helper-split-export-declaration": "^7.12.11",
"@babel/parser": "^7.12.11",
"@babel/types": "^7.12.12",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
}
},
"node_modules/@babel/traverse/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==",
"peer": true,
"dependencies": {
"@babel/highlight": "^7.10.4"
}
},
"node_modules/@babel/traverse/node_modules/@babel/types": {
"version": "7.12.12",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
"integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
"peer": true,
"dependencies": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
"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.0.3",
"resolved": "https://registry.npmjs.org/@chakra-ui/accordion/-/accordion-1.0.3.tgz",
"integrity": "sha512-pLujWZm89u8NNgEKh2rITKweyUlo3CPu681XKHg+DjPfvebVQvFsI13lApwHMXonD91WlZITHAZ1PVAIXvJgKQ==",
"dependencies": {
"@chakra-ui/descendant": "1.0.2",
"@chakra-ui/hooks": "1.0.2",
"@chakra-ui/icon": "1.0.2",
"@chakra-ui/transition": "1.0.3",
"@chakra-ui/utils": "1.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/alert": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@chakra-ui/alert/-/alert-1.0.3.tgz",
"integrity": "sha512-dU+NeiqB40BmYvB4mIJpL1EpB2c479/l7EtbNR/Ne1NoUzUYnDykPYourDIcHIpYQ3KCduhe3KGELH0JZTT4WA==",
"dependencies": {
"@chakra-ui/icon": "1.0.2",
"@chakra-ui/utils": "1.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/avatar": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@chakra-ui/avatar/-/avatar-1.0.2.tgz",
"integrity": "sha512-yP+ZG3Lb51lSugoja2LCF0GvjL2S1S7/SqTchOi9cxoF3fG70aXhvGZVcJZiSkKdFxg+BKDx23tpx6IIWcmkvg==",
"dependencies": {
"@chakra-ui/image": "1.0.2",
"@chakra-ui/utils": "1.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/breadcrumb": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@chakra-ui/breadcrumb/-/breadcrumb-1.0.2.tgz",
"integrity": "sha512-4HNcg1QBCLSBQ+5FajOh/hmq/KklhErWO8nUrZx5yuQcqKxUROI0MfceMCt4RCuIjdUMjGsXrpn2mSI8kIf9XQ==",
"dependencies": {
"@chakra-ui/utils": "1.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/button": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@chakra-ui/button/-/button-1.0.3.tgz",
"integrity": "sha512-LEylUfAPEBlt2coLfxYjaJ9U1D9LN8LKvz0jnfXxrWIVyWpiWU0a6Kqm0rLUHzZv15abwNz23btfP52vTF3mvw==",
"dependencies": {
"@chakra-ui/spinner": "1.0.2",
"@chakra-ui/utils": "1.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/checkbox": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/checkbox/-/checkbox-1.1.0.tgz",
"integrity": "sha512-MGsdny0rMdww4fh3xS3iyXx+FVQzMda4lpYnmjm6prlUv7Jv6vEkumDRkAJTWulJzkHl+fvD5jC4jNKh+3zGNg==",
"dependencies": {
"@chakra-ui/hooks": "1.0.2",
"@chakra-ui/utils": "1.0.2",
"@chakra-ui/visually-hidden": "1.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"framer-motion": ">=3.0.0",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/clickable": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@chakra-ui/clickable/-/clickable-1.0.2.tgz",
"integrity": "sha512-fNfw+t+oRpxrDFA7WXCYSo2KkQprnZPYQhUTCwLtUMpwkALUZT/C+GBUsY5vm21EUmzPZONteNFdR0KBfxFNwQ==",
"dependencies": {
"@chakra-ui/utils": "1.0.2"
},
"peerDependencies": {
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/close-button": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@chakra-ui/close-button/-/close-button-1.0.3.tgz",
"integrity": "sha512-pI9XfYsxSwsAthf6Tp0FTEjCd1X/lRMCwIfoq93rcqw5o9zUvUKQo+y7/AwxxlF4Scrp9x292mqjvH1qCNouaA==",
"dependencies": {
"@chakra-ui/icon": "1.0.2",
"@chakra-ui/utils": "1.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/color-mode": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@chakra-ui/color-mode/-/color-mode-1.0.2.tgz",
"integrity": "sha512-n4F1xvbHL+YmNrDo16GOgkF+Rgc2awmn7oAPnJZNPyjOoyBghgEdLu7K+1xM14xpo87nX92sVyGMr1/1UbJq2g==",
"dependencies": {
"@chakra-ui/hooks": "1.0.2",
"@chakra-ui/utils": "1.0.2"
},
"peerDependencies": {
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/control-box": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@chakra-ui/control-box/-/control-box-1.0.2.tgz",
"integrity": "sha512-YQE4GasvtZn+aJEQHkch+wp0LySrlBHgBRjdw3y8/FbwAPGOH4KYr3HXre2VqWwfp27M1A+1k7ud6n4wcfjJ1A==",
"dependencies": {
"@chakra-ui/utils": "1.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/counter": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@chakra-ui/counter/-/counter-1.0.2.tgz",
"integrity": "sha512-BRqRsiaKcTOpaW10vOgz0boO6EtWxSG+/Uoct6rceeMkDEdeilvVy0PsWso3wT+IieL9SHZAnvQ90lAuDu2aWg==",
"dependencies": {
"@chakra-ui/hooks": "1.0.2",
"@chakra-ui/utils": "1.0.2"
},
"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.2",
"resolved": "https://registry.npmjs.org/@chakra-ui/descendant/-/descendant-1.0.2.tgz",
"integrity": "sha512-QkTguL7IWX/HRTmKFsMTJtd94kJ1HkumrxqtptL402ZHavM0jRHyGYEUeGpXg5SUmfNFxPm05vYFdbr9/F2ylQ==",
"dependencies": {
"@chakra-ui/hooks": "1.0.2"
},
"peerDependencies": {
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/editable": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@chakra-ui/editable/-/editable-1.0.2.tgz",
"integrity": "sha512-prWiYvHo5xvTlwtF+O8RQkcYjtLNhBbw/eR4naLtu5+u5B0Z3cETPPrgZeccW1DPevvWBKdSn/RCd4lm06IONw==",
"dependencies": {
"@chakra-ui/hooks": "1.0.2",
"@chakra-ui/utils": "1.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/focus-lock": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@chakra-ui/focus-lock/-/focus-lock-1.0.2.tgz",
"integrity": "sha512-nArORkn3ygWuruS/Wz/LzULqf3nN95xPZpuQaJWFjkTQoIFd7ntFwzluPeIpw41z7jSvONDPMo4OMbmVX6EiyQ==",
"dependencies": {
"@chakra-ui/utils": "1.0.2",
"react-focus-lock": "2.4.1"
},
"peerDependencies": {
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/form-control": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/form-control/-/form-control-1.1.0.tgz",
"integrity": "sha512-kpfpgf9JWwSyQ89o0hIZmQHTsoimLNBZb9I9XQNiXTxEB/eYViVYcIsmSPD8xeyUq7S+wbZV0tLuxAboTNTSrA==",
"dependencies": {
"@chakra-ui/hooks": "1.0.2",
"@chakra-ui/icon": "1.0.2",
"@chakra-ui/utils": "1.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/hooks": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@chakra-ui/hooks/-/hooks-1.0.2.tgz",
"integrity": "sha512-YDLzpa778C/bwrbky+svqN9zplK2ayZqEIOC9TNRFvtN3u8bfn2iWWnrmk4Qad8BNxpAaJOeN8QxkrP+REuDiQ==",
"dependencies": {
"@chakra-ui/utils": "1.0.2",
"@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.2",
"resolved": "https://registry.npmjs.org/@chakra-ui/icon/-/icon-1.0.2.tgz",
"integrity": "sha512-iLuAaa8vAqVLCejl9+xn8ZKvr7axuS+4CrwIlTW/ta0rL76JZTH/b9w4/EpPVdzTXHk08Vae545YrDyy9shn2g==",
"dependencies": {
"@chakra-ui/utils": "1.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/icons": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@chakra-ui/icons/-/icons-1.0.2.tgz",
"integrity": "sha512-6gPoIi8KHZI8kiWQBlOuxcZOJv6xouYI4sLX23WP2QZdTsplF9qCyZMXhbg8MHTk0YYdb0i2m/t6Y+9OcDjohA==",
"dependencies": {
"@chakra-ui/icon": "1.0.2",
"@types/react": "17.0.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/icons/node_modules/@types/react": {
"version": "17.0.0",
"resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.0.tgz",
"integrity": "sha512-aj/L7RIMsRlWML3YB6KZiXB3fV2t41+5RBGYF8z+tAKU43Px8C3cYUZsDvf1/+Bm4FK21QWBrDutu8ZJ/70qOw==",
"dependencies": {
"@types/prop-types": "*",
"csstype": "^3.0.2"
}
},
"node_modules/@chakra-ui/image": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@chakra-ui/image/-/image-1.0.2.tgz",
"integrity": "sha512-14AZAc3thk7dDXrrP9KPEsyTREiy/LsDBnkYLBILRsFNCRtx7wW1YhXTNKLcQniO0Qb7I3cuAw+gxyNtBvvXVA==",
"dependencies": {
"@chakra-ui/hooks": "1.0.2",
"@chakra-ui/utils": "1.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/input": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@chakra-ui/input/-/input-1.0.3.tgz",
"integrity": "sha512-DQoBQlc3KbOZvQjhuy0Bi1Fp5SLGgGQYEM1NNfuq/30yX/cfTYELL1cMP6nY3ZcsEh3OCglikTFSUcPX3K9k6g==",
"dependencies": {
"@chakra-ui/form-control": "1.1.0",
"@chakra-ui/utils": "1.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/layout": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@chakra-ui/layout/-/layout-1.1.2.tgz",
"integrity": "sha512-wVc6miUkriXeamFw3Ru4+i+PC7kFMhZxQjzvvoQ0f+KVkvyDbqM1tui8/B6ISAmwtbMy08wbqxQ8Y/sYHDUIIA==",
"dependencies": {
"@chakra-ui/icon": "1.0.2",
"@chakra-ui/utils": "1.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/live-region": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@chakra-ui/live-region/-/live-region-1.0.2.tgz",
"integrity": "sha512-W4xL/IMrGq/bHgyr0QNUbrTLD1wCzmMmc8o71bfWgBKqEwEWS20VyjHu96Qja4tXDbYWFLC2iJiuDMWEI1qnzA==",
"dependencies": {
"@chakra-ui/utils": "1.0.2"
},
"peerDependencies": {
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/media-query": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@chakra-ui/media-query/-/media-query-1.0.2.tgz",
"integrity": "sha512-rhKO7ad5cw791rhJkeEt3EMVzn6hFec8Ors7iFYchItrXGpT9e1N/OKQFqkUbM4eZCAuDSvZV+Gih0Vx27y7Kw==",
"dependencies": {
"@chakra-ui/utils": "1.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"@chakra-ui/theme": ">=1.0.0",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/menu": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@chakra-ui/menu/-/menu-1.0.3.tgz",
"integrity": "sha512-znOt6FRCA+gRsvKskgjKUa97wn0jieCNWDhdroZ6jmNbV+LFEb2cWGDgv1VqbRPPkf7rLpQ52c45aCQ0ONVMwQ==",
"dependencies": {
"@chakra-ui/clickable": "1.0.2",
"@chakra-ui/descendant": "1.0.2",
"@chakra-ui/hooks": "1.0.2",
"@chakra-ui/popper": "1.0.2",
"@chakra-ui/transition": "1.0.3",
"@chakra-ui/utils": "1.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"framer-motion": ">=3.0.0",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/modal": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@chakra-ui/modal/-/modal-1.4.0.tgz",
"integrity": "sha512-uZJVFgLH0H+pICsHgKuH7mF3E93J0y2lJRyLA658bXi8L9i7WrCKM+aJ18DNHqK5VIIkr7ePXIM7XL1NWHV0sw==",
"dependencies": {
"@chakra-ui/close-button": "1.0.3",
"@chakra-ui/focus-lock": "1.0.2",
"@chakra-ui/hooks": "1.0.2",
"@chakra-ui/portal": "1.0.2",
"@chakra-ui/transition": "1.0.3",
"@chakra-ui/utils": "1.0.2",
"aria-hidden": "^1.1.1",
"react-remove-scroll": "2.4.0"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"framer-motion": ">=3.0.0",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/number-input": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@chakra-ui/number-input/-/number-input-1.0.3.tgz",
"integrity": "sha512-9InDDQO5UjprFVfekj5+8A4v0kURuBuUJyKGtQqKn9S0JqkYikzvAU543UuRb2pze96qqoEemDFleSqPjdLfUA==",
"dependencies": {
"@chakra-ui/counter": "1.0.2",
"@chakra-ui/form-control": "1.1.0",
"@chakra-ui/hooks": "1.0.2",
"@chakra-ui/icon": "1.0.2",
"@chakra-ui/utils": "1.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/pin-input": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@chakra-ui/pin-input/-/pin-input-1.1.2.tgz",
"integrity": "sha512-Pr0uIWo0aVN/N4AlU5+6ky6EzQGb8im41LqG90JqC7HA7rpwraaUQGvpD79Zm/uODGML1yYbTJ4URjFt5FsYHw==",
"dependencies": {
"@chakra-ui/descendant": "1.0.2",
"@chakra-ui/hooks": "1.0.2",
"@chakra-ui/utils": "1.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/popover": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/@chakra-ui/popover/-/popover-1.0.4.tgz",
"integrity": "sha512-at1wEDMgp5fpDs+vwfJw+YMgchGjv089XUeFkGBqSeL3JY5k2HFWQP28yrAxSHmuBtadI5T6LfIaXthfJQzzWg==",
"dependencies": {
"@chakra-ui/close-button": "1.0.3",
"@chakra-ui/hooks": "1.0.2",
"@chakra-ui/popper": "1.0.2",
"@chakra-ui/portal": "1.0.2",
"@chakra-ui/transition": "1.0.3",
"@chakra-ui/utils": "1.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"framer-motion": ">=3.0.0",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/popper": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@chakra-ui/popper/-/popper-1.0.2.tgz",
"integrity": "sha512-a2cX8EA/P49C6WeEVDwH2m7hyX8leaa/U77w8oK2pizmWbExJfx2sBtFQjwVpbOXxavlQLBW5jGESDcpelccEA==",
"dependencies": {
"@chakra-ui/hooks": "1.0.2",
"@chakra-ui/utils": "1.0.2",
"@popperjs/core": "2.4.4",
"dequal": "2.0.2"
},
"peerDependencies": {
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/portal": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@chakra-ui/portal/-/portal-1.0.2.tgz",
"integrity": "sha512-Nh9tOtpPsFqtpJ0FCk9PBm4TIydLPUtTkZYfShsEwuuxme92HwFjdkR6JKyvb9v+6ogMBYMPO6wLD/KyUHG5Wg==",
"dependencies": {
"@chakra-ui/hooks": "1.0.2",
"@chakra-ui/utils": "1.0.2"
},
"peerDependencies": {
"react": "16.x || 17.x",
"react-dom": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/progress": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@chakra-ui/progress/-/progress-1.0.2.tgz",
"integrity": "sha512-A5Iuk5mc5ARXjyfvy98xfHg2Mzmh3UTNq9YQEbtLlGt1MCybzZP2cvROyk7gmTdqAiKmuZInCUeO7kcXCCQK/Q==",
"dependencies": {
"@chakra-ui/theme-tools": "1.0.2",
"@chakra-ui/utils": "1.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=1.0.0",
"react": "16.x || 17.x"
}
},
"node_modules/@chakra-ui/radio": {