forked from NextJSTemplates/startup-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
10878 lines (9415 loc) · 446 KB
/
yarn.lock
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
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@ampproject/remapping@^2.1.0":
"integrity" "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w=="
"resolved" "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz"
"version" "2.2.0"
dependencies:
"@jridgewell/gen-mapping" "^0.1.0"
"@jridgewell/trace-mapping" "^0.3.9"
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.18.6":
"integrity" "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/highlight" "^7.18.6"
"@babel/compat-data@^7.20.5":
"integrity" "sha512-0YpKHD6ImkWMEINCyDAD0HLLUH/lPCefG8ld9it8DJB2wnApraKuhgYTvTY1z7UFIfBTGy5LwncZ+5HWWGbhFw=="
"resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.14.tgz"
"version" "7.20.14"
"@babel/core@^7.0.0":
"integrity" "sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.20.12.tgz"
"version" "7.20.12"
dependencies:
"@ampproject/remapping" "^2.1.0"
"@babel/code-frame" "^7.18.6"
"@babel/generator" "^7.20.7"
"@babel/helper-compilation-targets" "^7.20.7"
"@babel/helper-module-transforms" "^7.20.11"
"@babel/helpers" "^7.20.7"
"@babel/parser" "^7.20.7"
"@babel/template" "^7.20.7"
"@babel/traverse" "^7.20.12"
"@babel/types" "^7.20.7"
"convert-source-map" "^1.7.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.2.2"
"semver" "^6.3.0"
"@babel/generator@^7.20.7":
"integrity" "sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.20.14.tgz"
"version" "7.20.14"
dependencies:
"@babel/types" "^7.20.7"
"@jridgewell/gen-mapping" "^0.3.2"
"jsesc" "^2.5.1"
"@babel/helper-compilation-targets@^7.20.7":
"integrity" "sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz"
"version" "7.20.7"
dependencies:
"@babel/compat-data" "^7.20.5"
"@babel/helper-validator-option" "^7.18.6"
"browserslist" "^4.21.3"
"lru-cache" "^5.1.1"
"semver" "^6.3.0"
"@babel/helper-environment-visitor@^7.18.9":
"integrity" "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg=="
"resolved" "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz"
"version" "7.18.9"
"@babel/helper-function-name@^7.19.0":
"integrity" "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w=="
"resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz"
"version" "7.19.0"
dependencies:
"@babel/template" "^7.18.10"
"@babel/types" "^7.19.0"
"@babel/helper-hoist-variables@^7.18.6":
"integrity" "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q=="
"resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/types" "^7.18.6"
"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.16.7", "@babel/helper-module-imports@^7.18.6":
"integrity" "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/types" "^7.18.6"
"@babel/helper-module-transforms@^7.20.11":
"integrity" "sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz"
"version" "7.20.11"
dependencies:
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-module-imports" "^7.18.6"
"@babel/helper-simple-access" "^7.20.2"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/helper-validator-identifier" "^7.19.1"
"@babel/template" "^7.20.7"
"@babel/traverse" "^7.20.10"
"@babel/types" "^7.20.7"
"@babel/helper-simple-access@^7.20.2":
"integrity" "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA=="
"resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz"
"version" "7.20.2"
dependencies:
"@babel/types" "^7.20.2"
"@babel/helper-split-export-declaration@^7.18.6":
"integrity" "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA=="
"resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/types" "^7.18.6"
"@babel/helper-string-parser@^7.19.4":
"integrity" "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw=="
"resolved" "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz"
"version" "7.19.4"
"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1":
"integrity" "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz"
"version" "7.19.1"
"@babel/helper-validator-option@^7.18.6":
"integrity" "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz"
"version" "7.18.6"
"@babel/helpers@^7.20.7":
"integrity" "sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg=="
"resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.13.tgz"
"version" "7.20.13"
dependencies:
"@babel/template" "^7.20.7"
"@babel/traverse" "^7.20.13"
"@babel/types" "^7.20.7"
"@babel/highlight@^7.18.6":
"integrity" "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-validator-identifier" "^7.18.6"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/parser@^7.20.13", "@babel/parser@^7.20.7":
"integrity" "sha512-DI4a1oZuf8wC+oAJA9RW6ga3Zbe8RZFt7kD9i4qAspz3I/yHet1VvC3DiSy/fsUvv5pvJuNPh0LPOdCcqinDPg=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.20.15.tgz"
"version" "7.20.15"
"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.2", "@babel/runtime@^7.12.0", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.15.4", "@babel/runtime@^7.18.3", "@babel/runtime@^7.2.0", "@babel/runtime@^7.20.1", "@babel/runtime@^7.20.7", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.2", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2":
"integrity" "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz"
"version" "7.20.13"
dependencies:
"regenerator-runtime" "^0.13.11"
"@babel/template@^7.18.10", "@babel/template@^7.20.7":
"integrity" "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw=="
"resolved" "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz"
"version" "7.20.7"
dependencies:
"@babel/code-frame" "^7.18.6"
"@babel/parser" "^7.20.7"
"@babel/types" "^7.20.7"
"@babel/traverse@^7.20.10", "@babel/traverse@^7.20.12", "@babel/traverse@^7.20.13":
"integrity" "sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.13.tgz"
"version" "7.20.13"
dependencies:
"@babel/code-frame" "^7.18.6"
"@babel/generator" "^7.20.7"
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-function-name" "^7.19.0"
"@babel/helper-hoist-variables" "^7.18.6"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/parser" "^7.20.13"
"@babel/types" "^7.20.7"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.20.2", "@babel/types@^7.20.7":
"integrity" "sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.20.7.tgz"
"version" "7.20.7"
dependencies:
"@babel/helper-string-parser" "^7.19.4"
"@babel/helper-validator-identifier" "^7.19.1"
"to-fast-properties" "^2.0.0"
"@blakeembrey/deque@^1.0.5":
"integrity" "sha512-6xnwtvp9DY1EINIKdTfvfeAtCYw4OqBZJhtiqkT3ivjnEfa25VQ3TsKvaFfKm8MyGIEfE95qLe+bNEt3nB0Ylg=="
"resolved" "https://registry.npmjs.org/@blakeembrey/deque/-/deque-1.0.5.tgz"
"version" "1.0.5"
"@blakeembrey/template@^1.0.0":
"integrity" "sha512-iZf+UWfL+DogJVpd/xMQyP6X6McYd6ArdYoPMiv/zlOTzeXXfQbYxBNJJBF6tThvsjLMbA8tLjkCdm9RWMFCCw=="
"resolved" "https://registry.npmjs.org/@blakeembrey/template/-/template-1.1.0.tgz"
"version" "1.1.0"
"@emotion/babel-plugin@^11.10.6":
"integrity" "sha512-p2dAqtVrkhSa7xz1u/m9eHYdLi+en8NowrmXeF/dKtJpU8lCWli8RUAati7NcSl0afsBott48pdnANuD0wh9QQ=="
"resolved" "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.10.6.tgz"
"version" "11.10.6"
dependencies:
"@babel/helper-module-imports" "^7.16.7"
"@babel/runtime" "^7.18.3"
"@emotion/hash" "^0.9.0"
"@emotion/memoize" "^0.8.0"
"@emotion/serialize" "^1.1.1"
"babel-plugin-macros" "^3.1.0"
"convert-source-map" "^1.5.0"
"escape-string-regexp" "^4.0.0"
"find-root" "^1.1.0"
"source-map" "^0.5.7"
"stylis" "4.1.3"
"@emotion/cache@^10.0.27":
"integrity" "sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ=="
"resolved" "https://registry.npmjs.org/@emotion/cache/-/cache-10.0.29.tgz"
"version" "10.0.29"
dependencies:
"@emotion/sheet" "0.9.4"
"@emotion/stylis" "0.8.5"
"@emotion/utils" "0.11.3"
"@emotion/weak-memoize" "0.2.5"
"@emotion/cache@^11.10.5":
"integrity" "sha512-dGYHWyzTdmK+f2+EnIGBpkz1lKc4Zbj2KHd4cX3Wi8/OWr5pKslNjc3yABKH4adRGCvSX4VDC0i04mrrq0aiRA=="
"resolved" "https://registry.npmjs.org/@emotion/cache/-/cache-11.10.5.tgz"
"version" "11.10.5"
dependencies:
"@emotion/memoize" "^0.8.0"
"@emotion/sheet" "^1.2.1"
"@emotion/utils" "^1.2.0"
"@emotion/weak-memoize" "^0.3.0"
"stylis" "4.1.3"
"@emotion/cache@^11.4.0":
"integrity" "sha512-dGYHWyzTdmK+f2+EnIGBpkz1lKc4Zbj2KHd4cX3Wi8/OWr5pKslNjc3yABKH4adRGCvSX4VDC0i04mrrq0aiRA=="
"resolved" "https://registry.npmjs.org/@emotion/cache/-/cache-11.10.5.tgz"
"version" "11.10.5"
dependencies:
"@emotion/memoize" "^0.8.0"
"@emotion/sheet" "^1.2.1"
"@emotion/utils" "^1.2.0"
"@emotion/weak-memoize" "^0.3.0"
"stylis" "4.1.3"
"@emotion/core@^10.0.27", "@emotion/core@^10.0.28", "@emotion/core@^10.0.35", "@emotion/core@^10.0.9":
"integrity" "sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww=="
"resolved" "https://registry.npmjs.org/@emotion/core/-/core-10.3.1.tgz"
"version" "10.3.1"
dependencies:
"@babel/runtime" "^7.5.5"
"@emotion/cache" "^10.0.27"
"@emotion/css" "^10.0.27"
"@emotion/serialize" "^0.11.15"
"@emotion/sheet" "0.9.4"
"@emotion/utils" "0.11.3"
"@emotion/css@^10.0.27":
"integrity" "sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw=="
"resolved" "https://registry.npmjs.org/@emotion/css/-/css-10.0.27.tgz"
"version" "10.0.27"
dependencies:
"@emotion/serialize" "^0.11.15"
"@emotion/utils" "0.11.3"
"babel-plugin-emotion" "^10.0.27"
"@emotion/hash@^0.9.0":
"integrity" "sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ=="
"resolved" "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.0.tgz"
"version" "0.9.0"
"@emotion/[email protected]":
"integrity" "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow=="
"resolved" "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz"
"version" "0.8.0"
"@emotion/[email protected]":
"integrity" "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA=="
"resolved" "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz"
"version" "0.8.8"
dependencies:
"@emotion/memoize" "0.7.4"
"@emotion/memoize@^0.8.0":
"integrity" "sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA=="
"resolved" "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.0.tgz"
"version" "0.8.0"
"@emotion/[email protected]":
"integrity" "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw=="
"resolved" "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz"
"version" "0.7.4"
"@emotion/react@^11.1.1":
"integrity" "sha512-6HT8jBmcSkfzO7mc+N1L9uwvOnlcGoix8Zn7srt+9ga0MjREo6lRpuVX0kzo6Jp6oTqDhREOFsygN6Ew4fEQbw=="
"resolved" "https://registry.npmjs.org/@emotion/react/-/react-11.10.6.tgz"
"version" "11.10.6"
dependencies:
"@babel/runtime" "^7.18.3"
"@emotion/babel-plugin" "^11.10.6"
"@emotion/cache" "^11.10.5"
"@emotion/serialize" "^1.1.1"
"@emotion/use-insertion-effect-with-fallbacks" "^1.0.0"
"@emotion/utils" "^1.2.0"
"@emotion/weak-memoize" "^0.3.0"
"hoist-non-react-statics" "^3.3.1"
"@emotion/serialize@^0.11.15", "@emotion/serialize@^0.11.16":
"integrity" "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg=="
"resolved" "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz"
"version" "0.11.16"
dependencies:
"@emotion/hash" "0.8.0"
"@emotion/memoize" "0.7.4"
"@emotion/unitless" "0.7.5"
"@emotion/utils" "0.11.3"
"csstype" "^2.5.7"
"@emotion/serialize@^1.1.1":
"integrity" "sha512-Zl/0LFggN7+L1liljxXdsVSVlg6E/Z/olVWpfxUTxOAmi8NU7YoeWeLfi1RmnB2TATHoaWwIBRoL+FvAJiTUQA=="
"resolved" "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.1.tgz"
"version" "1.1.1"
dependencies:
"@emotion/hash" "^0.9.0"
"@emotion/memoize" "^0.8.0"
"@emotion/unitless" "^0.8.0"
"@emotion/utils" "^1.2.0"
"csstype" "^3.0.2"
"@emotion/sheet@^1.2.1":
"integrity" "sha512-zxRBwl93sHMsOj4zs+OslQKg/uhF38MB+OMKoCrVuS0nyTkqnau+BM3WGEoOptg9Oz45T/aIGs1qbVAsEFo3nA=="
"resolved" "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.1.tgz"
"version" "1.2.1"
"@emotion/[email protected]":
"integrity" "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA=="
"resolved" "https://registry.npmjs.org/@emotion/sheet/-/sheet-0.9.4.tgz"
"version" "0.9.4"
"@emotion/styled-base@^10.3.0":
"integrity" "sha512-PBRqsVKR7QRNkmfH78hTSSwHWcwDpecH9W6heujWAcyp2wdz/64PP73s7fWS1dIPm8/Exc8JAzYS8dEWXjv60w=="
"resolved" "https://registry.npmjs.org/@emotion/styled-base/-/styled-base-10.3.0.tgz"
"version" "10.3.0"
dependencies:
"@babel/runtime" "^7.5.5"
"@emotion/is-prop-valid" "0.8.8"
"@emotion/serialize" "^0.11.15"
"@emotion/utils" "0.11.3"
"@emotion/styled@^10.0.27", "@emotion/styled@^10.0.9":
"integrity" "sha512-GgcUpXBBEU5ido+/p/mCT2/Xx+Oqmp9JzQRuC+a4lYM4i4LBBn/dWvc0rQ19N9ObA8/T4NWMrPNe79kMBDJqoQ=="
"resolved" "https://registry.npmjs.org/@emotion/styled/-/styled-10.3.0.tgz"
"version" "10.3.0"
dependencies:
"@emotion/styled-base" "^10.3.0"
"babel-plugin-emotion" "^10.0.27"
"@emotion/[email protected]":
"integrity" "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ=="
"resolved" "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz"
"version" "0.8.5"
"@emotion/unitless@^0.8.0":
"integrity" "sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw=="
"resolved" "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.0.tgz"
"version" "0.8.0"
"@emotion/[email protected]":
"integrity" "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg=="
"resolved" "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz"
"version" "0.7.5"
"@emotion/use-insertion-effect-with-fallbacks@^1.0.0":
"integrity" "sha512-1eEgUGmkaljiBnRMTdksDV1W4kUnmwgp7X9G8B++9GYwl1lUdqSndSriIrTJ0N7LQaoauY9JJ2yhiOYK5+NI4A=="
"resolved" "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.0.tgz"
"version" "1.0.0"
"@emotion/utils@^1.2.0":
"integrity" "sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw=="
"resolved" "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.0.tgz"
"version" "1.2.0"
"@emotion/[email protected]":
"integrity" "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw=="
"resolved" "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz"
"version" "0.11.3"
"@emotion/weak-memoize@^0.3.0":
"integrity" "sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg=="
"resolved" "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.0.tgz"
"version" "0.3.0"
"@emotion/[email protected]":
"integrity" "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA=="
"resolved" "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz"
"version" "0.2.5"
"@eslint/eslintrc@^1.4.1":
"integrity" "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA=="
"resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz"
"version" "1.4.1"
dependencies:
"ajv" "^6.12.4"
"debug" "^4.3.2"
"espree" "^9.4.0"
"globals" "^13.19.0"
"ignore" "^5.2.0"
"import-fresh" "^3.2.1"
"js-yaml" "^4.1.0"
"minimatch" "^3.1.2"
"strip-json-comments" "^3.1.1"
"@formatjs/[email protected]":
"integrity" "sha512-SlsbRC/RX+/zg4AApWIFNDdkLtFbkq3LNoZWXZCE/nHVKqoIJyaoQyge/I0Y38vLxowUn9KTtXgusLD91+orbg=="
"resolved" "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-1.14.3.tgz"
"version" "1.14.3"
dependencies:
"@formatjs/intl-localematcher" "0.2.32"
"tslib" "^2.4.0"
"@formatjs/[email protected]":
"integrity" "sha512-PemNUObyoIZcqdQ1ixTPugzAzhEj7j6AHIyrq/qR6x5BFTvOQeXHYsVZUqBEFduAIscUaDfou+U+xTqOiunJ3Q=="
"resolved" "https://registry.npmjs.org/@formatjs/fast-memoize/-/fast-memoize-1.2.8.tgz"
"version" "1.2.8"
dependencies:
"tslib" "^2.4.0"
"@formatjs/[email protected]":
"integrity" "sha512-NT/jKI9nvqNIsosTm+Cxv3BHutB1RIDFa4rAa2b664Od4sBnXtK7afXvAqNa3XDFxljKTij9Cp+kRMJbXozUww=="
"resolved" "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.2.0.tgz"
"version" "2.2.0"
dependencies:
"@formatjs/ecma402-abstract" "1.14.3"
"@formatjs/icu-skeleton-parser" "1.3.18"
"tslib" "^2.4.0"
"@formatjs/[email protected]":
"integrity" "sha512-ND1ZkZfmLPcHjAH1sVpkpQxA+QYfOX3py3SjKWMUVGDow18gZ0WPqz3F+pJLYQMpS2LnnQ5zYR2jPVYTbRwMpg=="
"resolved" "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.3.18.tgz"
"version" "1.3.18"
dependencies:
"@formatjs/ecma402-abstract" "1.14.3"
"tslib" "^2.4.0"
"@formatjs/[email protected]":
"integrity" "sha512-k/MEBstff4sttohyEpXxCmC3MqbUn9VvHGlZ8fauLzkbwXmVrEeyzS+4uhrvAk9DWU9/7otYWxyDox4nT/KVLQ=="
"resolved" "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.2.32.tgz"
"version" "0.2.32"
dependencies:
"tslib" "^2.4.0"
"@heroicons/react@^1.0.6":
"integrity" "sha512-JJCXydOFWMDpCP4q13iEplA503MQO3xLoZiKum+955ZCtHINWnx26CUxVxxFQu/uLb4LW3ge15ZpzIkXKkJ8oQ=="
"resolved" "https://registry.npmjs.org/@heroicons/react/-/react-1.0.6.tgz"
"version" "1.0.6"
"@humanwhocodes/config-array@^0.11.8":
"integrity" "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz"
"version" "0.11.8"
dependencies:
"@humanwhocodes/object-schema" "^1.2.1"
"debug" "^4.1.1"
"minimatch" "^3.0.5"
"@humanwhocodes/module-importer@^1.0.1":
"integrity" "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz"
"version" "1.0.1"
"@humanwhocodes/object-schema@^1.2.1":
"integrity" "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"
"version" "1.2.1"
"@iarna/[email protected]":
"integrity" "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg=="
"resolved" "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz"
"version" "2.2.5"
"@icons/material@^0.2.4":
"integrity" "sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw=="
"resolved" "https://registry.npmjs.org/@icons/material/-/material-0.2.4.tgz"
"version" "0.2.4"
"@internationalized/date@^3.0.1", "@internationalized/date@^3.0.2":
"integrity" "sha512-9V1IxesP6ASZj/hYyOXOC4yPJvidbbStyWQKLCQSqhhKACMOXoo+BddXZJy47ju9mqOMpWdrJ2rTx4yTxK9oag=="
"resolved" "https://registry.npmjs.org/@internationalized/date/-/date-3.0.2.tgz"
"version" "3.0.2"
dependencies:
"@swc/helpers" "^0.4.14"
"@internationalized/message@^3.0.10", "@internationalized/message@^3.0.9":
"integrity" "sha512-vfLqEop/NH68IgqMcXJNSDqZ5Leg3EEgCxhuuSefU7vvdbptD3pwpUWXaK9igYPa+aZfUU0eqv86yqm76obtsw=="
"resolved" "https://registry.npmjs.org/@internationalized/message/-/message-3.0.10.tgz"
"version" "3.0.10"
dependencies:
"@swc/helpers" "^0.4.14"
"intl-messageformat" "^10.1.0"
"@internationalized/number@^3.1.1", "@internationalized/number@^3.1.2":
"integrity" "sha512-Mbys8SGsn0ApXz3hJLNU+d95B8luoUbwnmCpBwl7d63UmYAlcT6TRDyvaS/vwdbElXLcsQJjQCu0gox2cv/Tig=="
"resolved" "https://registry.npmjs.org/@internationalized/number/-/number-3.1.2.tgz"
"version" "3.1.2"
dependencies:
"@swc/helpers" "^0.4.14"
"@internationalized/string@^3.0.0", "@internationalized/string@^3.0.1":
"integrity" "sha512-2+rHfXZ56YgsC6i3fKvBue/xatnSm0Jv+C/x4+n3wg5xAcLh4LPW3GvZ/9ifxNAz9+IWplgZHa1FRIbSuUvNWg=="
"resolved" "https://registry.npmjs.org/@internationalized/string/-/string-3.0.1.tgz"
"version" "3.0.1"
dependencies:
"@swc/helpers" "^0.4.14"
"@jridgewell/gen-mapping@^0.1.0":
"integrity" "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w=="
"resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz"
"version" "0.1.1"
dependencies:
"@jridgewell/set-array" "^1.0.0"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/gen-mapping@^0.3.2":
"integrity" "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A=="
"resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz"
"version" "0.3.2"
dependencies:
"@jridgewell/set-array" "^1.0.1"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/trace-mapping" "^0.3.9"
"@jridgewell/[email protected]":
"integrity" "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w=="
"resolved" "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz"
"version" "3.1.0"
"@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1":
"integrity" "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw=="
"resolved" "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz"
"version" "1.1.2"
"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/[email protected]":
"integrity" "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
"resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz"
"version" "1.4.14"
"@jridgewell/trace-mapping@^0.3.9":
"integrity" "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g=="
"resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz"
"version" "0.3.17"
dependencies:
"@jridgewell/resolve-uri" "3.1.0"
"@jridgewell/sourcemap-codec" "1.4.14"
"@mapbox/jsonlint-lines-primitives@~2.0.2":
"integrity" "sha512-rY0o9A5ECsTQRVhv7tL/OyDpGAoUB4tTvLiW1DSzQGq4bvTPhNw1VpSNjDJc5GFZ2XuyOtSWSVN05qOtcD71qQ=="
"resolved" "https://registry.npmjs.org/@mapbox/jsonlint-lines-primitives/-/jsonlint-lines-primitives-2.0.2.tgz"
"version" "2.0.2"
"@mapbox/mapbox-gl-style-spec@^13.23.1":
"integrity" "sha512-B8xM7Fp1nh5kejfIl4SWeY0gtIeewbuRencqO3cJDrCHZpaPg7uY+V8abuR+esMeuOjRl5cLhVTP40v+1ywxbg=="
"resolved" "https://registry.npmjs.org/@mapbox/mapbox-gl-style-spec/-/mapbox-gl-style-spec-13.28.0.tgz"
"version" "13.28.0"
dependencies:
"@mapbox/jsonlint-lines-primitives" "~2.0.2"
"@mapbox/point-geometry" "^0.1.0"
"@mapbox/unitbezier" "^0.0.0"
"csscolorparser" "~1.0.2"
"json-stringify-pretty-compact" "^2.0.0"
"minimist" "^1.2.6"
"rw" "^1.3.3"
"sort-object" "^0.3.2"
"@mapbox/point-geometry@^0.1.0":
"integrity" "sha512-6j56HdLTwWGO0fJPlrZtdU/B13q8Uwmo18Ck2GnGgN9PCFyKTZ3UbXeEdRFh18i9XQ92eH2VdtpJHpBD3aripQ=="
"resolved" "https://registry.npmjs.org/@mapbox/point-geometry/-/point-geometry-0.1.0.tgz"
"version" "0.1.0"
"@mapbox/unitbezier@^0.0.0":
"integrity" "sha512-HPnRdYO0WjFjRTSwO3frz1wKaU649OBFPX3Zo/2WZvuRi6zMiRGui8SnPQiQABgqCf8YikDe5t3HViTVw1WUzA=="
"resolved" "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.0.tgz"
"version" "0.0.0"
"@next/[email protected]":
"integrity" "sha512-s+W9Fdqh5MFk6ECrbnVmmAOwxKQuhGMT7xXHrkYIBMBcTiOqNWhv5KbJIboKR5STXxNXl32hllnvKaffzFaWQg=="
"resolved" "https://registry.npmjs.org/@next/env/-/env-13.1.6.tgz"
"version" "13.1.6"
"@next/[email protected]":
"integrity" "sha512-o7cauUYsXjzSJkay8wKjpKJf2uLzlggCsGUkPu3lP09Pv97jYlekTC20KJrjQKmSv5DXV0R/uks2ZXhqjNkqAw=="
"resolved" "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.1.6.tgz"
"version" "13.1.6"
dependencies:
"glob" "7.1.7"
"@next/[email protected]":
"integrity" "sha512-AITjmeb1RgX1HKMCiA39ztx2mxeAyxl4ljv2UoSBUGAbFFMg8MO7YAvjHCgFhD39hL7YTbFjol04e/BPBH5RzQ=="
"resolved" "https://registry.npmjs.org/@next/font/-/font-13.1.6.tgz"
"version" "13.1.6"
"@next/[email protected]":
"integrity" "sha512-/uOky5PaZDoaU99ohjtNcDTJ6ks/gZ5ykTQDvNZDjIoCxFe3+t06bxsTPY6tAO6uEAw5f6vVFX5H5KLwhrkZCA=="
"resolved" "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.1.6.tgz"
"version" "13.1.6"
"@nextui-org/react@^1.0.0-beta.12":
"integrity" "sha512-ay6LrdRDwIFiZDvFH6nQjRuzLWE9yPQfI3W3qEfaY1I8e+CGYm0fc8RPSj3rrfZTa9OLeV+Defh/+/ysrwrloQ=="
"resolved" "https://registry.npmjs.org/@nextui-org/react/-/react-1.0.0-beta.12.tgz"
"version" "1.0.0-beta.12"
dependencies:
"@babel/runtime" "^7.20.1"
"@react-aria/button" "3.6.2"
"@react-aria/checkbox" "3.6.0"
"@react-aria/dialog" "3.4.0"
"@react-aria/focus" "3.7.0"
"@react-aria/i18n" "3.6.1"
"@react-aria/interactions" "3.12.0"
"@react-aria/label" "3.4.2"
"@react-aria/link" "3.3.4"
"@react-aria/menu" "3.6.2"
"@react-aria/overlays" "3.11.0"
"@react-aria/radio" "3.4.0"
"@react-aria/ssr" "3.3.0"
"@react-aria/table" "3.5.0"
"@react-aria/utils" "3.14.0"
"@react-aria/visually-hidden" "3.5.0"
"@react-stately/checkbox" "3.3.0"
"@react-stately/collections" "3.4.4"
"@react-stately/data" "3.7.0"
"@react-stately/menu" "3.4.2"
"@react-stately/overlays" "3.4.2"
"@react-stately/radio" "3.6.0"
"@react-stately/table" "3.5.0"
"@react-stately/toggle" "3.4.2"
"@react-stately/tree" "3.3.4"
"@react-types/button" "^3.6.2"
"@react-types/checkbox" "3.4.0"
"@react-types/grid" "3.1.4"
"@react-types/menu" "3.7.2"
"@react-types/overlays" "3.6.4"
"@react-types/shared" "3.15.0"
"@stitches/react" "1.2.8"
"@nodelib/[email protected]":
"integrity" "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
"version" "2.1.5"
dependencies:
"@nodelib/fs.stat" "2.0.5"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/[email protected]":
"integrity" "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
"version" "2.0.5"
"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8":
"integrity" "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
"version" "1.2.8"
dependencies:
"@nodelib/fs.scandir" "2.1.5"
"fastq" "^1.6.0"
"@petamoriken/float16@^3.4.7":
"integrity" "sha512-oXZOc+aePd0FnhTWk15pyqK+Do87n0TyLV1nxdEougE95X/WXWDqmQobfhgnSY7QsWn5euZUWuDVeTQvoQ5VNw=="
"resolved" "https://registry.npmjs.org/@petamoriken/float16/-/float16-3.7.1.tgz"
"version" "3.7.1"
"@pkgr/utils@^2.3.1":
"integrity" "sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw=="
"resolved" "https://registry.npmjs.org/@pkgr/utils/-/utils-2.3.1.tgz"
"version" "2.3.1"
dependencies:
"cross-spawn" "^7.0.3"
"is-glob" "^4.0.3"
"open" "^8.4.0"
"picocolors" "^1.0.0"
"tiny-glob" "^0.2.9"
"tslib" "^2.4.0"
"@popperjs/core@^2.9.0":
"integrity" "sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw=="
"resolved" "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz"
"version" "2.11.6"
"@react-aria/[email protected]":
"integrity" "sha512-8XRcPR5qXKNmnBO6u9FSY8vYa7P1FIgVix07EHBCTZiJYHYxcUsFYRWG9qf2aShGotJs4957unqGH1L1ncRYKQ=="
"resolved" "https://registry.npmjs.org/@react-aria/button/-/button-3.6.2.tgz"
"version" "3.6.2"
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/focus" "^3.9.0"
"@react-aria/interactions" "^3.12.0"
"@react-aria/utils" "^3.14.0"
"@react-stately/toggle" "^3.4.2"
"@react-types/button" "^3.6.2"
"@react-types/shared" "^3.15.0"
"@react-aria/[email protected]":
"integrity" "sha512-E2MZoMZhtHtlS1mYjxTI29JRq4s3Y6d92KHj7tzvcC308d4Bzz0IHJd0bMz/8whoNteU02pQyZ3rDAcGf92bHQ=="
"resolved" "https://registry.npmjs.org/@react-aria/checkbox/-/checkbox-3.6.0.tgz"
"version" "3.6.0"
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/label" "^3.4.2"
"@react-aria/toggle" "^3.4.0"
"@react-aria/utils" "^3.14.0"
"@react-stately/checkbox" "^3.3.0"
"@react-stately/toggle" "^3.4.2"
"@react-types/checkbox" "^3.4.0"
"@react-types/shared" "^3.15.0"
"@react-aria/[email protected]":
"integrity" "sha512-h1D7OOe20PhSb4DD40ABVgHMbSA2Y9rSU5lrGf9zuNSYkQIwDz6pTSXp/9roy7SEvf5KAN6zPa1inSVBOTzf3w=="
"resolved" "https://registry.npmjs.org/@react-aria/dialog/-/dialog-3.4.0.tgz"
"version" "3.4.0"
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/focus" "^3.9.0"
"@react-aria/overlays" "^3.11.0"
"@react-aria/utils" "^3.14.0"
"@react-stately/overlays" "^3.4.2"
"@react-types/dialog" "^3.4.4"
"@react-types/shared" "^3.15.0"
"@react-aria/focus@^3.10.1":
"integrity" "sha512-HjgFUC1CznuYC7CxtBIFML6bOBxW3M3cSNtvmXU9QWlrPSwwOLkXCnfY6+UkjCc5huP4v7co4PoRDX8Vbe/cVQ=="
"resolved" "https://registry.npmjs.org/@react-aria/focus/-/focus-3.10.1.tgz"
"version" "3.10.1"
dependencies:
"@react-aria/interactions" "^3.13.1"
"@react-aria/utils" "^3.14.2"
"@react-types/shared" "^3.16.0"
"@swc/helpers" "^0.4.14"
"clsx" "^1.1.1"
"@react-aria/focus@^3.9.0":
"integrity" "sha512-HjgFUC1CznuYC7CxtBIFML6bOBxW3M3cSNtvmXU9QWlrPSwwOLkXCnfY6+UkjCc5huP4v7co4PoRDX8Vbe/cVQ=="
"resolved" "https://registry.npmjs.org/@react-aria/focus/-/focus-3.10.1.tgz"
"version" "3.10.1"
dependencies:
"@react-aria/interactions" "^3.13.1"
"@react-aria/utils" "^3.14.2"
"@react-types/shared" "^3.16.0"
"@swc/helpers" "^0.4.14"
"clsx" "^1.1.1"
"@react-aria/[email protected]":
"integrity" "sha512-LydZSLBLEUklakM0Ogdk17F3f/Uwaj5Nl1mfcK8HhrroGT8A8XH0KjA9D6gM6JGHgxZemx0ufOgxhQZeBGQMQw=="
"resolved" "https://registry.npmjs.org/@react-aria/focus/-/focus-3.7.0.tgz"
"version" "3.7.0"
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/interactions" "^3.10.0"
"@react-aria/utils" "^3.13.2"
"@react-types/shared" "^3.14.0"
"clsx" "^1.1.1"
"@react-aria/grid@^3.5.0":
"integrity" "sha512-+cDtTvTT0YF4jgy1pv0omcweub6z1N+GdkpHC6L6/jtH2gFRVns3IC6pf5ihLDIpLloylthaMMR8C3lus7035g=="
"resolved" "https://registry.npmjs.org/@react-aria/grid/-/grid-3.5.2.tgz"
"version" "3.5.2"
dependencies:
"@react-aria/focus" "^3.10.1"
"@react-aria/i18n" "^3.6.3"
"@react-aria/interactions" "^3.13.1"
"@react-aria/live-announcer" "^3.1.2"
"@react-aria/selection" "^3.12.1"
"@react-aria/utils" "^3.14.2"
"@react-stately/grid" "^3.4.2"
"@react-stately/selection" "^3.11.2"
"@react-stately/virtualizer" "^3.4.1"
"@react-types/checkbox" "^3.4.1"
"@react-types/grid" "^3.1.5"
"@react-types/shared" "^3.16.0"
"@swc/helpers" "^0.4.14"
"@react-aria/i18n@^3.6.1", "@react-aria/[email protected]":
"integrity" "sha512-kAetWsj9HOqwaqLhmFU2udhZ+4QGGYkQOgGBJYdrB7GfLZQ1GPBlZjv3QFdkX4oSf/k9cFqgftxvVQQDYZLOew=="
"resolved" "https://registry.npmjs.org/@react-aria/i18n/-/i18n-3.6.1.tgz"
"version" "3.6.1"
dependencies:
"@babel/runtime" "^7.6.2"
"@internationalized/date" "^3.0.1"
"@internationalized/message" "^3.0.9"
"@internationalized/number" "^3.1.1"
"@internationalized/string" "^3.0.0"
"@react-aria/ssr" "^3.3.0"
"@react-aria/utils" "^3.14.0"
"@react-types/shared" "^3.15.0"
"@react-aria/i18n@^3.6.3":
"integrity" "sha512-cDWl8FXJIXsw/raWcThywBueCJ5ncoogq81wYVS6hfZVmSyncONIB3bwUL12cojmjX1VEP31sN0ujT/83QP95Q=="
"resolved" "https://registry.npmjs.org/@react-aria/i18n/-/i18n-3.6.3.tgz"
"version" "3.6.3"
dependencies:
"@internationalized/date" "^3.0.2"
"@internationalized/message" "^3.0.10"
"@internationalized/number" "^3.1.2"
"@internationalized/string" "^3.0.1"
"@react-aria/ssr" "^3.4.1"
"@react-aria/utils" "^3.14.2"
"@react-types/shared" "^3.16.0"
"@swc/helpers" "^0.4.14"
"@react-aria/interactions@^3.10.0", "@react-aria/interactions@^3.12.0", "@react-aria/[email protected]":
"integrity" "sha512-KcKurjPZwme9ggvGQjbjqZtZtuyXipTBVMHUah9a3+Dz7vXxhRg5vFaEdM79oQnNsrGFW5xS6SKBehl/JG6BMw=="
"resolved" "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.12.0.tgz"
"version" "3.12.0"
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/utils" "^3.14.0"
"@react-types/shared" "^3.15.0"
"@react-aria/interactions@^3.13.1":
"integrity" "sha512-WCvfZOi1hhussVTHxVq76OR48ry13Zvp9U5hmuQufyxIUlf4hOvDk4/cbK4o4JiCs8X7C7SRzcwFM34M4NHzmg=="
"resolved" "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.13.1.tgz"
"version" "3.13.1"
dependencies:
"@react-aria/utils" "^3.14.2"
"@react-types/shared" "^3.16.0"
"@swc/helpers" "^0.4.14"
"@react-aria/label@^3.4.2", "@react-aria/[email protected]":
"integrity" "sha512-ctygLrA4yY31440UMZdw21Iz4ogXupLJB5xpTU1KFXcvybSu+H3gvVCOJu1jFwR12bTKnkVogTWT6wwVYH2nFw=="
"resolved" "https://registry.npmjs.org/@react-aria/label/-/label-3.4.2.tgz"
"version" "3.4.2"
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/utils" "^3.14.0"
"@react-types/label" "^3.7.0"
"@react-types/shared" "^3.15.0"
"@react-aria/[email protected]":
"integrity" "sha512-Op0usCd5SAg5OHkCl1+TYbsvT/wWhqadd/3Pi0VD0kKmaSy4GhUNJkTo8n0hS2k3vIq+qRq7zwnON2h5eLVkHA=="
"resolved" "https://registry.npmjs.org/@react-aria/link/-/link-3.3.4.tgz"
"version" "3.3.4"
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/focus" "^3.9.0"
"@react-aria/interactions" "^3.12.0"
"@react-aria/utils" "^3.14.0"
"@react-types/link" "^3.3.4"
"@react-types/shared" "^3.15.0"
"@react-aria/live-announcer@^3.1.1", "@react-aria/live-announcer@^3.1.2":
"integrity" "sha512-BqtVLPWU10sZssoOJF1lJiRvZe5zqZ5BM39PsFyO7dWhVkR/9O9bZviqvKXnC1oXCnypfa+85gUshbK9unFcWA=="
"resolved" "https://registry.npmjs.org/@react-aria/live-announcer/-/live-announcer-3.1.2.tgz"
"version" "3.1.2"
dependencies:
"@swc/helpers" "^0.4.14"
"@react-aria/[email protected]":
"integrity" "sha512-uBZHGuFAtOdoocBVZzoBpZQFJmkt5axlEUKjBgh2BuR5JX8aZiSxyKnfgAeb3aDEi9PZpOp6RWxHzOMBRg4TsA=="
"resolved" "https://registry.npmjs.org/@react-aria/menu/-/menu-3.6.2.tgz"
"version" "3.6.2"
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/i18n" "^3.6.1"
"@react-aria/interactions" "^3.12.0"
"@react-aria/overlays" "^3.11.0"
"@react-aria/selection" "^3.11.0"
"@react-aria/utils" "^3.14.0"
"@react-stately/collections" "^3.4.4"
"@react-stately/menu" "^3.4.2"
"@react-stately/tree" "^3.3.4"
"@react-types/button" "^3.6.2"
"@react-types/menu" "^3.7.2"
"@react-types/shared" "^3.15.0"
"@react-aria/overlays@^3.11.0", "@react-aria/[email protected]":
"integrity" "sha512-NqLqxSiEW9AuUPcEHCIp2lHH1moNxlkP0CkuUMkT2/T5MCPm/Iq+uD53VSR+NyeCWU/aGH3ykj2kq9NSITJkOA=="
"resolved" "https://registry.npmjs.org/@react-aria/overlays/-/overlays-3.11.0.tgz"
"version" "3.11.0"
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/focus" "^3.9.0"
"@react-aria/i18n" "^3.6.1"
"@react-aria/interactions" "^3.12.0"
"@react-aria/ssr" "^3.3.0"
"@react-aria/utils" "^3.14.0"
"@react-aria/visually-hidden" "^3.5.0"
"@react-stately/overlays" "^3.4.2"
"@react-types/button" "^3.6.2"
"@react-types/overlays" "^3.6.4"
"@react-types/shared" "^3.15.0"
"@react-aria/[email protected]":
"integrity" "sha512-DUccHQxfI0PikXXQKarh/hLS/G+ZzfdQ00/sd57jzWsuRyukb+WywQhud29p5uO3wT33/MH9LZgSmb9dlvfabQ=="
"resolved" "https://registry.npmjs.org/@react-aria/radio/-/radio-3.4.0.tgz"
"version" "3.4.0"
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/focus" "^3.9.0"
"@react-aria/i18n" "^3.6.1"
"@react-aria/interactions" "^3.12.0"
"@react-aria/label" "^3.4.2"
"@react-aria/utils" "^3.14.0"
"@react-stately/radio" "^3.6.0"
"@react-types/radio" "^3.3.0"
"@react-types/shared" "^3.15.0"
"@react-aria/selection@^3.11.0", "@react-aria/selection@^3.12.1":
"integrity" "sha512-UX1vSY+iUdHe0itFZIOizX1BCI8SAeFnEh5VIQ1bYRt93+kAxeC914fsxFPPgrodJyqWRCX1dblPyRUIWAzQiw=="
"resolved" "https://registry.npmjs.org/@react-aria/selection/-/selection-3.12.1.tgz"
"version" "3.12.1"
dependencies:
"@react-aria/focus" "^3.10.1"
"@react-aria/i18n" "^3.6.3"
"@react-aria/interactions" "^3.13.1"
"@react-aria/utils" "^3.14.2"
"@react-stately/collections" "^3.5.1"
"@react-stately/selection" "^3.11.2"
"@react-types/shared" "^3.16.0"
"@swc/helpers" "^0.4.14"
"@react-aria/ssr@^3.3.0", "@react-aria/[email protected]":
"integrity" "sha512-yNqUDuOVZIUGP81R87BJVi/ZUZp/nYOBXbPsRe7oltJOfErQZD+UezMpw4vM2KRz18cURffvmC8tJ6JTeyDtaQ=="
"resolved" "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.3.0.tgz"
"version" "3.3.0"
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/ssr@^3.4.1":
"integrity" "sha512-NmhoilMDyIfQiOSdQgxpVH2tC2u85Y0mVijtBNbI9kcDYLEiW/r6vKYVKtkyU+C4qobXhGMPfZ70PTc0lysSVA=="
"resolved" "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.4.1.tgz"
"version" "3.4.1"
dependencies:
"@swc/helpers" "^0.4.14"
"@react-aria/[email protected]":
"integrity" "sha512-oYcsIEYbbjAzojRWUsAdtfxPzlEKBmk6o4svDHnGqC9HSj8/yExn8b8RB0veDP7E+5IdO62pUwUy48jBwWu2uw=="
"resolved" "https://registry.npmjs.org/@react-aria/table/-/table-3.5.0.tgz"
"version" "3.5.0"
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/focus" "^3.9.0"
"@react-aria/grid" "^3.5.0"
"@react-aria/i18n" "^3.6.1"
"@react-aria/interactions" "^3.12.0"
"@react-aria/live-announcer" "^3.1.1"
"@react-aria/selection" "^3.11.0"
"@react-aria/utils" "^3.14.0"
"@react-stately/table" "^3.5.0"
"@react-stately/virtualizer" "^3.3.1"
"@react-types/checkbox" "^3.4.0"
"@react-types/grid" "^3.1.4"
"@react-types/shared" "^3.15.0"
"@react-types/table" "^3.3.2"
"@react-aria/toggle@^3.4.0":
"integrity" "sha512-xokCGf0fn96mOMqQku5QW672iQoMsN9RMpFbKvvgg2seceh8ifblyAXElWf/6YmluOZSgUSZljDkFrbMMYlzVA=="
"resolved" "https://registry.npmjs.org/@react-aria/toggle/-/toggle-3.4.2.tgz"
"version" "3.4.2"
dependencies:
"@react-aria/focus" "^3.10.1"
"@react-aria/interactions" "^3.13.1"
"@react-aria/utils" "^3.14.2"
"@react-stately/toggle" "^3.4.4"
"@react-types/checkbox" "^3.4.1"
"@react-types/shared" "^3.16.0"
"@react-types/switch" "^3.2.5"
"@swc/helpers" "^0.4.14"
"@react-aria/utils@^3.13.2", "@react-aria/utils@^3.14.0", "@react-aria/[email protected]":
"integrity" "sha512-DHgmwNBNEhnb6DEYYAfbt99wprBqJJOBBeIpQ2g3+pxwlw4BZ+v4Qr+rDD0ZibWV0mYzt8zOhZ9StpId7iTF0Q=="
"resolved" "https://registry.npmjs.org/@react-aria/utils/-/utils-3.14.0.tgz"
"version" "3.14.0"
dependencies:
"@babel/runtime" "^7.6.2"
"@react-aria/ssr" "^3.3.0"
"@react-stately/utils" "^3.5.1"
"@react-types/shared" "^3.15.0"
"clsx" "^1.1.1"
"@react-aria/utils@^3.14.2":
"integrity" "sha512-3nr5gsAf/J/W+6Tu4NF3Q7m+1mXjfpXESh7TPa6UR6v3tVDTsJVMrITg2BkHN1jM8xELcl2ZxyUffOWqOXzWuA=="
"resolved" "https://registry.npmjs.org/@react-aria/utils/-/utils-3.14.2.tgz"
"version" "3.14.2"
dependencies:
"@react-aria/ssr" "^3.4.1"
"@react-stately/utils" "^3.5.2"
"@react-types/shared" "^3.16.0"
"@swc/helpers" "^0.4.14"
"clsx" "^1.1.1"