-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
3860 lines (3860 loc) · 154 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": "owl-messenger",
"version": "0.3.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@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==",
"dev": true,
"requires": {
"@babel/highlight": "^7.10.4"
}
},
"@babel/helper-validator-identifier": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz",
"integrity": "sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg==",
"dev": true
},
"@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==",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.14.5",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
}
},
"@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==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@babel/runtime-corejs3": {
"version": "7.14.7",
"resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.14.7.tgz",
"integrity": "sha512-Wvzcw4mBYbTagyBVZpAJWI06auSIj033T/yNE0Zn1xcup83MieCddZA7ls3kme17L4NOGBrQ09Q+nKB41RLWBA==",
"dev": true,
"requires": {
"core-js-pure": "^3.15.0",
"regenerator-runtime": "^0.13.4"
}
},
"@eslint/eslintrc": {
"version": "0.4.2",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.2.tgz",
"integrity": "sha512-8nmGq/4ycLpIwzvhI4tNDmQztZ8sp+hI7cyG8i1nQDhkAbRzHpXPidRAHlNvCZQpJTKw5ItIpMw9RSToGF00mg==",
"dev": true,
"requires": {
"ajv": "^6.12.4",
"debug": "^4.1.1",
"espree": "^7.3.0",
"globals": "^13.9.0",
"ignore": "^4.0.6",
"import-fresh": "^3.2.1",
"js-yaml": "^3.13.1",
"minimatch": "^3.0.4",
"strip-json-comments": "^3.1.1"
},
"dependencies": {
"debug": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
"integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
"dev": true,
"requires": {
"ms": "2.1.2"
}
},
"ms": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
"dev": true
}
}
},
"@formatjs/ecma402-abstract": {
"version": "1.13.0",
"resolved": "https://registry.npmmirror.com/@formatjs/ecma402-abstract/-/ecma402-abstract-1.13.0.tgz",
"integrity": "sha512-CQ8Ykd51jYD1n05dtoX6ns6B9n/+6ZAxnWUAonvHC4kkuAemROYBhHkEB4tm1uVrRlE7gLDqXkAnY51Y0pRCWQ==",
"requires": {
"@formatjs/intl-localematcher": "0.2.31",
"tslib": "2.4.0"
},
"dependencies": {
"tslib": {
"version": "2.4.0",
"resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.4.0.tgz",
"integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ=="
}
}
},
"@formatjs/fast-memoize": {
"version": "1.2.6",
"resolved": "https://registry.npmmirror.com/@formatjs/fast-memoize/-/fast-memoize-1.2.6.tgz",
"integrity": "sha512-9CWZ3+wCkClKHX+i5j+NyoBVqGf0pIskTo6Xl6ihGokYM2yqSSS68JIgeo+99UIHc+7vi9L3/SDSz/dWI9SNlA==",
"requires": {
"tslib": "2.4.0"
},
"dependencies": {
"tslib": {
"version": "2.4.0",
"resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.4.0.tgz",
"integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ=="
}
}
},
"@formatjs/icu-messageformat-parser": {
"version": "2.1.10",
"resolved": "https://registry.npmmirror.com/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.1.10.tgz",
"integrity": "sha512-KkRMxhifWkRC45dhM9tqm0GXbb6NPYTGVYY3xx891IKc6p++DQrZTnmkVSNNO47OEERLfuP2KkPFPJBuu8z/wg==",
"requires": {
"@formatjs/ecma402-abstract": "1.13.0",
"@formatjs/icu-skeleton-parser": "1.3.14",
"tslib": "2.4.0"
},
"dependencies": {
"tslib": {
"version": "2.4.0",
"resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.4.0.tgz",
"integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ=="
}
}
},
"@formatjs/icu-skeleton-parser": {
"version": "1.3.14",
"resolved": "https://registry.npmmirror.com/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.3.14.tgz",
"integrity": "sha512-7bv60HQQcBb3+TSj+45tOb/CHV5z1hOpwdtS50jsSBXfB+YpGhnoRsZxSRksXeCxMy6xn6tA6VY2601BrrK+OA==",
"requires": {
"@formatjs/ecma402-abstract": "1.13.0",
"tslib": "2.4.0"
},
"dependencies": {
"tslib": {
"version": "2.4.0",
"resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.4.0.tgz",
"integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ=="
}
}
},
"@formatjs/intl-localematcher": {
"version": "0.2.31",
"resolved": "https://registry.npmmirror.com/@formatjs/intl-localematcher/-/intl-localematcher-0.2.31.tgz",
"integrity": "sha512-9QTjdSBpQ7wHShZgsNzNig5qT3rCPvmZogS/wXZzKotns5skbXgs0I7J8cuN0PPqXyynvNVuN+iOKhNS2eb+ZA==",
"requires": {
"tslib": "2.4.0"
},
"dependencies": {
"tslib": {
"version": "2.4.0",
"resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.4.0.tgz",
"integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ=="
}
}
},
"@internationalized/date": {
"version": "3.0.1",
"resolved": "https://registry.npmmirror.com/@internationalized/date/-/date-3.0.1.tgz",
"integrity": "sha512-E/3lASs4mAeJ2Z2ye6ab7eUD0bPUfTeNVTAv6IS+ne9UtMu9Uepb9A1U2Ae0hDr6WAlBuvUtrakaxEdYB9TV6Q==",
"requires": {
"@babel/runtime": "^7.6.2"
}
},
"@internationalized/message": {
"version": "3.0.9",
"resolved": "https://registry.npmmirror.com/@internationalized/message/-/message-3.0.9.tgz",
"integrity": "sha512-yHQggKWUuSvj1GznVtie4tcYq+xMrkd/lTKCFHp6gG18KbIliDw+UI7sL9+yJPGuWiR083xuLyyhzqiPbNOEww==",
"requires": {
"@babel/runtime": "^7.6.2",
"intl-messageformat": "^10.1.0"
}
},
"@internationalized/number": {
"version": "3.1.1",
"resolved": "https://registry.npmmirror.com/@internationalized/number/-/number-3.1.1.tgz",
"integrity": "sha512-dBxCQKIxvsZvW2IBt3KsqrCfaw2nV6o6a8xsloJn/hjW0ayeyhKuiiMtTwW3/WGNPP7ZRyDbtuiUEjMwif1ENQ==",
"requires": {
"@babel/runtime": "^7.6.2"
}
},
"@internationalized/string": {
"version": "3.0.0",
"resolved": "https://registry.npmmirror.com/@internationalized/string/-/string-3.0.0.tgz",
"integrity": "sha512-NUSr4u+mNu5BysXFeVWZW4kvjXylPkU/YYqaWzdNuz1eABfehFiZTEYhWAAMzI3U8DTxfqF9PM3zyhk5gcfz6w==",
"requires": {
"@babel/runtime": "^7.6.2"
}
},
"@next/env": {
"version": "12.3.1",
"resolved": "https://registry.npmmirror.com/@next/env/-/env-12.3.1.tgz",
"integrity": "sha512-9P9THmRFVKGKt9DYqeC2aKIxm8rlvkK38V1P1sRE7qyoPBIs8l9oo79QoSdPtOWfzkbDAVUqvbQGgTMsb8BtJg=="
},
"@next/eslint-plugin-next": {
"version": "11.0.1",
"resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-11.0.1.tgz",
"integrity": "sha512-UzdX3y6XSrj9YuASUb/p4sRvfjP2klj2YgIOfMwrWoLTTPJQMh00hREB9Ftr7m7RIxjVSAaaLXIRLdxvq948GA==",
"dev": true
},
"@next/swc-android-arm-eabi": {
"version": "12.3.1",
"resolved": "https://registry.npmmirror.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-12.3.1.tgz",
"integrity": "sha512-i+BvKA8tB//srVPPQxIQN5lvfROcfv4OB23/L1nXznP+N/TyKL8lql3l7oo2LNhnH66zWhfoemg3Q4VJZSruzQ==",
"optional": true
},
"@next/swc-android-arm64": {
"version": "12.3.1",
"resolved": "https://registry.npmmirror.com/@next/swc-android-arm64/-/swc-android-arm64-12.3.1.tgz",
"integrity": "sha512-CmgU2ZNyBP0rkugOOqLnjl3+eRpXBzB/I2sjwcGZ7/Z6RcUJXK5Evz+N0ucOxqE4cZ3gkTeXtSzRrMK2mGYV8Q==",
"optional": true
},
"@next/swc-darwin-arm64": {
"version": "12.3.1",
"resolved": "https://registry.npmmirror.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.3.1.tgz",
"integrity": "sha512-hT/EBGNcu0ITiuWDYU9ur57Oa4LybD5DOQp4f22T6zLfpoBMfBibPtR8XktXmOyFHrL/6FC2p9ojdLZhWhvBHg==",
"optional": true
},
"@next/swc-darwin-x64": {
"version": "12.3.1",
"resolved": "https://registry.npmmirror.com/@next/swc-darwin-x64/-/swc-darwin-x64-12.3.1.tgz",
"integrity": "sha512-9S6EVueCVCyGf2vuiLiGEHZCJcPAxglyckTZcEwLdJwozLqN0gtS0Eq0bQlGS3dH49Py/rQYpZ3KVWZ9BUf/WA==",
"optional": true
},
"@next/swc-freebsd-x64": {
"version": "12.3.1",
"resolved": "https://registry.npmmirror.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-12.3.1.tgz",
"integrity": "sha512-qcuUQkaBZWqzM0F1N4AkAh88lLzzpfE6ImOcI1P6YeyJSsBmpBIV8o70zV+Wxpc26yV9vpzb+e5gCyxNjKJg5Q==",
"optional": true
},
"@next/swc-linux-arm-gnueabihf": {
"version": "12.3.1",
"resolved": "https://registry.npmmirror.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.3.1.tgz",
"integrity": "sha512-diL9MSYrEI5nY2wc/h/DBewEDUzr/DqBjIgHJ3RUNtETAOB3spMNHvJk2XKUDjnQuluLmFMloet9tpEqU2TT9w==",
"optional": true
},
"@next/swc-linux-arm64-gnu": {
"version": "12.3.1",
"resolved": "https://registry.npmmirror.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.3.1.tgz",
"integrity": "sha512-o/xB2nztoaC7jnXU3Q36vGgOolJpsGG8ETNjxM1VAPxRwM7FyGCPHOMk1XavG88QZSQf+1r+POBW0tLxQOJ9DQ==",
"optional": true
},
"@next/swc-linux-arm64-musl": {
"version": "12.3.1",
"resolved": "https://registry.npmmirror.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.3.1.tgz",
"integrity": "sha512-2WEasRxJzgAmP43glFNhADpe8zB7kJofhEAVNbDJZANp+H4+wq+/cW1CdDi8DqjkShPEA6/ejJw+xnEyDID2jg==",
"optional": true
},
"@next/swc-linux-x64-gnu": {
"version": "12.3.1",
"resolved": "https://registry.npmmirror.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.3.1.tgz",
"integrity": "sha512-JWEaMyvNrXuM3dyy9Pp5cFPuSSvG82+yABqsWugjWlvfmnlnx9HOQZY23bFq3cNghy5V/t0iPb6cffzRWylgsA==",
"optional": true
},
"@next/swc-linux-x64-musl": {
"version": "12.3.1",
"resolved": "https://registry.npmmirror.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.3.1.tgz",
"integrity": "sha512-xoEWQQ71waWc4BZcOjmatuvPUXKTv6MbIFzpm4LFeCHsg2iwai0ILmNXf81rJR+L1Wb9ifEke2sQpZSPNz1Iyg==",
"optional": true
},
"@next/swc-win32-arm64-msvc": {
"version": "12.3.1",
"resolved": "https://registry.npmmirror.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.3.1.tgz",
"integrity": "sha512-hswVFYQYIeGHE2JYaBVtvqmBQ1CppplQbZJS/JgrVI3x2CurNhEkmds/yqvDONfwfbttTtH4+q9Dzf/WVl3Opw==",
"optional": true
},
"@next/swc-win32-ia32-msvc": {
"version": "12.3.1",
"resolved": "https://registry.npmmirror.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.3.1.tgz",
"integrity": "sha512-Kny5JBehkTbKPmqulr5i+iKntO5YMP+bVM8Hf8UAmjSMVo3wehyLVc9IZkNmcbxi+vwETnQvJaT5ynYBkJ9dWA==",
"optional": true
},
"@next/swc-win32-x64-msvc": {
"version": "12.3.1",
"resolved": "https://registry.npmmirror.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.3.1.tgz",
"integrity": "sha512-W1ijvzzg+kPEX6LAc+50EYYSEo0FVu7dmTE+t+DM4iOLqgGHoW9uYSz9wCVdkXOEEMP9xhXfGpcSxsfDucyPkA==",
"optional": true
},
"@nextui-org/react": {
"version": "1.0.0-beta.10",
"resolved": "https://registry.npmmirror.com/@nextui-org/react/-/react-1.0.0-beta.10.tgz",
"integrity": "sha512-cxqsp4QXmKJoiDeoeEmayn3LUgRrHvOhmvfv8fm65CdWZI5Ro18DwBQrD+mdttlZ/OEaiYQXDPSP36p2DALdag==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-aria/button": "3.6.0",
"@react-aria/checkbox": "3.5.0",
"@react-aria/dialog": "3.3.0",
"@react-aria/focus": "3.7.0",
"@react-aria/i18n": "3.5.1",
"@react-aria/interactions": "3.10.0",
"@react-aria/label": "3.4.0",
"@react-aria/link": "3.3.1",
"@react-aria/menu": "3.6.0",
"@react-aria/overlays": "3.10.0",
"@react-aria/radio": "3.3.0",
"@react-aria/ssr": "3.3.0",
"@react-aria/table": "3.4.0",
"@react-aria/utils": "3.13.2",
"@react-aria/visually-hidden": "3.4.0",
"@react-stately/checkbox": "3.2.0",
"@react-stately/data": "3.6.0",
"@react-stately/overlays": "3.4.0",
"@react-stately/radio": "3.5.0",
"@react-stately/table": "3.3.0",
"@react-stately/toggle": "3.4.0",
"@react-stately/tree": "3.3.2",
"@react-types/button": "^3.6.0",
"@react-types/checkbox": "3.3.2",
"@react-types/grid": "3.1.2",
"@react-types/menu": "3.7.0",
"@react-types/overlays": "3.6.2",
"@react-types/shared": "3.14.0",
"@stitches/react": "1.2.8"
}
},
"@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
"dev": true,
"requires": {
"@nodelib/fs.stat": "2.0.5",
"run-parallel": "^1.1.9"
}
},
"@nodelib/fs.stat": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
"dev": true
},
"@nodelib/fs.walk": {
"version": "1.2.7",
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.7.tgz",
"integrity": "sha512-BTIhocbPBSrRmHxOAJFtR18oLhxTtAFDAvL8hY1S3iU8k+E60W/YFs4jrixGzQjMpF4qPXxIQHcjVD9dz1C2QA==",
"dev": true,
"requires": {
"@nodelib/fs.scandir": "2.1.5",
"fastq": "^1.6.0"
}
},
"@react-aria/button": {
"version": "3.6.0",
"resolved": "https://registry.npmmirror.com/@react-aria/button/-/button-3.6.0.tgz",
"integrity": "sha512-+I+raFN5Kw85WzgmiIEQG0JhJ+WSCWJRSCgA0Nc4Wvjkm7gQSRvhSzSZiI7HQxz43h0MgFbuX/ruRn1WKPLsLg==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-aria/focus": "^3.7.0",
"@react-aria/interactions": "^3.10.0",
"@react-aria/utils": "^3.13.2",
"@react-stately/toggle": "^3.4.0",
"@react-types/button": "^3.6.0",
"@react-types/shared": "^3.14.0"
}
},
"@react-aria/checkbox": {
"version": "3.5.0",
"resolved": "https://registry.npmmirror.com/@react-aria/checkbox/-/checkbox-3.5.0.tgz",
"integrity": "sha512-U3SXfiVus/aF3S3v9aTPILRZBnUzHs5JJhile9CXIe1YoPam8u12s4G+aS55rrwoa3XLcnvZbPbwlShcc8bjaA==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-aria/label": "^3.4.0",
"@react-aria/toggle": "^3.3.2",
"@react-aria/utils": "^3.13.2",
"@react-stately/checkbox": "^3.2.0",
"@react-stately/toggle": "^3.4.0",
"@react-types/checkbox": "^3.3.2",
"@react-types/shared": "^3.14.0"
}
},
"@react-aria/dialog": {
"version": "3.3.0",
"resolved": "https://registry.npmmirror.com/@react-aria/dialog/-/dialog-3.3.0.tgz",
"integrity": "sha512-kzJLjIYIRpK+ASOpOSY56sE6l+rpmk4QvIqTjrqlynXdneGVgNVu3OxX37U73Zn53is7ivbT+TugCzHTgle0qg==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-aria/focus": "^3.7.0",
"@react-aria/utils": "^3.13.2",
"@react-stately/overlays": "^3.4.0",
"@react-types/dialog": "^3.4.2",
"@react-types/shared": "^3.14.0"
}
},
"@react-aria/focus": {
"version": "3.7.0",
"resolved": "https://registry.npmmirror.com/@react-aria/focus/-/focus-3.7.0.tgz",
"integrity": "sha512-LydZSLBLEUklakM0Ogdk17F3f/Uwaj5Nl1mfcK8HhrroGT8A8XH0KjA9D6gM6JGHgxZemx0ufOgxhQZeBGQMQw==",
"requires": {
"@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": {
"version": "3.5.0",
"resolved": "https://registry.npmmirror.com/@react-aria/grid/-/grid-3.5.0.tgz",
"integrity": "sha512-Kz92WIu8Ef55JeO0TUv58jKF5qRH0a8iuYwBeonfaRlHPFUd0jymcU7PJnm80RRpsG17FMshTGewo5ko3khDfA==",
"requires": {
"@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/live-announcer": "^3.1.1",
"@react-aria/selection": "^3.11.0",
"@react-aria/utils": "^3.14.0",
"@react-stately/grid": "^3.4.0",
"@react-stately/selection": "^3.11.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"
},
"dependencies": {
"@react-aria/focus": {
"version": "3.9.0",
"resolved": "https://registry.npmmirror.com/@react-aria/focus/-/focus-3.9.0.tgz",
"integrity": "sha512-DwesjEjWjFfwAwzv9qeqkyKZNPAYmPa3UrygxzmXeKEg2JpaACGZPxRcmT2EFJFEDbX8daQDEeRGyLO49o5agg==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-aria/interactions": "^3.12.0",
"@react-aria/utils": "^3.14.0",
"@react-types/shared": "^3.15.0",
"clsx": "^1.1.1"
}
},
"@react-aria/i18n": {
"version": "3.6.1",
"resolved": "https://registry.npmmirror.com/@react-aria/i18n/-/i18n-3.6.1.tgz",
"integrity": "sha512-kAetWsj9HOqwaqLhmFU2udhZ+4QGGYkQOgGBJYdrB7GfLZQ1GPBlZjv3QFdkX4oSf/k9cFqgftxvVQQDYZLOew==",
"requires": {
"@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/interactions": {
"version": "3.12.0",
"resolved": "https://registry.npmmirror.com/@react-aria/interactions/-/interactions-3.12.0.tgz",
"integrity": "sha512-KcKurjPZwme9ggvGQjbjqZtZtuyXipTBVMHUah9a3+Dz7vXxhRg5vFaEdM79oQnNsrGFW5xS6SKBehl/JG6BMw==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-aria/utils": "^3.14.0",
"@react-types/shared": "^3.15.0"
}
},
"@react-aria/utils": {
"version": "3.14.0",
"resolved": "https://registry.npmmirror.com/@react-aria/utils/-/utils-3.14.0.tgz",
"integrity": "sha512-DHgmwNBNEhnb6DEYYAfbt99wprBqJJOBBeIpQ2g3+pxwlw4BZ+v4Qr+rDD0ZibWV0mYzt8zOhZ9StpId7iTF0Q==",
"requires": {
"@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-types/checkbox": {
"version": "3.4.0",
"resolved": "https://registry.npmmirror.com/@react-types/checkbox/-/checkbox-3.4.0.tgz",
"integrity": "sha512-ZDqbtAYWWSGPjL4ydinaWHrD65Qft9yEGA6BCKQTxdJCgxiXxgGkA3pI7Sxwk+OulR+O0CYJ1JROExM9cSJyyQ==",
"requires": {
"@react-types/shared": "^3.15.0"
}
},
"@react-types/grid": {
"version": "3.1.4",
"resolved": "https://registry.npmmirror.com/@react-types/grid/-/grid-3.1.4.tgz",
"integrity": "sha512-i9f2VEnlex5BFV/AdSUGg71xoukn2i/XT2VLxUXUagy23gFxKJk9Xr3BT9bw+pRRLPwm/Ib+h9ELUdgi8lUAKA==",
"requires": {
"@react-types/shared": "^3.15.0"
}
},
"@react-types/shared": {
"version": "3.15.0",
"resolved": "https://registry.npmmirror.com/@react-types/shared/-/shared-3.15.0.tgz",
"integrity": "sha512-hwuE4BmgswqP+HRDSLMj7DcnYOCCK+ZRuKnc9AVhXS4LBrwRSkdUkNvXhgvqF5tav7IqTpG9pBYMR9wedehuhA=="
}
}
},
"@react-aria/i18n": {
"version": "3.5.1",
"resolved": "https://registry.npmmirror.com/@react-aria/i18n/-/i18n-3.5.1.tgz",
"integrity": "sha512-PtlQ/W1PXVKzCGK86MuGuCzYBwENDBjrQ2a4ux+BBQ2Dk8ZXEARSp9JaMFuOdiloXc/p4FoxCVoB+lhu4RCScg==",
"requires": {
"@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.13.2",
"@react-types/shared": "^3.14.0"
}
},
"@react-aria/interactions": {
"version": "3.10.0",
"resolved": "https://registry.npmmirror.com/@react-aria/interactions/-/interactions-3.10.0.tgz",
"integrity": "sha512-Lp74VfF+EskT3IqK2MBMdJpJU48p60+YkMbgtoDF6LudNO8jw0nxcsvnimPriTSkZWINRpajG/9sIa0EIDcQKw==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-aria/utils": "^3.13.2",
"@react-types/shared": "^3.14.0"
}
},
"@react-aria/label": {
"version": "3.4.0",
"resolved": "https://registry.npmmirror.com/@react-aria/label/-/label-3.4.0.tgz",
"integrity": "sha512-QqyZMuSdnH+7mkAbZbGtLU3NhSz2luNCeM+ZJPQ3ANegrdXsKwERSwD2/ERHAC5FGLqwlzXnPhRcYdvjafg/Ug==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-aria/utils": "^3.13.2",
"@react-types/label": "^3.6.2",
"@react-types/shared": "^3.14.0"
}
},
"@react-aria/link": {
"version": "3.3.1",
"resolved": "https://registry.npmmirror.com/@react-aria/link/-/link-3.3.1.tgz",
"integrity": "sha512-so77s4IjZo8VGi85v6oDUzsQRoAwQH4LUUUpDLbKxEb5YaiN4/3yCVibeZrWzIzOTCOyLMXPbGwxHOUsl8EhVg==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-aria/focus": "^3.6.1",
"@react-aria/interactions": "^3.9.1",
"@react-aria/utils": "^3.13.1",
"@react-types/link": "^3.3.1",
"@react-types/shared": "^3.13.1"
}
},
"@react-aria/live-announcer": {
"version": "3.1.1",
"resolved": "https://registry.npmmirror.com/@react-aria/live-announcer/-/live-announcer-3.1.1.tgz",
"integrity": "sha512-e7b+dRh1SUTla42vzjdbhGYkeLD7E6wIYjYaHW9zZ37rBkSqLHUhTigh3eT3k5NxFlDD/uRxTYuwaFnWQgR+4g==",
"requires": {
"@babel/runtime": "^7.6.2"
}
},
"@react-aria/menu": {
"version": "3.6.0",
"resolved": "https://registry.npmmirror.com/@react-aria/menu/-/menu-3.6.0.tgz",
"integrity": "sha512-s083I10XG/K06V7wOF+VYGgUwg6ZwlmsmLlrXyFRzCVK6LXimNNC/mOeSZet6m4R4H1svtH+US/v+/eD6pkdUQ==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-aria/i18n": "^3.5.0",
"@react-aria/interactions": "^3.10.0",
"@react-aria/overlays": "^3.10.0",
"@react-aria/selection": "^3.10.0",
"@react-aria/utils": "^3.13.2",
"@react-stately/collections": "^3.4.2",
"@react-stately/menu": "^3.4.0",
"@react-stately/tree": "^3.3.2",
"@react-types/button": "^3.6.0",
"@react-types/menu": "^3.7.0",
"@react-types/shared": "^3.14.0"
}
},
"@react-aria/overlays": {
"version": "3.10.0",
"resolved": "https://registry.npmmirror.com/@react-aria/overlays/-/overlays-3.10.0.tgz",
"integrity": "sha512-A7aI59/o4tUAISjyyRfJz3833SLe4ZKPNoxOVUzgjfkfnCKq7YDSSEC5poxDqYD9bq/NBXK6stdgaGLXQSirNw==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-aria/i18n": "^3.5.0",
"@react-aria/interactions": "^3.10.0",
"@react-aria/ssr": "^3.3.0",
"@react-aria/utils": "^3.13.2",
"@react-aria/visually-hidden": "^3.4.0",
"@react-stately/overlays": "^3.4.0",
"@react-types/button": "^3.6.0",
"@react-types/overlays": "^3.6.2",
"@react-types/shared": "^3.14.0"
}
},
"@react-aria/radio": {
"version": "3.3.0",
"resolved": "https://registry.npmmirror.com/@react-aria/radio/-/radio-3.3.0.tgz",
"integrity": "sha512-UhPxFVYKaPI8a9bF6XOl5Q7lbgW7YlrLTHnjOhxiUWvyyOsOnseiSgF9TqSfhhsF7HNYdOt1u3Xwx3vrHniCBg==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-aria/focus": "^3.7.0",
"@react-aria/i18n": "^3.5.0",
"@react-aria/interactions": "^3.10.0",
"@react-aria/label": "^3.4.0",
"@react-aria/utils": "^3.13.2",
"@react-stately/radio": "^3.5.0",
"@react-types/radio": "^3.2.2",
"@react-types/shared": "^3.14.0"
}
},
"@react-aria/selection": {
"version": "3.11.0",
"resolved": "https://registry.npmmirror.com/@react-aria/selection/-/selection-3.11.0.tgz",
"integrity": "sha512-2Qcv0PxXqOrYYT1oL+TOaB+lE/jhIPzVEPHVmf8HYzEMP5WBYP8Q+R9no5s8x++b1W0DsbUVwmk9szY48O9Bmw==",
"requires": {
"@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/utils": "^3.14.0",
"@react-stately/collections": "^3.4.4",
"@react-stately/selection": "^3.11.0",
"@react-types/shared": "^3.15.0"
},
"dependencies": {
"@react-aria/focus": {
"version": "3.9.0",
"resolved": "https://registry.npmmirror.com/@react-aria/focus/-/focus-3.9.0.tgz",
"integrity": "sha512-DwesjEjWjFfwAwzv9qeqkyKZNPAYmPa3UrygxzmXeKEg2JpaACGZPxRcmT2EFJFEDbX8daQDEeRGyLO49o5agg==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-aria/interactions": "^3.12.0",
"@react-aria/utils": "^3.14.0",
"@react-types/shared": "^3.15.0",
"clsx": "^1.1.1"
}
},
"@react-aria/i18n": {
"version": "3.6.1",
"resolved": "https://registry.npmmirror.com/@react-aria/i18n/-/i18n-3.6.1.tgz",
"integrity": "sha512-kAetWsj9HOqwaqLhmFU2udhZ+4QGGYkQOgGBJYdrB7GfLZQ1GPBlZjv3QFdkX4oSf/k9cFqgftxvVQQDYZLOew==",
"requires": {
"@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/interactions": {
"version": "3.12.0",
"resolved": "https://registry.npmmirror.com/@react-aria/interactions/-/interactions-3.12.0.tgz",
"integrity": "sha512-KcKurjPZwme9ggvGQjbjqZtZtuyXipTBVMHUah9a3+Dz7vXxhRg5vFaEdM79oQnNsrGFW5xS6SKBehl/JG6BMw==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-aria/utils": "^3.14.0",
"@react-types/shared": "^3.15.0"
}
},
"@react-aria/utils": {
"version": "3.14.0",
"resolved": "https://registry.npmmirror.com/@react-aria/utils/-/utils-3.14.0.tgz",
"integrity": "sha512-DHgmwNBNEhnb6DEYYAfbt99wprBqJJOBBeIpQ2g3+pxwlw4BZ+v4Qr+rDD0ZibWV0mYzt8zOhZ9StpId7iTF0Q==",
"requires": {
"@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-types/shared": {
"version": "3.15.0",
"resolved": "https://registry.npmmirror.com/@react-types/shared/-/shared-3.15.0.tgz",
"integrity": "sha512-hwuE4BmgswqP+HRDSLMj7DcnYOCCK+ZRuKnc9AVhXS4LBrwRSkdUkNvXhgvqF5tav7IqTpG9pBYMR9wedehuhA=="
}
}
},
"@react-aria/ssr": {
"version": "3.3.0",
"resolved": "https://registry.npmmirror.com/@react-aria/ssr/-/ssr-3.3.0.tgz",
"integrity": "sha512-yNqUDuOVZIUGP81R87BJVi/ZUZp/nYOBXbPsRe7oltJOfErQZD+UezMpw4vM2KRz18cURffvmC8tJ6JTeyDtaQ==",
"requires": {
"@babel/runtime": "^7.6.2"
}
},
"@react-aria/table": {
"version": "3.4.0",
"resolved": "https://registry.npmmirror.com/@react-aria/table/-/table-3.4.0.tgz",
"integrity": "sha512-a3yYKRtadGzMrOJlGy2AGf2w2baESYgM2hZnB4YupBrcKJ/91BMpAbpAMolCI02av+Tz0BtAKh0kSs7nEsiiuA==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-aria/focus": "^3.7.0",
"@react-aria/grid": "^3.4.0",
"@react-aria/i18n": "^3.5.0",
"@react-aria/interactions": "^3.10.0",
"@react-aria/live-announcer": "^3.1.1",
"@react-aria/selection": "^3.10.0",
"@react-aria/utils": "^3.13.2",
"@react-stately/table": "^3.3.0",
"@react-stately/virtualizer": "^3.2.2",
"@react-types/checkbox": "^3.3.2",
"@react-types/grid": "^3.1.2",
"@react-types/shared": "^3.14.0",
"@react-types/table": "^3.3.0"
}
},
"@react-aria/toggle": {
"version": "3.4.0",
"resolved": "https://registry.npmmirror.com/@react-aria/toggle/-/toggle-3.4.0.tgz",
"integrity": "sha512-kQ/CuStB64QcQtT5Kovj4cJ234CotH5et77CP9ctsT37w5lc/t4iDWDTJxf2ju9atPeMh+efqsnRY34lhK2cBA==",
"requires": {
"@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/checkbox": "^3.4.0",
"@react-types/shared": "^3.15.0",
"@react-types/switch": "^3.2.4"
},
"dependencies": {
"@react-aria/focus": {
"version": "3.9.0",
"resolved": "https://registry.npmmirror.com/@react-aria/focus/-/focus-3.9.0.tgz",
"integrity": "sha512-DwesjEjWjFfwAwzv9qeqkyKZNPAYmPa3UrygxzmXeKEg2JpaACGZPxRcmT2EFJFEDbX8daQDEeRGyLO49o5agg==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-aria/interactions": "^3.12.0",
"@react-aria/utils": "^3.14.0",
"@react-types/shared": "^3.15.0",
"clsx": "^1.1.1"
}
},
"@react-aria/interactions": {
"version": "3.12.0",
"resolved": "https://registry.npmmirror.com/@react-aria/interactions/-/interactions-3.12.0.tgz",
"integrity": "sha512-KcKurjPZwme9ggvGQjbjqZtZtuyXipTBVMHUah9a3+Dz7vXxhRg5vFaEdM79oQnNsrGFW5xS6SKBehl/JG6BMw==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-aria/utils": "^3.14.0",
"@react-types/shared": "^3.15.0"
}
},
"@react-aria/utils": {
"version": "3.14.0",
"resolved": "https://registry.npmmirror.com/@react-aria/utils/-/utils-3.14.0.tgz",
"integrity": "sha512-DHgmwNBNEhnb6DEYYAfbt99wprBqJJOBBeIpQ2g3+pxwlw4BZ+v4Qr+rDD0ZibWV0mYzt8zOhZ9StpId7iTF0Q==",
"requires": {
"@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-stately/toggle": {
"version": "3.4.2",
"resolved": "https://registry.npmmirror.com/@react-stately/toggle/-/toggle-3.4.2.tgz",
"integrity": "sha512-+pO13Ap/tj4optu6VjQrEAaAoZvJAEwarMUaZvrkc0kdvMTNPdiT/2vhN32yvsSW0ssuFqToa3jMrTylCbpo8w==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-stately/utils": "^3.5.1",
"@react-types/checkbox": "^3.4.0",
"@react-types/shared": "^3.15.0"
}
},
"@react-types/checkbox": {
"version": "3.4.0",
"resolved": "https://registry.npmmirror.com/@react-types/checkbox/-/checkbox-3.4.0.tgz",
"integrity": "sha512-ZDqbtAYWWSGPjL4ydinaWHrD65Qft9yEGA6BCKQTxdJCgxiXxgGkA3pI7Sxwk+OulR+O0CYJ1JROExM9cSJyyQ==",
"requires": {
"@react-types/shared": "^3.15.0"
}
},
"@react-types/shared": {
"version": "3.15.0",
"resolved": "https://registry.npmmirror.com/@react-types/shared/-/shared-3.15.0.tgz",
"integrity": "sha512-hwuE4BmgswqP+HRDSLMj7DcnYOCCK+ZRuKnc9AVhXS4LBrwRSkdUkNvXhgvqF5tav7IqTpG9pBYMR9wedehuhA=="
}
}
},
"@react-aria/utils": {
"version": "3.13.2",
"resolved": "https://registry.npmmirror.com/@react-aria/utils/-/utils-3.13.2.tgz",
"integrity": "sha512-VTI8tv9m/BxE/lPTNCZN1fcHuY540xm+HT1vg2ZQCryudUWvzQkHi+h0z32DhiGHhvRFIGdH/enf3psip7ZLTQ==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-aria/ssr": "^3.3.0",
"@react-stately/utils": "^3.5.1",
"@react-types/shared": "^3.14.0",
"clsx": "^1.1.1"
}
},
"@react-aria/visually-hidden": {
"version": "3.4.0",
"resolved": "https://registry.npmmirror.com/@react-aria/visually-hidden/-/visually-hidden-3.4.0.tgz",
"integrity": "sha512-mRl4Vfg7F0ohf7N3RWdOQLUnXC4ApM3hsfBegsRQHDkbbrcq7MGPyCa154kIZg8Ff2cOtbgvrAlymzWmkOVZEQ==",
"requires": {
"@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-stately/checkbox": {
"version": "3.2.0",
"resolved": "https://registry.npmmirror.com/@react-stately/checkbox/-/checkbox-3.2.0.tgz",
"integrity": "sha512-nVO/asz7MTF5nLJcMMq5KgNlk4npckq+7nQvEVW6pyob5r2m7Lvd+Zhl4oKT0WtTIzg31VB6yRew1czKx/SUpA==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-stately/toggle": "^3.4.0",
"@react-stately/utils": "^3.5.1",
"@react-types/checkbox": "^3.3.2"
}
},
"@react-stately/collections": {
"version": "3.4.4",
"resolved": "https://registry.npmmirror.com/@react-stately/collections/-/collections-3.4.4.tgz",
"integrity": "sha512-gryUYCe6uzqE0ea5frTwOxOPpx/6Z42PRk7KetOh3ddN3Ts0j8XQP08jP1IB/7BC1QidrkHWvDCqGHxRiEjiIg==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-types/shared": "^3.15.0"
},
"dependencies": {
"@react-types/shared": {
"version": "3.15.0",
"resolved": "https://registry.npmmirror.com/@react-types/shared/-/shared-3.15.0.tgz",
"integrity": "sha512-hwuE4BmgswqP+HRDSLMj7DcnYOCCK+ZRuKnc9AVhXS4LBrwRSkdUkNvXhgvqF5tav7IqTpG9pBYMR9wedehuhA=="
}
}
},
"@react-stately/data": {
"version": "3.6.0",
"resolved": "https://registry.npmmirror.com/@react-stately/data/-/data-3.6.0.tgz",
"integrity": "sha512-psuc5nziuPWYdxIFhXEt9DBT+cuhOCyGPz8cOP5RuWFfSM4r583M0SYrsi5YXCvUwhZEFFQNbapxJFfMpAHPtw==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-types/shared": "^3.14.0"
}
},
"@react-stately/grid": {
"version": "3.4.0",
"resolved": "https://registry.npmmirror.com/@react-stately/grid/-/grid-3.4.0.tgz",
"integrity": "sha512-Y7UrmLUAv4wW70Mb9lueawd3KEnYgAS7yNSTJn/TTZpA+6Elx3DDdjXH5pG/JiG1ot740ixOkP8feEpr8qk4bg==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-stately/selection": "^3.11.0",
"@react-types/grid": "^3.1.4",
"@react-types/shared": "^3.15.0"
},
"dependencies": {
"@react-types/grid": {
"version": "3.1.4",
"resolved": "https://registry.npmmirror.com/@react-types/grid/-/grid-3.1.4.tgz",
"integrity": "sha512-i9f2VEnlex5BFV/AdSUGg71xoukn2i/XT2VLxUXUagy23gFxKJk9Xr3BT9bw+pRRLPwm/Ib+h9ELUdgi8lUAKA==",
"requires": {
"@react-types/shared": "^3.15.0"
}
},
"@react-types/shared": {
"version": "3.15.0",
"resolved": "https://registry.npmmirror.com/@react-types/shared/-/shared-3.15.0.tgz",
"integrity": "sha512-hwuE4BmgswqP+HRDSLMj7DcnYOCCK+ZRuKnc9AVhXS4LBrwRSkdUkNvXhgvqF5tav7IqTpG9pBYMR9wedehuhA=="
}
}
},
"@react-stately/menu": {
"version": "3.4.2",
"resolved": "https://registry.npmmirror.com/@react-stately/menu/-/menu-3.4.2.tgz",
"integrity": "sha512-vFC8EloVEcqf6sgiP6ABIkC41ytjoJiGtj7Ws5OS7PvZNyxxDgJr4V0O3Pxd1T0AjlHCloBbojnvoTRwZiSr/A==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-stately/overlays": "^3.4.2",
"@react-stately/utils": "^3.5.1",
"@react-types/menu": "^3.7.2",
"@react-types/shared": "^3.15.0"
},
"dependencies": {
"@react-stately/overlays": {
"version": "3.4.2",
"resolved": "https://registry.npmmirror.com/@react-stately/overlays/-/overlays-3.4.2.tgz",
"integrity": "sha512-UTCnn0aT+JL4ZhYPQYUWHwhmuR2T3vKTFUEZeZN9sTuDCctg08VfGoASJx8qofqkLwYJXeb8D5PMhhTDPiUQPw==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-stately/utils": "^3.5.1",
"@react-types/overlays": "^3.6.4"
}
},
"@react-types/menu": {
"version": "3.7.2",
"resolved": "https://registry.npmmirror.com/@react-types/menu/-/menu-3.7.2.tgz",
"integrity": "sha512-BXMWrT3VCP6NTf0y7v1YYqRJNXkUKLzGXI+n7Qv9+aiZZfd3NNMyk20byHczhFoT2yuCcU5xhyOXzkxSo6ew3A==",
"requires": {
"@react-types/overlays": "^3.6.4",
"@react-types/shared": "^3.15.0"
}
},
"@react-types/overlays": {
"version": "3.6.4",
"resolved": "https://registry.npmmirror.com/@react-types/overlays/-/overlays-3.6.4.tgz",
"integrity": "sha512-REC4IyDUHS5WhwxMxcvTo+LdrvlSYpJKjyYkPFtJoDBpM3gmXfakTY3KW6K5eZkFv3TnmXjDF9Q2yboEk2u6WQ==",
"requires": {
"@react-types/shared": "^3.15.0"
}
},
"@react-types/shared": {
"version": "3.15.0",
"resolved": "https://registry.npmmirror.com/@react-types/shared/-/shared-3.15.0.tgz",
"integrity": "sha512-hwuE4BmgswqP+HRDSLMj7DcnYOCCK+ZRuKnc9AVhXS4LBrwRSkdUkNvXhgvqF5tav7IqTpG9pBYMR9wedehuhA=="
}
}
},
"@react-stately/overlays": {
"version": "3.4.0",
"resolved": "https://registry.npmmirror.com/@react-stately/overlays/-/overlays-3.4.0.tgz",
"integrity": "sha512-jXVm1V91lWOKh73cFvE9W9JtAE8idSWEUtFlVrlBI/jh0ZOt148UlRVWgHrm7FhaUpyvOFNUyfidRmKMuB+hgw==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-stately/utils": "^3.5.1",
"@react-types/overlays": "^3.6.2"
}
},
"@react-stately/radio": {
"version": "3.5.0",
"resolved": "https://registry.npmmirror.com/@react-stately/radio/-/radio-3.5.0.tgz",
"integrity": "sha512-qn4+wa9sf3zZXSLrrR9rQpOII8BEQeAkvxyq/YhUQXBpQ8SoF5LobpGIZqp3n8G+Cxzjxd6/GON+lOFxWr0iXA==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-stately/utils": "^3.5.1",
"@react-types/radio": "^3.2.2"
}
},
"@react-stately/selection": {
"version": "3.11.0",
"resolved": "https://registry.npmmirror.com/@react-stately/selection/-/selection-3.11.0.tgz",
"integrity": "sha512-cBgDzH+AY+bMEROJbcZFdhbMk0vgiwyqBB8ZKLtCL7EOHs2xeynTAohRM+/t27U/tF91o4qHPFo67Tkxrd16Bg==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-stately/collections": "^3.4.4",
"@react-stately/utils": "^3.5.1",
"@react-types/shared": "^3.15.0"
},
"dependencies": {
"@react-types/shared": {
"version": "3.15.0",
"resolved": "https://registry.npmmirror.com/@react-types/shared/-/shared-3.15.0.tgz",
"integrity": "sha512-hwuE4BmgswqP+HRDSLMj7DcnYOCCK+ZRuKnc9AVhXS4LBrwRSkdUkNvXhgvqF5tav7IqTpG9pBYMR9wedehuhA=="
}
}
},
"@react-stately/table": {
"version": "3.3.0",
"resolved": "https://registry.npmmirror.com/@react-stately/table/-/table-3.3.0.tgz",
"integrity": "sha512-qhZdgyD0EyePW/U/VlJCGLBNuzo2H1hQSgfRJ7+E5QVbqDwUUQ6Safz1EQ3Jhh64IcTDqxvKL3arr8THT7UKdA==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-stately/collections": "^3.4.2",
"@react-stately/grid": "^3.3.0",
"@react-stately/selection": "^3.10.2",
"@react-types/grid": "^3.1.2",
"@react-types/shared": "^3.14.0",
"@react-types/table": "^3.3.0"
}
},
"@react-stately/toggle": {
"version": "3.4.0",
"resolved": "https://registry.npmmirror.com/@react-stately/toggle/-/toggle-3.4.0.tgz",
"integrity": "sha512-7kPxR2+Aze7NmpWWOQanRsQvmz7R+Sdlu+2xi0Wh5LPFg+lkXSiGY63uM2amxZcbFb0Mhy5ExlRpF53ReZjEOA==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-stately/utils": "^3.5.1",
"@react-types/checkbox": "^3.3.2",
"@react-types/shared": "^3.14.0"
}
},
"@react-stately/tree": {
"version": "3.3.2",
"resolved": "https://registry.npmmirror.com/@react-stately/tree/-/tree-3.3.2.tgz",
"integrity": "sha512-goviIXFYZvWJ2FOBQdKHfLwCaFUlhyGCsbX9GB7ziZhm0Ez8iWCzEy1IWoeuPaprBlHIPv6/3XtDi4ZQ52A59g==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-stately/collections": "^3.4.2",
"@react-stately/selection": "^3.10.2",
"@react-stately/utils": "^3.5.1",
"@react-types/shared": "^3.14.0"
}
},
"@react-stately/utils": {
"version": "3.5.1",
"resolved": "https://registry.npmmirror.com/@react-stately/utils/-/utils-3.5.1.tgz",
"integrity": "sha512-INeQ5Er2Jm+db8Py4upKBtgfzp3UYgwXYmbU/XJn49Xw27ktuimH9e37qP3bgHaReb5L3g8IrGs38tJUpnGPHA==",
"requires": {
"@babel/runtime": "^7.6.2"
}
},
"@react-stately/virtualizer": {
"version": "3.3.1",
"resolved": "https://registry.npmmirror.com/@react-stately/virtualizer/-/virtualizer-3.3.1.tgz",
"integrity": "sha512-1bjvrLLto3TewJRfe4bCrRKYUAdE6lPB9fn3kQhpxbWb4KW1Xl7ar/waL7JDzpwxTBbwzbxCS6nL03YxSt5tIw==",
"requires": {
"@babel/runtime": "^7.6.2",
"@react-aria/utils": "^3.14.0",