-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
19814 lines (19814 loc) · 742 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": "rsp-next-ts",
"version": "0.1.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"version": "0.1.0",
"dependencies": {
"@adobe/react-spectrum": "^3.12.0",
"@spectrum-icons/illustrations": "^3.2.2-nightly.2842",
"@spectrum-icons/workflow": "^3.0.0-nightly.1157",
"next": "11.0.1",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@types/react": "17.0.15",
"eslint": "7.31.0",
"eslint-config-next": "11.0.1",
"next-compose-plugins": "^2.2.1",
"next-transpile-modules": "^8.0.0",
"typescript": "4.3.5"
}
},
"node_modules/@adobe/react-spectrum": {
"version": "3.12.0",
"resolved": "https://registry.npmjs.org/@adobe/react-spectrum/-/react-spectrum-3.12.0.tgz",
"integrity": "sha512-LlgmESo9LyECfDTYwtpL3xMP7/USo5OLw36pkMMeLT4Qdt/y8mg/81iD3KkSUoPe4MkfzgjZlK+AfeZ4t5hyMQ==",
"dependencies": {
"@react-aria/i18n": "^3.3.1",
"@react-aria/ssr": "^3.0.2",
"@react-aria/visually-hidden": "^3.2.2",
"@react-spectrum/actiongroup": "^3.2.0",
"@react-spectrum/breadcrumbs": "^3.2.2",
"@react-spectrum/button": "^3.5.0",
"@react-spectrum/buttongroup": "^3.2.1",
"@react-spectrum/checkbox": "^3.2.3",
"@react-spectrum/combobox": "^3.0.0",
"@react-spectrum/dialog": "^3.3.2",
"@react-spectrum/divider": "^3.1.2",
"@react-spectrum/form": "^3.2.2",
"@react-spectrum/icon": "^3.3.1",
"@react-spectrum/illustratedmessage": "^3.1.2",
"@react-spectrum/image": "^3.1.2",
"@react-spectrum/layout": "^3.2.0",
"@react-spectrum/link": "^3.1.2",
"@react-spectrum/listbox": "^3.5.0",
"@react-spectrum/menu": "^3.3.0",
"@react-spectrum/meter": "^3.1.2",
"@react-spectrum/numberfield": "^3.0.0",
"@react-spectrum/overlays": "^3.4.3",
"@react-spectrum/picker": "^3.3.0",
"@react-spectrum/progress": "^3.1.2",
"@react-spectrum/provider": "^3.2.1",
"@react-spectrum/radio": "^3.1.3",
"@react-spectrum/searchfield": "^3.1.4",
"@react-spectrum/slider": "^3.0.3",
"@react-spectrum/statuslight": "^3.2.1",
"@react-spectrum/switch": "^3.1.2",
"@react-spectrum/tabs": "^3.0.0",
"@react-spectrum/text": "^3.1.2",
"@react-spectrum/textfield": "^3.1.6",
"@react-spectrum/theme-dark": "^3.2.1",
"@react-spectrum/theme-default": "^3.2.1",
"@react-spectrum/theme-light": "^3.1.1",
"@react-spectrum/tooltip": "^3.1.3",
"@react-spectrum/view": "^3.1.2",
"@react-spectrum/well": "^3.1.2",
"@react-stately/collections": "^3.3.2",
"@react-stately/data": "^3.4.0"
}
},
"node_modules/@adobe/react-spectrum-ui": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@adobe/react-spectrum-ui/-/react-spectrum-ui-1.0.2.tgz",
"integrity": "sha512-sHMFmWEvK+aA5fxmWpnB+/Tpa+0ZI5IclX3LLkAuFsCGU7aIh/VIymzvAVRiZ7DuM0G7ujq975h4fK4aFzcHdg==",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1",
"react-dom": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@adobe/react-spectrum-workflow": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@adobe/react-spectrum-workflow/-/react-spectrum-workflow-1.0.2.tgz",
"integrity": "sha512-4phKdzoH7sPqlIX4kFQNZ8oXRZ4tupBkUoWZq1hRaN551fh8Ne/+Kt/IXyouZWWddLBcUncU2EqdHKInWrtNWw==",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1",
"react-dom": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@babel/code-frame": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz",
"integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==",
"dependencies": {
"@babel/highlight": "^7.10.4"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.14.8",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.8.tgz",
"integrity": "sha512-ZGy6/XQjllhYQrNw/3zfWRwZCTVSiBLZ9DHVZxn9n2gip/7ab8mv2TWlKPIBk26RwedCBoWdjLmn+t9na2Gcow==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz",
"integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.14.5",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/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/runtime-corejs3": {
"version": "7.14.8",
"resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.14.8.tgz",
"integrity": "sha512-4dMD5QRBkumn45oweR0SxoNtt15oz3BUBAQ8cIx7HJqZTtE8zjpM0My8aHJHVnyf4XfRg6DNzaE1080WLBiC1w==",
"dev": true,
"dependencies": {
"core-js-pure": "^3.15.0",
"regenerator-runtime": "^0.13.4"
},
"engines": {
"node": ">=6.9.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/@eslint/eslintrc": {
"version": "0.4.3",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz",
"integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==",
"dev": true,
"dependencies": {
"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"
},
"engines": {
"node": "^10.12.0 || >=12.0.0"
}
},
"node_modules/@eslint/eslintrc/node_modules/debug": {
"version": "4.3.2",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz",
"integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==",
"dev": true,
"dependencies": {
"ms": "2.1.2"
},
"engines": {
"node": ">=6.0"
},
"peerDependenciesMeta": {
"supports-color": {
"optional": true
}
}
},
"node_modules/@eslint/eslintrc/node_modules/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
},
"node_modules/@formatjs/ecma402-abstract": {
"version": "1.9.5",
"resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-1.9.5.tgz",
"integrity": "sha512-cGpEBzrf9bL2lTMEuRZ3gjLrEUEucxAXDIdX4tNqNdNZO81ZN558BfjiFfyPgrhILEuJU/+sgLwWxddSn6usHw==",
"dependencies": {
"@formatjs/intl-localematcher": "0.2.18",
"tslib": "^2.1.0"
}
},
"node_modules/@formatjs/ecma402-abstract/node_modules/tslib": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz",
"integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg=="
},
"node_modules/@formatjs/fast-memoize": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@formatjs/fast-memoize/-/fast-memoize-1.1.1.tgz",
"integrity": "sha512-mIqBr5uigIlx13eZTOPSEh2buDiy3BCdMYUtewICREQjbb4xarDiVWoXSnrERM7NanZ+0TAHNXSqDe6HpEFQUg=="
},
"node_modules/@formatjs/icu-messageformat-parser": {
"version": "2.0.8",
"resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.0.8.tgz",
"integrity": "sha512-fZlQ7ls3eQswO4RFB0lSi+ritPvud0Z2EQB6SU8qI5+MIS4qU4AHjq/dFJNvhdEdmJqLWHe31K4yHaRdavkSQQ==",
"dependencies": {
"@formatjs/ecma402-abstract": "1.9.5",
"@formatjs/icu-skeleton-parser": "1.2.9",
"tslib": "^2.1.0"
}
},
"node_modules/@formatjs/icu-messageformat-parser/node_modules/tslib": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz",
"integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg=="
},
"node_modules/@formatjs/icu-skeleton-parser": {
"version": "1.2.9",
"resolved": "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.2.9.tgz",
"integrity": "sha512-cx8Ug1gxRtv0rRddWd6dt5Sn/BhnhktSHvokbmLUVOEp2dy/6Ehvv2e00wow28AaSIzvBvM6ew1Qwe9wzDzcOw==",
"dependencies": {
"@formatjs/ecma402-abstract": "1.9.5",
"tslib": "^2.1.0"
}
},
"node_modules/@formatjs/icu-skeleton-parser/node_modules/tslib": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz",
"integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg=="
},
"node_modules/@formatjs/intl-localematcher": {
"version": "0.2.18",
"resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.2.18.tgz",
"integrity": "sha512-xI9X+mi7wbucbh35GNTY+C0+oMJXAp8ueC73SOyJlBpRNjLuOlSwgw3yJaCZxy3WpjcRBCP0laJ5zlpITO0QpA==",
"dependencies": {
"tslib": "^2.1.0"
}
},
"node_modules/@formatjs/intl-localematcher/node_modules/tslib": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz",
"integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg=="
},
"node_modules/@hapi/accept": {
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/@hapi/accept/-/accept-5.0.2.tgz",
"integrity": "sha512-CmzBx/bXUR8451fnZRuZAJRlzgm0Jgu5dltTX/bszmR2lheb9BpyN47Q1RbaGTsvFzn0PXAEs+lXDKfshccYZw==",
"dependencies": {
"@hapi/boom": "9.x.x",
"@hapi/hoek": "9.x.x"
}
},
"node_modules/@hapi/boom": {
"version": "9.1.3",
"resolved": "https://registry.npmjs.org/@hapi/boom/-/boom-9.1.3.tgz",
"integrity": "sha512-RlrGyZ603hE/eRTZtTltocRm50HHmrmL3kGOP0SQ9MasazlW1mt/fkv4C5P/6rnpFXjwld/POFX1C8tMZE3ldg==",
"dependencies": {
"@hapi/hoek": "9.x.x"
}
},
"node_modules/@hapi/hoek": {
"version": "9.2.0",
"resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.2.0.tgz",
"integrity": "sha512-sqKVVVOe5ivCaXDWivIJYVSaEgdQK9ul7a4Kity5Iw7u9+wBAPbX1RMSnLLmp7O4Vzj0WOWwMAJsTL00xwaNug=="
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.5.0",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz",
"integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==",
"dev": true,
"dependencies": {
"@humanwhocodes/object-schema": "^1.2.0",
"debug": "^4.1.1",
"minimatch": "^3.0.4"
},
"engines": {
"node": ">=10.10.0"
}
},
"node_modules/@humanwhocodes/config-array/node_modules/debug": {
"version": "4.3.2",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz",
"integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==",
"dev": true,
"dependencies": {
"ms": "2.1.2"
},
"engines": {
"node": ">=6.0"
},
"peerDependenciesMeta": {
"supports-color": {
"optional": true
}
}
},
"node_modules/@humanwhocodes/config-array/node_modules/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
},
"node_modules/@humanwhocodes/object-schema": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz",
"integrity": "sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==",
"dev": true
},
"node_modules/@internationalized/message": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@internationalized/message/-/message-3.0.1.tgz",
"integrity": "sha512-nocpiSMMde9R+xfv0KwPakbFkz59qwdr7MfhztN97hsGv8ELcWxltbxsdhoRk3SZU51DyPqBdPNG1F4yuafCYA==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"intl-messageformat": "^9.6.12"
}
},
"node_modules/@internationalized/number": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@internationalized/number/-/number-3.0.1.tgz",
"integrity": "sha512-m5D+J1SIdWxXE5vRo8SYfs+8288FCQkdF9ibh5Cqv03pFtE/vORqGapxuP7CoxaHj+DnwKCKmS5MXkH6VUAAOg==",
"dependencies": {
"@babel/runtime": "^7.6.2"
}
},
"node_modules/@next/env": {
"version": "11.0.1",
"resolved": "https://registry.npmjs.org/@next/env/-/env-11.0.1.tgz",
"integrity": "sha512-yZfKh2U6R9tEYyNUrs2V3SBvCMufkJ07xMH5uWy8wqcl5gAXoEw6A/1LDqwX3j7pUutF9d1ZxpdGDA3Uag+aQQ=="
},
"node_modules/@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
},
"node_modules/@next/polyfill-module": {
"version": "11.0.1",
"resolved": "https://registry.npmjs.org/@next/polyfill-module/-/polyfill-module-11.0.1.tgz",
"integrity": "sha512-Cjs7rrKCg4CF4Jhri8PCKlBXhszTfOQNl9AjzdNy4K5jXFyxyoSzuX2rK4IuoyE+yGp5A3XJCBEmOQ4xbUp9Mg=="
},
"node_modules/@next/react-dev-overlay": {
"version": "11.0.1",
"resolved": "https://registry.npmjs.org/@next/react-dev-overlay/-/react-dev-overlay-11.0.1.tgz",
"integrity": "sha512-lvUjMVpLsgzADs9Q8wtC5LNqvfdN+M0BDMSrqr04EDWAyyX0vURHC9hkvLbyEYWyh+WW32pwjKBXdkMnJhoqMg==",
"dependencies": {
"@babel/code-frame": "7.12.11",
"anser": "1.4.9",
"chalk": "4.0.0",
"classnames": "2.2.6",
"css.escape": "1.5.1",
"data-uri-to-buffer": "3.0.1",
"platform": "1.3.6",
"shell-quote": "1.7.2",
"source-map": "0.8.0-beta.0",
"stacktrace-parser": "0.1.10",
"strip-ansi": "6.0.0"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
},
"node_modules/@next/react-dev-overlay/node_modules/ansi-styles": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dependencies": {
"color-convert": "^2.0.1"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
"node_modules/@next/react-dev-overlay/node_modules/chalk": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.0.0.tgz",
"integrity": "sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A==",
"dependencies": {
"ansi-styles": "^4.1.0",
"supports-color": "^7.1.0"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/chalk/chalk?sponsor=1"
}
},
"node_modules/@next/react-dev-overlay/node_modules/color-convert": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
"dependencies": {
"color-name": "~1.1.4"
},
"engines": {
"node": ">=7.0.0"
}
},
"node_modules/@next/react-dev-overlay/node_modules/color-name": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
},
"node_modules/@next/react-dev-overlay/node_modules/has-flag": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
"engines": {
"node": ">=8"
}
},
"node_modules/@next/react-dev-overlay/node_modules/supports-color": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dependencies": {
"has-flag": "^4.0.0"
},
"engines": {
"node": ">=8"
}
},
"node_modules/@next/react-refresh-utils": {
"version": "11.0.1",
"resolved": "https://registry.npmjs.org/@next/react-refresh-utils/-/react-refresh-utils-11.0.1.tgz",
"integrity": "sha512-K347DM6Z7gBSE+TfUaTTceWvbj0B6iNAsFZXbFZOlfg3uyz2sbKpzPYYFocCc27yjLaS8OfR8DEdS2mZXi8Saw==",
"peerDependencies": {
"react-refresh": "0.8.3",
"webpack": "^4 || ^5"
},
"peerDependenciesMeta": {
"webpack": {
"optional": true
}
}
},
"node_modules/@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,
"dependencies": {
"@nodelib/fs.stat": "2.0.5",
"run-parallel": "^1.1.9"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@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,
"engines": {
"node": ">= 8"
}
},
"node_modules/@nodelib/fs.walk": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
"dev": true,
"dependencies": {
"@nodelib/fs.scandir": "2.1.5",
"fastq": "^1.6.0"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@react-aria/actiongroup": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@react-aria/actiongroup/-/actiongroup-3.2.0.tgz",
"integrity": "sha512-id8rwXWeUBdeSgChGBtXVGpEQ8CuORcXIdJzmJTDRrZmmPJaHTsF5W8eLEQrG3+f3kM9Uh5zWVgTlUZlq5vouA==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/focus": "^3.4.0",
"@react-aria/i18n": "^3.3.1",
"@react-aria/interactions": "^3.5.0",
"@react-aria/selection": "^3.5.0",
"@react-aria/utils": "^3.8.1",
"@react-stately/collections": "^3.3.2",
"@react-stately/list": "^3.2.3",
"@react-types/actiongroup": "^3.2.0",
"@react-types/shared": "^3.7.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/breadcrumbs": {
"version": "3.1.4",
"resolved": "https://registry.npmjs.org/@react-aria/breadcrumbs/-/breadcrumbs-3.1.4.tgz",
"integrity": "sha512-xiKTfue+gyzAmyWzHbH8NbgtDzc8IXS1aQyZFqjy20sB4vDXvxvAL+0b2MaOBWvnCVY6j92z9Ohlqc7Zzfnszg==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/i18n": "^3.3.1",
"@react-aria/interactions": "^3.4.0",
"@react-aria/link": "^3.1.3",
"@react-aria/utils": "^3.8.0",
"@react-types/breadcrumbs": "^3.2.0",
"@react-types/shared": "^3.6.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/button": {
"version": "3.3.2",
"resolved": "https://registry.npmjs.org/@react-aria/button/-/button-3.3.2.tgz",
"integrity": "sha512-IEdGrrNfScZZGDjalqppVRTAgs/G1l3gzg1Dq9wIHoim4ebPZpcBd7TstalbBXlmcPjEcWHCcF4p2WGd7cVPHA==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/focus": "^3.3.0",
"@react-aria/interactions": "^3.4.0",
"@react-aria/utils": "^3.8.0",
"@react-stately/toggle": "^3.2.2",
"@react-types/button": "^3.3.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/checkbox": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@react-aria/checkbox/-/checkbox-3.2.2.tgz",
"integrity": "sha512-Vfi3PJvwaT9ftvu+KmKR3AhQ+oa4TE+cqqC33hvQB5isBCoxPppL7B93K9Cd0Tt4+IHUDikiIYxieOKl2HALLA==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/label": "^3.1.2",
"@react-aria/toggle": "^3.1.3",
"@react-aria/utils": "^3.8.0",
"@react-stately/checkbox": "^3.0.2",
"@react-stately/toggle": "^3.2.2",
"@react-types/checkbox": "^3.2.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/combobox": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@react-aria/combobox/-/combobox-3.0.0.tgz",
"integrity": "sha512-r3c/wRna908zu1Jza/A3chgJuM3UQTyyXt24M5IuvJLv1sEgUKoHiS256zbHp9niukLb3ZYc26KAc1FE1Ojlyw==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/i18n": "^3.3.1",
"@react-aria/interactions": "^3.5.0",
"@react-aria/listbox": "^3.3.0",
"@react-aria/live-announcer": "^3.0.0",
"@react-aria/menu": "^3.2.2",
"@react-aria/overlays": "^3.7.1",
"@react-aria/selection": "^3.5.0",
"@react-aria/textfield": "^3.3.0",
"@react-aria/utils": "^3.8.1",
"@react-stately/collections": "^3.3.2",
"@react-stately/combobox": "^3.0.0",
"@react-stately/layout": "^3.3.0",
"@react-types/button": "^3.4.0",
"@react-types/combobox": "^3.0.0",
"@react-types/shared": "^3.7.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/dialog": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/@react-aria/dialog/-/dialog-3.1.3.tgz",
"integrity": "sha512-qKqY4QX8D3ITSNTdqEcXsKrZHvBgjs567JzhUs6s9lBOCZ0Mc+SwhgwEOowFiaYWhEfNyuLZNltUgzUxOtBxzg==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/focus": "^3.3.0",
"@react-aria/utils": "^3.8.0",
"@react-stately/overlays": "^3.1.2",
"@react-types/dialog": "^3.3.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/focus": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.4.0.tgz",
"integrity": "sha512-XlGn5XhYqPF6tAv+CBUDRqZHlpXTEWHQmpq/Oc+n8UaEICfrxkUrIqMatidEoeG21Sm5uCU7M6TNMmwhWIKLQQ==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/interactions": "^3.5.0",
"@react-aria/utils": "^3.8.1",
"@react-types/shared": "^3.7.0",
"clsx": "^1.1.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/i18n": {
"version": "3.3.1",
"resolved": "https://registry.npmjs.org/@react-aria/i18n/-/i18n-3.3.1.tgz",
"integrity": "sha512-2s3ARwFZyT52XyZzF/zJJ5R1heglCo0g2pdbbM0m26tYWnoqqQVt25l/v3AsegvQNP3/8+j5btvMZAiiGlqsZA==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@internationalized/message": "^3.0.0",
"@internationalized/number": "^3.0.0",
"@react-aria/ssr": "^3.0.2",
"@react-aria/utils": "^3.8.0",
"@react-types/shared": "^3.6.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/interactions": {
"version": "3.5.0",
"resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.5.0.tgz",
"integrity": "sha512-EL5GWpzM9UHU17LztwgL/tF3H2tLG375CD64kieCgSfsRcCSlC3pavnPy9jbS8levdBQ2qo9e2xfoX5VtfJisw==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/utils": "^3.8.1",
"@react-types/shared": "^3.7.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/label": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@react-aria/label/-/label-3.1.2.tgz",
"integrity": "sha512-XwwmNfHYD12We7wjTMkfz37A8bN1L+Qkr3pSlsmuRYfSs0bg1RUDaQ6dzHL01sDilQWQidGSHibGKzwmELaMTw==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/utils": "^3.8.0",
"@react-types/label": "^3.2.1",
"@react-types/shared": "^3.6.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/link": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/@react-aria/link/-/link-3.1.3.tgz",
"integrity": "sha512-uFp1lf9fmPbKxA7YgxXE2fTRrG4VvY19pcOUbJab4gikB3NF7LjL24Ogk7xHORatGwXCA4ZwBsKxLd9nimcXPg==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/interactions": "^3.4.0",
"@react-aria/utils": "^3.8.0",
"@react-types/link": "^3.1.2",
"@react-types/shared": "^3.6.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/listbox": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@react-aria/listbox/-/listbox-3.3.0.tgz",
"integrity": "sha512-8Tn6c4qVx3hHvP05esP8WxQhA3Gx4PjQrb6kEp31FAEPKqE4MRlTk8VLJaXqH32VR197MkMBAVXiqBuXRsnbyA==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/focus": "^3.4.0",
"@react-aria/interactions": "^3.4.0",
"@react-aria/label": "^3.1.2",
"@react-aria/selection": "^3.4.1",
"@react-aria/utils": "^3.8.0",
"@react-stately/collections": "^3.3.2",
"@react-stately/list": "^3.2.3",
"@react-types/listbox": "^3.2.0",
"@react-types/shared": "^3.6.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/live-announcer": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@react-aria/live-announcer/-/live-announcer-3.0.0.tgz",
"integrity": "sha512-IVo7jwPLYC+mkbHA0/fqXG5O/TKWpl9LMlLYTj7yU0t2Sl4tTYbJSM7HXwcr+JA5Um6lsOVA4rH0hWfacGMVZw==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/utils": "^3.8.0",
"@react-aria/visually-hidden": "^3.2.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1",
"react-dom": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/menu": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@react-aria/menu/-/menu-3.2.2.tgz",
"integrity": "sha512-L4FdU+dApnH2bfonmR3jnFHgnLyAnCs/tbAPldpEHHIUWKXOAoyWV6UM3DdN24eEvWP9TKRcNB3r7e2JSQWBVg==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/interactions": "^3.5.0",
"@react-aria/overlays": "^3.7.0",
"@react-aria/selection": "^3.5.0",
"@react-aria/utils": "^3.8.1",
"@react-stately/collections": "^3.3.2",
"@react-stately/menu": "^3.2.2",
"@react-stately/tree": "^3.1.4",
"@react-types/button": "^3.4.0",
"@react-types/menu": "^3.2.0",
"@react-types/shared": "^3.7.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1",
"react-dom": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/meter": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@react-aria/meter/-/meter-3.1.2.tgz",
"integrity": "sha512-uHj6grra/xVcVw1O3svgpwFLAvBxv/gsR1z9SfRrPoQTVw0ZWp8CroQfTOKB2DH6t/F1V50XQ/E6ftawP47f8w==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/progress": "^3.1.2",
"@react-types/meter": "^3.1.1",
"@react-types/shared": "^3.6.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/numberfield": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@react-aria/numberfield/-/numberfield-3.0.0.tgz",
"integrity": "sha512-Qcz3pdrSoR5bSpWiVY7OMXJ9FKJo3UBamadxHDihFPh3VIJHwCZFOjcygvnRGx+udSu9n1apMpfm6ysVmEAXqQ==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/i18n": "^3.3.1",
"@react-aria/interactions": "^3.4.0",
"@react-aria/live-announcer": "^3.0.0",
"@react-aria/spinbutton": "^3.0.0",
"@react-aria/textfield": "^3.3.0",
"@react-aria/utils": "^3.8.0",
"@react-stately/numberfield": "^3.0.0",
"@react-types/button": "^3.3.1",
"@react-types/numberfield": "^3.0.0",
"@react-types/shared": "^3.6.0",
"@react-types/textfield": "^3.1.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/overlays": {
"version": "3.7.1",
"resolved": "https://registry.npmjs.org/@react-aria/overlays/-/overlays-3.7.1.tgz",
"integrity": "sha512-THr6ySXpzszquzqDWvzoZwCkBIOom042zJ2OxJ6aVU8QojDyxlxTDqQl0VwsBk81t5wBgN+P//b6tGMaxLjOrQ==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/i18n": "^3.3.1",
"@react-aria/interactions": "^3.5.0",
"@react-aria/utils": "^3.8.1",
"@react-aria/visually-hidden": "^3.2.2",
"@react-stately/overlays": "^3.1.2",
"@react-types/button": "^3.4.0",
"@react-types/overlays": "^3.5.0",
"dom-helpers": "^3.3.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1",
"react-dom": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/progress": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@react-aria/progress/-/progress-3.1.2.tgz",
"integrity": "sha512-LZWHNVuIlqrMs05ohcnjmPY89e94/lK1EKMCv/hWqBkFlCQIQeQaGG6X3M6goHwSW8zCEunfSbmwqZr3Dla1Hg==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/i18n": "^3.3.1",
"@react-aria/label": "^3.1.2",
"@react-aria/utils": "^3.8.0",
"@react-types/progress": "^3.1.1",
"@react-types/shared": "^3.6.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/radio": {
"version": "3.1.4",
"resolved": "https://registry.npmjs.org/@react-aria/radio/-/radio-3.1.4.tgz",
"integrity": "sha512-1sRMu09RHIRQlFUkeOaNVF9PPg/sQubXdpo1giDH0h/p1UKwucMZx72Ztwb1xBf2tDQ72tIOmS2KSN8lPjxbVQ==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/focus": "^3.3.0",
"@react-aria/i18n": "^3.3.1",
"@react-aria/interactions": "^3.4.0",
"@react-aria/label": "^3.1.2",
"@react-aria/utils": "^3.8.0",
"@react-stately/radio": "^3.3.1",
"@react-types/radio": "^3.1.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/searchfield": {
"version": "3.1.4",
"resolved": "https://registry.npmjs.org/@react-aria/searchfield/-/searchfield-3.1.4.tgz",
"integrity": "sha512-ZTm/H029C5dMU5hggkjND6C4PKLj4nOdluEAQc42Blr7g+2SzvgJ/ftNFctfoiXP478njYviAQDM/+AtQmIbrw==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/i18n": "^3.3.1",
"@react-aria/interactions": "^3.4.0",
"@react-aria/textfield": "^3.3.0",
"@react-aria/utils": "^3.8.0",
"@react-stately/searchfield": "^3.1.2",
"@react-types/button": "^3.2.1",
"@react-types/searchfield": "^3.1.1",
"@react-types/shared": "^3.6.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/select": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/@react-aria/select/-/select-3.4.0.tgz",
"integrity": "sha512-FuL9z3he2qevhALR8qq06xODnlpUNMmYl5KVi4EkMq0pSnT/vZ7YuMQQwKnDXSdhjhTUGQbKWbEeckYEtpvwLw==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/i18n": "^3.3.1",
"@react-aria/interactions": "^3.4.0",
"@react-aria/label": "^3.1.2",
"@react-aria/listbox": "^3.3.0",
"@react-aria/menu": "^3.2.1",
"@react-aria/selection": "^3.4.1",
"@react-aria/utils": "^3.8.0",
"@react-aria/visually-hidden": "^3.2.2",
"@react-stately/select": "^3.1.2",
"@react-types/button": "^3.3.1",
"@react-types/select": "^3.3.0",
"@react-types/shared": "^3.6.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/selection": {
"version": "3.5.0",
"resolved": "https://registry.npmjs.org/@react-aria/selection/-/selection-3.5.0.tgz",
"integrity": "sha512-tM0l49rwdeocqas9Ukcx/KljEq+QnvXgNmlW7Gsp+5jGwykaQ503+X7DdKP9VN3MbrnigthrsIInOQijtFnh7g==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/focus": "^3.4.0",
"@react-aria/i18n": "^3.3.1",
"@react-aria/interactions": "^3.5.0",
"@react-aria/utils": "^3.8.1",
"@react-stately/collections": "^3.3.2",
"@react-stately/selection": "^3.6.0",
"@react-types/shared": "^3.7.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/separator": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@react-aria/separator/-/separator-3.1.2.tgz",
"integrity": "sha512-6GPKfA2Sc2SR7Fzx05tULmtHh44ZagEDRk9Irj3zLB+fcLoEiSdHmQJ06FzHxBEB0xB0OA22T28FdB2eEqML0w==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/utils": "^3.8.0",
"@react-types/shared": "^3.6.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/slider": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@react-aria/slider/-/slider-3.0.2.tgz",
"integrity": "sha512-BubrEZmUAvisa8A/kGxLq6wYhBuABatHJmx+buX5egq9gaQw8PQWM2h43NUf8x6lEnpTv1gtfsb2Pun5IFZbOA==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/focus": "^3.3.0",
"@react-aria/i18n": "^3.3.1",
"@react-aria/interactions": "^3.4.0",
"@react-aria/label": "^3.1.2",
"@react-aria/utils": "^3.8.0",
"@react-stately/radio": "^3.3.1",
"@react-stately/slider": "^3.0.2",
"@react-types/radio": "^3.1.1",
"@react-types/slider": "^3.0.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/spinbutton": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@react-aria/spinbutton/-/spinbutton-3.0.0.tgz",
"integrity": "sha512-96AWmvm/ysMDHiMvZ3T4BrCetmZjQxZNLI10T3meMEIwfkX/AFNnR46rVyE3Jv2yXwnWDNvEtQRsfcMzMUFClA==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/i18n": "^3.3.1",
"@react-aria/live-announcer": "^3.0.0",
"@react-aria/utils": "^3.8.0",
"@react-types/button": "^3.3.1",
"@react-types/shared": "^3.6.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/ssr": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.0.2.tgz",
"integrity": "sha512-+M0wrUlc2eTuMiwTfd0iFZJGu2hvMeYBLE8gRdbPJCDjLhrNWOQLKR/y6ntxQ9u8zjrNl/YPOdRtcqkA2EBnAQ==",
"dependencies": {
"@babel/runtime": "^7.6.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/switch": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@react-aria/switch/-/switch-3.1.2.tgz",
"integrity": "sha512-kBCZwktmtgHz9dCZWKwRHNPIePwf5JK7xR8g7q0UBeyhhiE0UKMvybY8Jw+mgjIWYKz77ZZfmATfQ9jccANCNQ==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/toggle": "^3.1.3",
"@react-stately/toggle": "^3.2.2",
"@react-types/switch": "^3.1.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/tabs": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@react-aria/tabs/-/tabs-3.0.0.tgz",
"integrity": "sha512-sztoQEZF9dtQ/ir0W5AKg0B3GXsCASefeP2kCx+ebyO3bm1mcdvIdzT/seiW3rh2W+vfVfGsPyh1PVMXUbPKvw==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/focus": "^3.4.0",
"@react-aria/i18n": "^3.3.1",
"@react-aria/interactions": "^3.5.0",
"@react-aria/selection": "^3.5.0",
"@react-aria/utils": "^3.8.1",
"@react-stately/list": "^3.2.3",
"@react-stately/tabs": "^3.0.0",
"@react-types/shared": "^3.7.0",
"@react-types/tabs": "^3.0.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/textfield": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@react-aria/textfield/-/textfield-3.3.0.tgz",
"integrity": "sha512-KX12+dbYkNc310YNBuDFYcBjzNnmWmsCHMU9BGXm7UakBMEK47BGKiUWpTtA0aqAykLQcU/4YcOkeoBv8W5p4Q==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/focus": "^3.3.0",
"@react-aria/label": "^3.1.2",
"@react-aria/utils": "^3.8.0",
"@react-types/shared": "^3.6.0",
"@react-types/textfield": "^3.2.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1"
}
},
"node_modules/@react-aria/toggle": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/@react-aria/toggle/-/toggle-3.1.3.tgz",
"integrity": "sha512-hyXpubOl1YOCaPDTdvqVBuvOLYWfuWU31cJiQFT/udOkcOYvpU2yBDTgavXWRLCuuyHkV0HHKC21Stc5wfbPEg==",
"dependencies": {
"@babel/runtime": "^7.6.2",
"@react-aria/focus": "^3.3.0",
"@react-aria/interactions": "^3.4.0",
"@react-aria/utils": "^3.8.0",
"@react-stately/toggle": "^3.2.2",
"@react-types/checkbox": "^3.2.2",
"@react-types/shared": "^3.6.0",