-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathyarn.lock
7000 lines (6090 loc) · 275 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
"@ant-design/colors@^6.0.0":
"integrity" "sha1-m5NmJXz/zEfbQrnQIDu1ksE8Apg="
"resolved" "https://registry.npm.taobao.org/@ant-design/colors/download/@ant-design/colors-6.0.0.tgz"
"version" "6.0.0"
dependencies:
"@ctrl/tinycolor" "^3.4.0"
"@ant-design/icons-svg@^4.2.1":
"integrity" "sha1-hjDajrRHGkqr2u19H/apfcss8Fo="
"resolved" "https://registry.npmmirror.com/@ant-design/icons-svg/download/@ant-design/icons-svg-4.2.1.tgz"
"version" "4.2.1"
"@ant-design/icons@^4.7.0":
"integrity" "sha1-jDy+ClVrqSr13H0ecMCyW1F5rw8="
"resolved" "https://registry.npmmirror.com/@ant-design/icons/download/@ant-design/icons-4.7.0.tgz?cache=0&sync_timestamp=1632478665145&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40ant-design%2Ficons%2Fdownload%2F%40ant-design%2Ficons-4.7.0.tgz"
"version" "4.7.0"
dependencies:
"@ant-design/colors" "^6.0.0"
"@ant-design/icons-svg" "^4.2.1"
"@babel/runtime" "^7.11.2"
"classnames" "^2.2.6"
"rc-util" "^5.9.4"
"@ant-design/react-slick@~0.28.1":
"integrity" "sha1-iylrh618euh38qUnuBt+69ndKak="
"resolved" "https://registry.nlark.com/@ant-design/react-slick/download/@ant-design/react-slick-0.28.4.tgz"
"version" "0.28.4"
dependencies:
"@babel/runtime" "^7.10.4"
"classnames" "^2.2.5"
"json2mq" "^0.2.0"
"lodash" "^4.17.21"
"resize-observer-polyfill" "^1.5.0"
"@authing/react-ui-components@^2.4.60":
"integrity" "sha512-NgW3VZi2bs86XlrQhRgiGlMa7MmNbUJ4Y9Opd+FCea3haPzUVIoNfEKjYK7Og2QDaMhdvfszCavtkIfGAdq3Ig=="
"resolved" "https://registry.npmmirror.com/@authing/react-ui-components/download/@authing/react-ui-components-2.4.60.tgz"
"version" "2.4.60"
dependencies:
"antd" "^4.8.0"
"authing-js-sdk" "4.23.1"
"qs" "^6.9.4"
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.14.5", "@babel/code-frame@^7.15.8":
"integrity" "sha512-2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.15.8.tgz"
"version" "7.15.8"
dependencies:
"@babel/highlight" "^7.14.5"
"@babel/[email protected]":
"integrity" "sha1-9K1DWqJj25NbjxDyxVLSP7cWpj8="
"resolved" "https://registry.npmmirror.com/@babel/code-frame/download/@babel/code-frame-7.12.11.tgz?cache=0&sync_timestamp=1635560663383&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.12.11.tgz"
"version" "7.12.11"
dependencies:
"@babel/highlight" "^7.10.4"
"@babel/compat-data@^7.15.0":
"integrity" "sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA=="
"resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.15.0.tgz"
"version" "7.15.0"
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.1.0", "@babel/core@^7.7.2", "@babel/core@^7.7.5", "@babel/core@^7.8.0", "@babel/core@>=7.0.0-beta.0 <8":
"integrity" "sha512-3UG9dsxvYBMYwRv+gS41WKHno4K60/9GPy1CJaH6xy3Elq8CTtvtjT5R5jmNhXfCYLX2mTw+7/aq5ak/gOE0og=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.15.8.tgz"
"version" "7.15.8"
dependencies:
"@babel/code-frame" "^7.15.8"
"@babel/generator" "^7.15.8"
"@babel/helper-compilation-targets" "^7.15.4"
"@babel/helper-module-transforms" "^7.15.8"
"@babel/helpers" "^7.15.4"
"@babel/parser" "^7.15.8"
"@babel/template" "^7.15.4"
"@babel/traverse" "^7.15.4"
"@babel/types" "^7.15.6"
"convert-source-map" "^1.7.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.1.2"
"semver" "^6.3.0"
"source-map" "^0.5.0"
"@babel/generator@^7.15.4", "@babel/generator@^7.15.8", "@babel/generator@^7.7.2":
"integrity" "sha512-ECmAKstXbp1cvpTTZciZCgfOt6iN64lR0d+euv3UZisU5awfRawOvg07Utn/qBGuH4bRIEZKrA/4LzZyXhZr8g=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.15.8.tgz"
"version" "7.15.8"
dependencies:
"@babel/types" "^7.15.6"
"jsesc" "^2.5.1"
"source-map" "^0.5.0"
"@babel/helper-compilation-targets@^7.15.4":
"integrity" "sha512-rMWPCirulnPSe4d+gwdWXLfAXTTBj8M3guAf5xFQJ0nvFY7tfNAFnWdqaHegHlgDZOCT4qvhF3BYlSJag8yhqQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/compat-data" "^7.15.0"
"@babel/helper-validator-option" "^7.14.5"
"browserslist" "^4.16.6"
"semver" "^6.3.0"
"@babel/helper-function-name@^7.15.4":
"integrity" "sha512-Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw=="
"resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/helper-get-function-arity" "^7.15.4"
"@babel/template" "^7.15.4"
"@babel/types" "^7.15.4"
"@babel/helper-get-function-arity@^7.15.4":
"integrity" "sha512-1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA=="
"resolved" "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/types" "^7.15.4"
"@babel/helper-hoist-variables@^7.15.4":
"integrity" "sha512-VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA=="
"resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/types" "^7.15.4"
"@babel/helper-member-expression-to-functions@^7.15.4":
"integrity" "sha512-cokOMkxC/BTyNP1AlY25HuBWM32iCEsLPI4BHDpJCHHm1FU2E7dKWWIXJgQgSFiu4lp8q3bL1BIKwqkSUviqtA=="
"resolved" "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/types" "^7.15.4"
"@babel/helper-module-imports@^7.15.4":
"integrity" "sha512-jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/types" "^7.15.4"
"@babel/helper-module-transforms@^7.15.8":
"integrity" "sha512-DfAfA6PfpG8t4S6npwzLvTUpp0sS7JrcuaMiy1Y5645laRJIp/LiLGIBbQKaXSInK8tiGNI7FL7L8UvB8gdUZg=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.8.tgz"
"version" "7.15.8"
dependencies:
"@babel/helper-module-imports" "^7.15.4"
"@babel/helper-replace-supers" "^7.15.4"
"@babel/helper-simple-access" "^7.15.4"
"@babel/helper-split-export-declaration" "^7.15.4"
"@babel/helper-validator-identifier" "^7.15.7"
"@babel/template" "^7.15.4"
"@babel/traverse" "^7.15.4"
"@babel/types" "^7.15.6"
"@babel/helper-optimise-call-expression@^7.15.4":
"integrity" "sha512-E/z9rfbAOt1vDW1DR7k4SzhzotVV5+qMciWV6LaG1g4jeFrkDlJedjtV4h0i4Q/ITnUu+Pk08M7fczsB9GXBDw=="
"resolved" "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/types" "^7.15.4"
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0":
"integrity" "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz"
"version" "7.14.5"
"@babel/helper-replace-supers@^7.15.4":
"integrity" "sha512-/ztT6khaXF37MS47fufrKvIsiQkx1LBRvSJNzRqmbyeZnTwU9qBxXYLaaT/6KaxfKhjs2Wy8kG8ZdsFUuWBjzw=="
"resolved" "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/helper-member-expression-to-functions" "^7.15.4"
"@babel/helper-optimise-call-expression" "^7.15.4"
"@babel/traverse" "^7.15.4"
"@babel/types" "^7.15.4"
"@babel/helper-simple-access@^7.15.4":
"integrity" "sha512-UzazrDoIVOZZcTeHHEPYrr1MvTR/K+wgLg6MY6e1CJyaRhbibftF6fR2KU2sFRtI/nERUZR9fBd6aKgBlIBaPg=="
"resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/types" "^7.15.4"
"@babel/helper-split-export-declaration@^7.15.4":
"integrity" "sha512-HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw=="
"resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/types" "^7.15.4"
"@babel/helper-validator-identifier@^7.14.5", "@babel/helper-validator-identifier@^7.14.9", "@babel/helper-validator-identifier@^7.15.7":
"integrity" "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz"
"version" "7.15.7"
"@babel/helper-validator-option@^7.14.5":
"integrity" "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz"
"version" "7.14.5"
"@babel/helpers@^7.15.4":
"integrity" "sha512-V45u6dqEJ3w2rlryYYXf6i9rQ5YMNu4FLS6ngs8ikblhu2VdR1AqAd6aJjBzmf2Qzh6KOLqKHxEN9+TFbAkAVQ=="
"resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/template" "^7.15.4"
"@babel/traverse" "^7.15.4"
"@babel/types" "^7.15.4"
"@babel/highlight@^7.10.4", "@babel/highlight@^7.14.5":
"integrity" "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-validator-identifier" "^7.14.5"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/parser@^7.1.0", "@babel/parser@^7.15.4", "@babel/parser@^7.15.8", "@babel/parser@^7.7.2":
"integrity" "sha512-BRYa3wcQnjS/nqI8Ac94pYYpJfojHVvVXJ97+IDCImX4Jc8W8Xv1+47enbruk+q1etOpsQNwnfFcNGw+gtPGxA=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.15.8.tgz"
"version" "7.15.8"
"@babel/plugin-syntax-async-generators@^7.8.4":
"integrity" "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz"
"version" "7.8.4"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-bigint@^7.8.3":
"integrity" "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-class-properties@^7.8.3":
"integrity" "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/plugin-syntax-import-meta@^7.8.3":
"integrity" "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-json-strings@^7.8.3":
"integrity" "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/[email protected]":
"integrity" "sha1-AA4uJdhnPM5JMAUXo+2kTCY+QgE="
"resolved" "https://registry.npmmirror.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.14.5.tgz?cache=0&sync_timestamp=1635578642050&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Fplugin-syntax-jsx%2Fdownload%2F%40babel%2Fplugin-syntax-jsx-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
"integrity" "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
"integrity" "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-numeric-separator@^7.8.3":
"integrity" "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-object-rest-spread@^7.8.3":
"integrity" "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-optional-catch-binding@^7.8.3":
"integrity" "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-optional-chaining@^7.8.3":
"integrity" "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-top-level-await@^7.8.3":
"integrity" "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-typescript@^7.7.2":
"integrity" "sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/runtime-corejs3@^7.10.2":
"integrity" "sha512-lWcAqKeB624/twtTc3w6w/2o9RqJPaNBhPGK6DKLSiwuVWC7WFkypWyNg+CpZoyJH0jVzv1uMtXZ/5/lQOLtCg=="
"resolved" "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"core-js-pure" "^3.16.0"
"regenerator-runtime" "^0.13.4"
"@babel/runtime@^7.10.1", "@babel/runtime@^7.10.2", "@babel/runtime@^7.10.4", "@babel/runtime@^7.11.1", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.5", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2", "@babel/[email protected]":
"integrity" "sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"regenerator-runtime" "^0.13.4"
"@babel/runtime@^7.16.3":
"integrity" "sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ=="
"resolved" "https://registry.npmmirror.com/@babel/runtime/download/@babel/runtime-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"regenerator-runtime" "^0.13.4"
"@babel/runtime@^7.16.5":
"integrity" "sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ=="
"resolved" "https://registry.npmmirror.com/@babel/runtime/download/@babel/runtime-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"regenerator-runtime" "^0.13.4"
"@babel/runtime@^7.16.7":
"integrity" "sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ=="
"resolved" "https://registry.npmmirror.com/@babel/runtime/download/@babel/runtime-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"regenerator-runtime" "^0.13.4"
"@babel/template@^7.15.4", "@babel/template@^7.3.3":
"integrity" "sha512-UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg=="
"resolved" "https://registry.npmjs.org/@babel/template/-/template-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/code-frame" "^7.14.5"
"@babel/parser" "^7.15.4"
"@babel/types" "^7.15.4"
"@babel/traverse@^7.1.0", "@babel/traverse@^7.15.4", "@babel/traverse@^7.7.2":
"integrity" "sha512-W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/code-frame" "^7.14.5"
"@babel/generator" "^7.15.4"
"@babel/helper-function-name" "^7.15.4"
"@babel/helper-hoist-variables" "^7.15.4"
"@babel/helper-split-export-declaration" "^7.15.4"
"@babel/parser" "^7.15.4"
"@babel/types" "^7.15.4"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.0.0", "@babel/types@^7.15.4", "@babel/types@^7.15.6", "@babel/types@^7.3.0", "@babel/types@^7.3.3":
"integrity" "sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.15.6.tgz"
"version" "7.15.6"
dependencies:
"@babel/helper-validator-identifier" "^7.14.9"
"to-fast-properties" "^2.0.0"
"@babel/[email protected]":
"integrity" "sha1-Ya8R8ihsTpxpyo3rX0N1pzxy3L0="
"resolved" "https://registry.npmmirror.com/@babel/types/download/@babel/types-7.15.0.tgz?cache=0&sync_timestamp=1635560908248&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.15.0.tgz"
"version" "7.15.0"
dependencies:
"@babel/helper-validator-identifier" "^7.14.9"
"to-fast-properties" "^2.0.0"
"@bcoe/v8-coverage@^0.2.3":
"integrity" "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw=="
"resolved" "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz"
"version" "0.2.3"
"@cspotcode/[email protected]":
"integrity" "sha512-41qniHzTU8yAGbCp04ohlmSrZf8bkf/iJsl3V0dRGsQN/5GFfx+LbCSsCpp2gqrqjTVg/K6O8ycoV35JIwAzAg=="
"resolved" "https://registry.npmjs.org/@cspotcode/source-map-consumer/-/source-map-consumer-0.8.0.tgz"
"version" "0.8.0"
"@cspotcode/[email protected]":
"integrity" "sha512-DX3Z+T5dt1ockmPdobJS/FAsQPW4V4SrWEhD2iYQT2Cb2tQsiMnYxrcUH9By/Z3B+v0S5LMBkQtV/XOBbpLEOg=="
"resolved" "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.6.1.tgz"
"version" "0.6.1"
dependencies:
"@cspotcode/source-map-consumer" "0.8.0"
"@ctrl/tinycolor@^3.4.0":
"integrity" "sha1-w8WuVDyJfKqcKmhjC+01W+X5mQ8="
"resolved" "https://registry.nlark.com/@ctrl/tinycolor/download/@ctrl/tinycolor-3.4.0.tgz"
"version" "3.4.0"
"@eslint/eslintrc@^0.4.3":
"integrity" "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw=="
"resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz"
"version" "0.4.3"
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"
"@hapi/[email protected]":
"integrity" "sha512-CmzBx/bXUR8451fnZRuZAJRlzgm0Jgu5dltTX/bszmR2lheb9BpyN47Q1RbaGTsvFzn0PXAEs+lXDKfshccYZw=="
"resolved" "https://registry.npmjs.org/@hapi/accept/-/accept-5.0.2.tgz"
"version" "5.0.2"
dependencies:
"@hapi/boom" "9.x.x"
"@hapi/hoek" "9.x.x"
"@hapi/[email protected]":
"integrity" "sha512-Ls1oH8jaN1vNsqcaHVYJrKmgMcKsC1wcp8bujvXrHaAqD2iDYq3HoOwsxwo09Cuda5R5nC0o0IxlrlTuvPuzSw=="
"resolved" "https://registry.npmjs.org/@hapi/boom/-/boom-9.1.4.tgz"
"version" "9.1.4"
dependencies:
"@hapi/hoek" "9.x.x"
"@hapi/[email protected]":
"integrity" "sha512-gfta+H8aziZsm8pZa0vj04KO6biEiisppNgA1kbJvFrrWu9Vm7eaUEy76DIxsuTaWvti5fkJVhllWc6ZTE+Mdw=="
"resolved" "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.2.1.tgz"
"version" "9.2.1"
"@headlessui/react@^1.4.1":
"integrity" "sha512-gL6Ns5xQM57cZBzX6IVv6L7nsam8rDEpRhs5fg28SN64ikfmuuMgunc+Rw5C1cMScnvFM+cz32ueVrlSFEVlSg=="
"resolved" "https://registry.npmjs.org/@headlessui/react/-/react-1.4.1.tgz"
"version" "1.4.1"
"@heroicons/react@^1.0.4":
"integrity" "sha512-3kOrTmo8+Z8o6AL0rzN82MOf8J5CuxhRLFhpI8mrn+3OqekA6d5eb1GYO3EYYo1Vn6mYQSMNTzCWbEwUInb0cQ=="
"resolved" "https://registry.npmjs.org/@heroicons/react/-/react-1.0.4.tgz"
"version" "1.0.4"
"@humanwhocodes/config-array@^0.5.0":
"integrity" "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz"
"version" "0.5.0"
dependencies:
"@humanwhocodes/object-schema" "^1.2.0"
"debug" "^4.1.1"
"minimatch" "^3.0.4"
"@humanwhocodes/object-schema@^1.2.0":
"integrity" "sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz"
"version" "1.2.0"
"@istanbuljs/load-nyc-config@^1.0.0":
"integrity" "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ=="
"resolved" "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz"
"version" "1.1.0"
dependencies:
"camelcase" "^5.3.1"
"find-up" "^4.1.0"
"get-package-type" "^0.1.0"
"js-yaml" "^3.13.1"
"resolve-from" "^5.0.0"
"@istanbuljs/schema@^0.1.2":
"integrity" "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA=="
"resolved" "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz"
"version" "0.1.3"
"@jest/console@^27.2.5":
"integrity" "sha512-smtlRF9vNKorRMCUtJ+yllIoiY8oFmfFG7xlzsAE76nKEwXNhjPOJIsc7Dv+AUitVt76t+KjIpUP9m98Crn2LQ=="
"resolved" "https://registry.npmjs.org/@jest/console/-/console-27.2.5.tgz"
"version" "27.2.5"
dependencies:
"@jest/types" "^27.2.5"
"@types/node" "*"
"chalk" "^4.0.0"
"jest-message-util" "^27.2.5"
"jest-util" "^27.2.5"
"slash" "^3.0.0"
"@jest/core@^27.2.5":
"integrity" "sha512-VR7mQ+jykHN4WO3OvusRJMk4xCa2MFLipMS+43fpcRGaYrN1KwMATfVEXif7ccgFKYGy5D1TVXTNE4mGq/KMMA=="
"resolved" "https://registry.npmjs.org/@jest/core/-/core-27.2.5.tgz"
"version" "27.2.5"
dependencies:
"@jest/console" "^27.2.5"
"@jest/reporters" "^27.2.5"
"@jest/test-result" "^27.2.5"
"@jest/transform" "^27.2.5"
"@jest/types" "^27.2.5"
"@types/node" "*"
"ansi-escapes" "^4.2.1"
"chalk" "^4.0.0"
"emittery" "^0.8.1"
"exit" "^0.1.2"
"graceful-fs" "^4.2.4"
"jest-changed-files" "^27.2.5"
"jest-config" "^27.2.5"
"jest-haste-map" "^27.2.5"
"jest-message-util" "^27.2.5"
"jest-regex-util" "^27.0.6"
"jest-resolve" "^27.2.5"
"jest-resolve-dependencies" "^27.2.5"
"jest-runner" "^27.2.5"
"jest-runtime" "^27.2.5"
"jest-snapshot" "^27.2.5"
"jest-util" "^27.2.5"
"jest-validate" "^27.2.5"
"jest-watcher" "^27.2.5"
"micromatch" "^4.0.4"
"rimraf" "^3.0.0"
"slash" "^3.0.0"
"strip-ansi" "^6.0.0"
"@jest/environment@^27.2.5":
"integrity" "sha512-XvUW3q6OUF+54SYFCgbbfCd/BKTwm5b2MGLoc2jINXQLKQDTCS2P2IrpPOtQ08WWZDGzbhAzVhOYta3J2arubg=="
"resolved" "https://registry.npmjs.org/@jest/environment/-/environment-27.2.5.tgz"
"version" "27.2.5"
dependencies:
"@jest/fake-timers" "^27.2.5"
"@jest/types" "^27.2.5"
"@types/node" "*"
"jest-mock" "^27.2.5"
"@jest/fake-timers@^27.2.5":
"integrity" "sha512-ZGUb6jg7BgwY+nmO0TW10bc7z7Hl2G/UTAvmxEyZ/GgNFoa31tY9/cgXmqcxnnZ7o5Xs7RAOz3G1SKIj8IVDlg=="
"resolved" "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.2.5.tgz"
"version" "27.2.5"
dependencies:
"@jest/types" "^27.2.5"
"@sinonjs/fake-timers" "^8.0.1"
"@types/node" "*"
"jest-message-util" "^27.2.5"
"jest-mock" "^27.2.5"
"jest-util" "^27.2.5"
"@jest/globals@^27.2.5":
"integrity" "sha512-naRI537GM+enFVJQs6DcwGYPn/0vgJNb06zGVbzXfDfe/epDPV73hP1vqO37PqSKDeOXM2KInr6ymYbL1HTP7g=="
"resolved" "https://registry.npmjs.org/@jest/globals/-/globals-27.2.5.tgz"
"version" "27.2.5"
dependencies:
"@jest/environment" "^27.2.5"
"@jest/types" "^27.2.5"
"expect" "^27.2.5"
"@jest/reporters@^27.2.5":
"integrity" "sha512-zYuR9fap3Q3mxQ454VWF8I6jYHErh368NwcKHWO2uy2fwByqBzRHkf9j2ekMDM7PaSTWcLBSZyd7NNxR1iHxzQ=="
"resolved" "https://registry.npmjs.org/@jest/reporters/-/reporters-27.2.5.tgz"
"version" "27.2.5"
dependencies:
"@bcoe/v8-coverage" "^0.2.3"
"@jest/console" "^27.2.5"
"@jest/test-result" "^27.2.5"
"@jest/transform" "^27.2.5"
"@jest/types" "^27.2.5"
"@types/node" "*"
"chalk" "^4.0.0"
"collect-v8-coverage" "^1.0.0"
"exit" "^0.1.2"
"glob" "^7.1.2"
"graceful-fs" "^4.2.4"
"istanbul-lib-coverage" "^3.0.0"
"istanbul-lib-instrument" "^4.0.3"
"istanbul-lib-report" "^3.0.0"
"istanbul-lib-source-maps" "^4.0.0"
"istanbul-reports" "^3.0.2"
"jest-haste-map" "^27.2.5"
"jest-resolve" "^27.2.5"
"jest-util" "^27.2.5"
"jest-worker" "^27.2.5"
"slash" "^3.0.0"
"source-map" "^0.6.0"
"string-length" "^4.0.1"
"terminal-link" "^2.0.0"
"v8-to-istanbul" "^8.1.0"
"@jest/source-map@^27.0.6":
"integrity" "sha512-Fek4mi5KQrqmlY07T23JRi0e7Z9bXTOOD86V/uS0EIW4PClvPDqZOyFlLpNJheS6QI0FNX1CgmPjtJ4EA/2M+g=="
"resolved" "https://registry.npmjs.org/@jest/source-map/-/source-map-27.0.6.tgz"
"version" "27.0.6"
dependencies:
"callsites" "^3.0.0"
"graceful-fs" "^4.2.4"
"source-map" "^0.6.0"
"@jest/test-result@^27.2.5":
"integrity" "sha512-ub7j3BrddxZ0BdSnM5JCF6cRZJ/7j3wgdX0+Dtwhw2Po+HKsELCiXUTvh+mgS4/89mpnU1CPhZxe2mTvuLPJJg=="
"resolved" "https://registry.npmjs.org/@jest/test-result/-/test-result-27.2.5.tgz"
"version" "27.2.5"
dependencies:
"@jest/console" "^27.2.5"
"@jest/types" "^27.2.5"
"@types/istanbul-lib-coverage" "^2.0.0"
"collect-v8-coverage" "^1.0.0"
"@jest/test-sequencer@^27.2.5":
"integrity" "sha512-8j8fHZRfnjbbdMitMAGFKaBZ6YqvFRFJlMJzcy3v75edTOqc7RY65S9JpMY6wT260zAcL2sTQRga/P4PglCu3Q=="
"resolved" "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.2.5.tgz"
"version" "27.2.5"
dependencies:
"@jest/test-result" "^27.2.5"
"graceful-fs" "^4.2.4"
"jest-haste-map" "^27.2.5"
"jest-runtime" "^27.2.5"
"@jest/transform@^27.2.5":
"integrity" "sha512-29lRtAHHYGALbZOx343v0zKmdOg4Sb0rsA1uSv0818bvwRhs3TyElOmTVXlrw0v1ZTqXJCAH/cmoDXimBhQOJQ=="
"resolved" "https://registry.npmjs.org/@jest/transform/-/transform-27.2.5.tgz"
"version" "27.2.5"
dependencies:
"@babel/core" "^7.1.0"
"@jest/types" "^27.2.5"
"babel-plugin-istanbul" "^6.0.0"
"chalk" "^4.0.0"
"convert-source-map" "^1.4.0"
"fast-json-stable-stringify" "^2.0.0"
"graceful-fs" "^4.2.4"
"jest-haste-map" "^27.2.5"
"jest-regex-util" "^27.0.6"
"jest-util" "^27.2.5"
"micromatch" "^4.0.4"
"pirates" "^4.0.1"
"slash" "^3.0.0"
"source-map" "^0.6.1"
"write-file-atomic" "^3.0.0"
"@jest/types@^27.2.5":
"integrity" "sha512-nmuM4VuDtCZcY+eTpw+0nvstwReMsjPoj7ZR80/BbixulhLaiX+fbv8oeLW8WZlJMcsGQsTmMKT/iTZu1Uy/lQ=="
"resolved" "https://registry.npmjs.org/@jest/types/-/types-27.2.5.tgz"
"version" "27.2.5"
dependencies:
"@types/istanbul-lib-coverage" "^2.0.0"
"@types/istanbul-reports" "^3.0.0"
"@types/node" "*"
"@types/yargs" "^16.0.0"
"chalk" "^4.0.0"
"@napi-rs/[email protected]":
"integrity" "sha1-dtbQw/TRYBPGHkXfyl/x5sMa5Tw="
"resolved" "https://registry.nlark.com/@napi-rs/triples/download/@napi-rs/triples-1.0.3.tgz"
"version" "1.0.3"
"@next/[email protected]":
"integrity" "sha512-QtZ6X5c6Zqa7oWs5csEmZ7xy+gLdtRKKg02SOT5l0Ziea4P5IU8mSOCyNC4fZmXewcRVjpbY+yGqAAP7hJUfOA=="
"resolved" "https://registry.npmmirror.com/@next/env/download/@next/env-12.0.4.tgz?cache=0&sync_timestamp=1637509278578&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40next%2Fenv%2Fdownload%2F%40next%2Fenv-12.0.4.tgz"
"version" "12.0.4"
"@next/[email protected]":
"integrity" "sha512-cN+ojHRsufr9Yz0rtvjv8WI5En0RPZRJnt0y16Ha7DD+0n473evz8i1ETEJHmOLeR7iPJR0zxRrxeTN/bJMOjg=="
"resolved" "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-11.1.2.tgz"
"version" "11.1.2"
dependencies:
"glob" "7.1.7"
"@next/[email protected]":
"integrity" "sha512-mk9yCDNpfXINTJKFTZNgwYs7eqRFpc5D/49O/fKB59blihyKl1GY1sZ0l7a2bn5l1X/WuaZzcIfqnrwkneqeaQ=="
"resolved" "https://registry.npmmirror.com/@next/polyfill-module/download/@next/polyfill-module-12.0.4.tgz?cache=0&sync_timestamp=1637509283525&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40next%2Fpolyfill-module%2Fdownload%2F%40next%2Fpolyfill-module-12.0.4.tgz"
"version" "12.0.4"
"@next/[email protected]":
"integrity" "sha512-9O0lXyzv5goFSmDwq9Hp8JE+DcObvd+bTXvmGSSvYR91AlIoVlH8/PwATx8Rf5YEuqggn/XKR1hn2kBYcbcGnA=="
"resolved" "https://registry.npmmirror.com/@next/react-dev-overlay/download/@next/react-dev-overlay-12.0.4.tgz?cache=0&sync_timestamp=1637509333279&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40next%2Freact-dev-overlay%2Fdownload%2F%40next%2Freact-dev-overlay-12.0.4.tgz"
"version" "12.0.4"
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.3"
"source-map" "0.8.0-beta.0"
"stacktrace-parser" "0.1.10"
"strip-ansi" "6.0.1"
"@next/[email protected]":
"integrity" "sha512-kNUDmpBaJ+8Lb8CtKNynRFF9oijCjUKKru6Ont+JKhti9//5dNFFIcuo607bJSH86un06OEK0TZUt5XWVlbkjw=="
"resolved" "https://registry.npmmirror.com/@next/react-refresh-utils/download/@next/react-refresh-utils-12.0.4.tgz"
"version" "12.0.4"
"@next/[email protected]":
"integrity" "sha512-f+7WNIJOno5QEelrmob+3vN5EZJb3KCkOrnvUsQ0+LCCD0dIPIhCjeHAh3BGj9msGu8ijnXvD7JxVxE5V26cnQ=="
"resolved" "https://registry.npmmirror.com/@next/swc-win32-x64-msvc/download/@next/swc-win32-x64-msvc-12.0.4.tgz"
"version" "12.0.4"
"@noble/[email protected]":
"integrity" "sha512-R9PPYv7TqoYi+enikzZvwRQesGTxR0+jwqzZJGL0uNcf2NFL+lt/uvCCewtXXmr6jWBxiMuNjBfJwKv9UJaCng=="
"resolved" "https://registry.npmmirror.com/@noble/hashes/download/@noble/hashes-0.5.7.tgz"
"version" "0.5.7"
"@noble/[email protected]":
"integrity" "sha512-ZVRouDO5mbdCiDg4zCd3ZZABduRtpy4tCnB33Gh9upHe9tRzpiqbRSN1VTjrj/2g8u2c6MBi0YLNnNQpBYOiWg=="
"resolved" "https://registry.npmmirror.com/@noble/secp256k1/download/@noble/secp256k1-1.3.4.tgz"
"version" "1.3.4"
"@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":
"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"
"@polkadot/[email protected]":
"integrity" "sha512-RdNAYB+sXVY4hTnpd29JnuukcFt4IJDyIhafvHblFhjYsPBRE/qYcXpvGGbiqVsvrAg3oj0bxtY9/TXaP0qS1Q=="
"resolved" "https://registry.npmmirror.com/@polkadot/api-augment/download/@polkadot/api-augment-7.3.1.tgz"
"version" "7.3.1"
dependencies:
"@babel/runtime" "^7.16.7"
"@polkadot/api-base" "7.3.1"
"@polkadot/rpc-augment" "7.3.1"
"@polkadot/types" "7.3.1"
"@polkadot/types-augment" "7.3.1"
"@polkadot/types-codec" "7.3.1"
"@polkadot/util" "^8.3.1"
"@polkadot/[email protected]":
"integrity" "sha512-y04stWekxy48YD04nbEUyksMMvJhOlZtVh1UMJbdhhS1eJf5iFgNtBooa1uF2wCGi/5i1BDGUK42mLReFi6ECw=="
"resolved" "https://registry.npmmirror.com/@polkadot/api-base/download/@polkadot/api-base-7.3.1.tgz"
"version" "7.3.1"
dependencies:
"@babel/runtime" "^7.16.7"
"@polkadot/rpc-core" "7.3.1"
"@polkadot/types" "7.3.1"
"@polkadot/util" "^8.3.1"
"rxjs" "^7.5.1"
"@polkadot/[email protected]":
"integrity" "sha512-+AorRBpalaoQIPIoNx1NCSl0MsndlUyeLDhs5+6q0+xjmH0rDoVjGveE7r7ZfJo+eDVAkkXYU/HKvf4p8TIvRQ=="
"resolved" "https://registry.npmmirror.com/@polkadot/api-derive/download/@polkadot/api-derive-7.3.1.tgz"
"version" "7.3.1"
dependencies:
"@babel/runtime" "^7.16.7"
"@polkadot/api" "7.3.1"
"@polkadot/api-augment" "7.3.1"
"@polkadot/api-base" "7.3.1"
"@polkadot/rpc-core" "7.3.1"
"@polkadot/types" "7.3.1"
"@polkadot/types-codec" "7.3.1"
"@polkadot/util" "^8.3.1"
"@polkadot/util-crypto" "^8.3.1"
"rxjs" "^7.5.1"
"@polkadot/api@*", "@polkadot/api@^7.3.1", "@polkadot/[email protected]":
"integrity" "sha512-kHDwuoYCAmyqP3j4eZvoV++EzRY0YVc/nvvfnoL+Hv5FyFraecm9zw638YecXdZvM2m30Ym4cP+Uh+bzEY+WXg=="
"resolved" "https://registry.npmmirror.com/@polkadot/api/download/@polkadot/api-7.3.1.tgz"
"version" "7.3.1"
dependencies:
"@babel/runtime" "^7.16.7"
"@polkadot/api-augment" "7.3.1"
"@polkadot/api-base" "7.3.1"
"@polkadot/api-derive" "7.3.1"
"@polkadot/keyring" "^8.3.1"
"@polkadot/rpc-augment" "7.3.1"
"@polkadot/rpc-core" "7.3.1"
"@polkadot/rpc-provider" "7.3.1"
"@polkadot/types" "7.3.1"
"@polkadot/types-augment" "7.3.1"
"@polkadot/types-codec" "7.3.1"
"@polkadot/types-create" "7.3.1"
"@polkadot/types-known" "7.3.1"
"@polkadot/util" "^8.3.1"
"@polkadot/util-crypto" "^8.3.1"
"eventemitter3" "^4.0.7"
"rxjs" "^7.5.1"
"@polkadot/extension-dapp@^0.42.4":
"integrity" "sha512-/xzUGJOqennrE8yY2gPtcTSN1EWMFa1g8NdapG8+MoOtTtqw9VaF/wXnRndiAAA/V3rb1SG0ZaTAzdPMAONKOw=="
"resolved" "https://registry.npmmirror.com/@polkadot/extension-dapp/download/@polkadot/extension-dapp-0.42.4.tgz"
"version" "0.42.4"
dependencies:
"@babel/runtime" "^7.16.5"
"@polkadot/extension-inject" "^0.42.4"
"@polkadot/util" "^8.2.2"
"@polkadot/util-crypto" "^8.2.2"
"@polkadot/extension-inject@^0.42.4":
"integrity" "sha512-9uYNmfP0N0pC9RXc2JM6NLmqjqpVS9Ihj8cWg+0IVoAFiT1qc9rM1vKFV7fa3cHibsWgeISlPDSjkDhuzzw3BQ=="
"resolved" "https://registry.npmmirror.com/@polkadot/extension-inject/download/@polkadot/extension-inject-0.42.4.tgz"
"version" "0.42.4"
dependencies:
"@babel/runtime" "^7.16.5"
"@polkadot/rpc-provider" "^7.1.1"
"@polkadot/types" "^7.1.1"
"@polkadot/util-crypto" "^8.2.2"
"@polkadot/keyring@^8.3.1":
"integrity" "sha512-kK33MrF8dnhRrWmix84Y9cJA0xKt+wQAtC7f2KHHggR8KUrZnidM+d+hZAkuGLa84wDqwxX4kZD68OZ9BXE6uQ=="
"resolved" "https://registry.npmmirror.com/@polkadot/keyring/download/@polkadot/keyring-8.3.1.tgz"
"version" "8.3.1"
dependencies:
"@babel/runtime" "^7.16.7"
"@polkadot/util" "8.3.1"
"@polkadot/util-crypto" "8.3.1"
"@polkadot/networks@^8.3.1", "@polkadot/[email protected]":
"integrity" "sha512-MG3ryZovtlg3lALeOWQMPEVr+Akr54aYjUMgfrarxpB4Bckw51URfCi/FhrKZRH+VkK1imKJBMDSSEhoA3Rbow=="
"resolved" "https://registry.npmmirror.com/@polkadot/networks/download/@polkadot/networks-8.3.1.tgz"
"version" "8.3.1"
dependencies:
"@babel/runtime" "^7.16.7"
"@polkadot/util" "8.3.1"
"@polkadot/[email protected]":
"integrity" "sha512-af+WaMM4Lai6xUK1t8QvymMkOsJ1OpPzMgblqwmIAH0EePgfRit3srKV7pan7AWHePAhjByzXhF3Sn8LWUNRqA=="
"resolved" "https://registry.npmmirror.com/@polkadot/rpc-augment/download/@polkadot/rpc-augment-7.3.1.tgz"
"version" "7.3.1"
dependencies:
"@babel/runtime" "^7.16.7"
"@polkadot/rpc-core" "7.3.1"
"@polkadot/types" "7.3.1"
"@polkadot/types-codec" "7.3.1"
"@polkadot/util" "^8.3.1"
"@polkadot/[email protected]":
"integrity" "sha512-/qi3GfaRM4JVONRYVleTU2CmXlbdzqWxZg1DhgGcbMPLTfPOHjXRJ+uCqwFpXZKygs8SnDoODY+5vSX1KtLnpg=="
"resolved" "https://registry.npmmirror.com/@polkadot/rpc-core/download/@polkadot/rpc-core-7.3.1.tgz"
"version" "7.3.1"
dependencies:
"@babel/runtime" "^7.16.7"
"@polkadot/rpc-augment" "7.3.1"
"@polkadot/rpc-provider" "7.3.1"
"@polkadot/types" "7.3.1"
"@polkadot/util" "^8.3.1"
"rxjs" "^7.5.1"
"@polkadot/rpc-provider@^7.1.1", "@polkadot/[email protected]":
"integrity" "sha512-7zIPhLFOEVk3g420732RMP75yZoJqEs4PNbhrS8RO5HIKwdjJolpnKPLMQ/es/zEYGCitU/vQV6NE7pufsqxkA=="
"resolved" "https://registry.npmmirror.com/@polkadot/rpc-provider/download/@polkadot/rpc-provider-7.3.1.tgz"
"version" "7.3.1"
dependencies:
"@babel/runtime" "^7.16.7"
"@polkadot/keyring" "^8.3.1"
"@polkadot/types" "7.3.1"
"@polkadot/types-support" "7.3.1"
"@polkadot/util" "^8.3.1"
"@polkadot/util-crypto" "^8.3.1"
"@polkadot/x-fetch" "^8.3.1"
"@polkadot/x-global" "^8.3.1"
"@polkadot/x-ws" "^8.3.1"
"eventemitter3" "^4.0.7"
"mock-socket" "^9.0.8"
"nock" "^13.2.1"
"@polkadot/[email protected]":
"integrity" "sha512-qYW05PntTP61U9Sbrx/kPeWqF06cJ29TUA/8CWzE0VLnVkLLqqgsahjv3VSX3sEQ9Lx943AeJjxZISQZxKFumg=="
"resolved" "https://registry.npmmirror.com/@polkadot/types-augment/download/@polkadot/types-augment-7.3.1.tgz"
"version" "7.3.1"
dependencies:
"@babel/runtime" "^7.16.7"
"@polkadot/types" "7.3.1"
"@polkadot/types-codec" "7.3.1"
"@polkadot/util" "^8.3.1"
"@polkadot/[email protected]":
"integrity" "sha512-vgd1kT7LkklIMMt4Je8CLH2wDID3lDcDy3YBfIjxRjSFSSvDO0wuT+VpqpVFha9zfDcWVCyairo71QrzLvuNqw=="
"resolved" "https://registry.npmmirror.com/@polkadot/types-codec/download/@polkadot/types-codec-7.3.1.tgz"
"version" "7.3.1"
dependencies:
"@babel/runtime" "^7.16.7"
"@polkadot/util" "^8.3.1"
"@polkadot/[email protected]":
"integrity" "sha512-nwJq2cGZAiLphHGqBVzX0Q3/j9m0ClksSpg29BTUyD0PGvV+TLEYOA9uz0emGzqGUvwks87mA7tyXMMXoiUpAg=="
"resolved" "https://registry.npmmirror.com/@polkadot/types-create/download/@polkadot/types-create-7.3.1.tgz"
"version" "7.3.1"
dependencies:
"@babel/runtime" "^7.16.7"
"@polkadot/types-codec" "7.3.1"
"@polkadot/util" "^8.3.1"
"@polkadot/[email protected]":
"integrity" "sha512-6NJwrW0S6bL9T1X3TVG6IHctJLQXClo/pY3kmkPQZpXMSZStWliDeaJCCBtTj0MF6o5LQrCiCfUcMaetwi5Yaw=="
"resolved" "https://registry.npmmirror.com/@polkadot/types-known/download/@polkadot/types-known-7.3.1.tgz"
"version" "7.3.1"
dependencies:
"@babel/runtime" "^7.16.7"
"@polkadot/networks" "^8.3.1"
"@polkadot/types" "7.3.1"
"@polkadot/types-codec" "7.3.1"
"@polkadot/types-create" "7.3.1"
"@polkadot/util" "^8.3.1"
"@polkadot/[email protected]":
"integrity" "sha512-xx+t1rkyEZbQ3Q+oQvPd6br6cDBmGhRjDpc6V/smUUe72yFXzLWqNWsSUR56tJGb8ITbRZPOTPFiYE+1PTH0Jg=="
"resolved" "https://registry.npmmirror.com/@polkadot/types-support/download/@polkadot/types-support-7.3.1.tgz"
"version" "7.3.1"
dependencies:
"@babel/runtime" "^7.16.7"
"@polkadot/util" "^8.3.1"
"@polkadot/types@^7.1.1", "@polkadot/types@^7.3.1", "@polkadot/[email protected]":
"integrity" "sha512-ysCOxj1QP/ZpLkMJei9/LgI6cC/tOO6p0MUhBI0xDIZDSUISzIyopzkoHkOKpkrRSHY4zMN2D/UveYq3quIKAQ=="
"resolved" "https://registry.npmmirror.com/@polkadot/types/download/@polkadot/types-7.3.1.tgz"
"version" "7.3.1"
dependencies:
"@babel/runtime" "^7.16.7"
"@polkadot/keyring" "^8.3.1"
"@polkadot/types-augment" "7.3.1"
"@polkadot/types-codec" "7.3.1"
"@polkadot/types-create" "7.3.1"
"@polkadot/util" "^8.3.1"
"@polkadot/util-crypto" "^8.3.1"
"rxjs" "^7.5.1"
"@polkadot/util-crypto@^8.2.2", "@polkadot/util-crypto@^8.3.1", "@polkadot/[email protected]":
"integrity" "sha512-srEHwMwRSfuLxh/J4PRHWVVbROapo3LNkYgKvpbIxf1Ef2rZT/vfzlNtxUHdFwcEioOoo9elxCnV5zVJDZ1whw=="
"resolved" "https://registry.npmmirror.com/@polkadot/util-crypto/download/@polkadot/util-crypto-8.3.1.tgz"
"version" "8.3.1"
dependencies:
"@babel/runtime" "^7.16.7"
"@noble/hashes" "0.5.7"
"@noble/secp256k1" "1.3.4"
"@polkadot/networks" "8.3.1"
"@polkadot/util" "8.3.1"
"@polkadot/wasm-crypto" "^4.5.1"
"@polkadot/x-bigint" "8.3.1"
"@polkadot/x-randomvalues" "8.3.1"
"ed2curve" "^0.3.0"
"micro-base" "^0.10.2"
"tweetnacl" "^1.0.3"
"@polkadot/util@*", "@polkadot/util@^8.2.2", "@polkadot/util@^8.3.1", "@polkadot/[email protected]":
"integrity" "sha512-0jkxqDKBd9Tl7DeIrazNOsvo4rVlWIfxU+Xn021rBLjKZwfWICRuEcywpZ8D3AS9ZpUxymb8VAAu77wkCG2j4Q=="
"resolved" "https://registry.npmmirror.com/@polkadot/util/download/@polkadot/util-8.3.1.tgz"
"version" "8.3.1"
dependencies:
"@babel/runtime" "^7.16.7"
"@polkadot/x-bigint" "8.3.1"
"@polkadot/x-global" "8.3.1"
"@polkadot/x-textdecoder" "8.3.1"
"@polkadot/x-textencoder" "8.3.1"
"@types/bn.js" "^4.11.6"
"bn.js" "^4.12.0"
"ip-regex" "^4.3.0"
"@polkadot/wasm-crypto-asmjs@^4.5.1":
"integrity" "sha512-DOdRiWhxVvmqTvp+E9z1j+Yr0zDOGsDvqnT/eNw0Dl1FVUOImsEa7FKns/urASmcxCVEE1jtUWSnij29jrORMQ=="
"resolved" "https://registry.npmmirror.com/@polkadot/wasm-crypto-asmjs/download/@polkadot/wasm-crypto-asmjs-4.5.1.tgz"
"version" "4.5.1"
dependencies:
"@babel/runtime" "^7.16.3"
"@polkadot/wasm-crypto-wasm@^4.5.1":
"integrity" "sha512-hPwke85HxpgG/RAlwdCE8u5w7bThvWg399mlB+XjogXMxOUWBZSgq2XYbgzROUXx27inK9nStF4Pnc4zJnqs9A=="
"resolved" "https://registry.npmmirror.com/@polkadot/wasm-crypto-wasm/download/@polkadot/wasm-crypto-wasm-4.5.1.tgz"
"version" "4.5.1"
dependencies:
"@babel/runtime" "^7.16.3"
"@polkadot/wasm-crypto@^4.5.1":
"integrity" "sha512-Cr21ais3Kq3aedIHZ3J1tjgeD/+K8FCiwEawr0oRywNBSJR8wyuZMePs4swR/6xm8wbBkpqoBVHz/UQHqqQJmA=="
"resolved" "https://registry.npmmirror.com/@polkadot/wasm-crypto/download/@polkadot/wasm-crypto-4.5.1.tgz"
"version" "4.5.1"
dependencies:
"@babel/runtime" "^7.16.3"
"@polkadot/wasm-crypto-asmjs" "^4.5.1"