forked from Bowen7/regex-vis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpnpm-lock.yaml
13456 lines (11757 loc) · 639 KB
/
pnpm-lock.yaml
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
lockfileVersion: 5.4
specifiers:
'@babel/core': ^7.0.0
'@babel/preset-env': ^7.14.2
'@babel/preset-react': ^7.14.5
'@babel/preset-typescript': ^7.14.5
'@geist-ui/core': ^2.3.8
'@geist-ui/icons': ^1.0.2
'@sentry/react': ^7.7.0
'@sentry/tracing': ^7.7.0
'@svgr/webpack': ^5.5.0
'@testing-library/jest-dom': ^5.16.4
'@testing-library/react': ^13.3.0
'@types/gtag.js': ^0.0.7
'@types/jest': ^26.0.13
'@types/node': ^12.0.0
'@types/react': ^18.0.11
'@types/react-dom': ^18.0.5
'@types/styled-jsx': ^2.2.8
'@types/testing-library__jest-dom': ^5.14.4
babel-plugin-import: ^1.13.3
customize-cra: ^1.0.0
hex-rgb: ^5.0.0
i18next: ^21.6.16
i18next-browser-languagedetector: ^6.1.4
i18next-http-backend: ^1.4.0
immer: ^9.0.6
jest: ^26.6.0
jotai: ^1.7.1
nanoid: ^3.1.16
react: ^18.1.0
react-app-rewired: ^2.1.6
react-dom: ^18.1.0
react-i18next: ^11.16.7
react-router-dom: ^6.3.0
react-scripts: 4.0.3
react-use: ^17.4.0
regenerator-runtime: ^0.13.9
styled-jsx: ^5.0.2
tilg: ^0.1.1
ts-jest: ^26.5.6
ts-node: ^10.0.0
typescript: ^4.5.4
dependencies:
'@babel/core': 7.14.6
'@geist-ui/core': 2.3.8_ef5jwxihqo6n7gxfmzogljlgcm
'@geist-ui/icons': 1.0.2_4bwnuquxihmm3xbb5eqkhi5pui
'@sentry/react': 7.7.0_react@18.1.0
'@sentry/tracing': 7.7.0
hex-rgb: 5.0.0
i18next: 21.6.16
i18next-browser-languagedetector: 6.1.4
i18next-http-backend: 1.4.0
immer: 9.0.6
jotai: 1.7.1_f2doctsj6mecwv6cns5elz5mme
nanoid: 3.1.23
react: 18.1.0
react-dom: 18.1.0_react@18.1.0
react-i18next: 11.16.7_47hlnquejirkg3ammbyc66ijei
react-router-dom: 6.3.0_ef5jwxihqo6n7gxfmzogljlgcm
react-scripts: 4.0.3_mih24jlyjazy2hqp3w537qgrna
react-use: 17.4.0_ef5jwxihqo6n7gxfmzogljlgcm
styled-jsx: 5.0.2_2oxg4xypyijcywir6rgm4m42qy
tilg: 0.1.1_react@18.1.0
typescript: 4.6.3
devDependencies:
'@babel/preset-env': 7.14.2_@babel+core@7.14.6
'@babel/preset-react': 7.16.7_@babel+core@7.14.6
'@babel/preset-typescript': 7.16.7_@babel+core@7.14.6
'@svgr/webpack': 5.5.0
'@testing-library/jest-dom': 5.16.4
'@testing-library/react': 13.3.0_ef5jwxihqo6n7gxfmzogljlgcm
'@types/gtag.js': 0.0.7
'@types/jest': 26.0.24
'@types/node': 12.20.13
'@types/react': 18.0.11
'@types/react-dom': 18.0.5
'@types/styled-jsx': 2.2.8
'@types/testing-library__jest-dom': 5.14.4
babel-plugin-import: 1.13.3
customize-cra: 1.0.0
jest: 26.6.0_ts-node@10.0.0
react-app-rewired: 2.1.8_react-scripts@4.0.3
regenerator-runtime: 0.13.9
ts-jest: 26.5.6_u6owhogmjz5hocps47wqjkm5zi
ts-node: 10.0.0_pnmx6ogroqyqwc2hyqoliwxtz4
packages:
/@babel/code-frame/7.10.4:
resolution: {integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz}
dependencies:
'@babel/highlight': 7.17.9
dev: false
/@babel/code-frame/7.12.11:
resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz}
dependencies:
'@babel/highlight': 7.17.9
dev: false
/@babel/code-frame/7.14.5:
resolution: {integrity: sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.14.5.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.14.5
/@babel/code-frame/7.16.7:
resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.17.9
/@babel/compat-data/7.14.0:
resolution: {integrity: sha512-vu9V3uMM/1o5Hl5OekMUowo3FqXLJSw+s+66nt0fSWVWTtmosdzn45JHOB3cPtZoe6CTBDzvSw0RdOY85Q37+Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.0.tgz}
dev: true
/@babel/compat-data/7.14.4:
resolution: {integrity: sha512-i2wXrWQNkH6JplJQGn3Rd2I4Pij8GdHkXwHMxm+zV5YG/Jci+bCNrWZEWC4o+umiDkRrRs4dVzH3X4GP7vyjQQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.4.tgz}
/@babel/compat-data/7.14.7:
resolution: {integrity: sha512-nS6dZaISCXJ3+518CWiBfEr//gHyMO02uDxBkXTKZDN5POruCnOZ1N4YBRZDCabwF8nZMWBpRxIicmXtBs+fvw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.7.tgz}
engines: {node: '>=6.9.0'}
/@babel/core/7.12.3:
resolution: {integrity: sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/core/-/core-7.12.3.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.14.5
'@babel/generator': 7.14.5
'@babel/helper-module-transforms': 7.14.5
'@babel/helpers': 7.14.6
'@babel/parser': 7.14.7
'@babel/template': 7.14.5
'@babel/traverse': 7.14.7
'@babel/types': 7.14.5
convert-source-map: 1.8.0
debug: 4.3.1
gensync: 1.0.0-beta.2
json5: 2.2.0
lodash: 4.17.21
resolve: 1.20.0
semver: 5.7.1
source-map: 0.5.7
transitivePeerDependencies:
- supports-color
dev: false
/@babel/core/7.14.6:
resolution: {integrity: sha512-gJnOEWSqTk96qG5BoIrl5bVtc23DCycmIePPYnamY9RboYdI4nFy5vAQMSl81O5K/W0sLDWfGysnOECC+KUUCA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/core/-/core-7.14.6.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.14.5
'@babel/generator': 7.14.5
'@babel/helper-compilation-targets': 7.14.5_@babel+core@7.14.6
'@babel/helper-module-transforms': 7.14.5
'@babel/helpers': 7.14.6
'@babel/parser': 7.14.7
'@babel/template': 7.14.5
'@babel/traverse': 7.14.7
'@babel/types': 7.17.0
convert-source-map: 1.8.0
debug: 4.3.1
gensync: 1.0.0-beta.2
json5: 2.2.0
semver: 6.3.0
source-map: 0.5.7
transitivePeerDependencies:
- supports-color
/@babel/generator/7.14.2:
resolution: {integrity: sha512-OnADYbKrffDVai5qcpkMxQ7caomHOoEwjkouqnN2QhydAjowFAZcsdecFIRUBdb+ZcruwYE4ythYmF1UBZU5xQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.2.tgz}
dependencies:
'@babel/types': 7.17.0
jsesc: 2.5.2
source-map: 0.5.7
/@babel/generator/7.14.5:
resolution: {integrity: sha512-y3rlP+/G25OIX3mYKKIOlQRcqj7YgrvHxOLbVmyLJ9bPmi5ttvUmpydVjcFjZphOktWuA7ovbx91ECloWTfjIA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.5.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.17.0
jsesc: 2.5.2
source-map: 0.5.7
/@babel/generator/7.17.9:
resolution: {integrity: sha512-rAdDousTwxbIxbz5I7GEQ3lUip+xVCXooZNbsydCWs3xA7ZsYOv+CFRdzGxRX78BmQHu9B1Eso59AOZQOJDEdQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/generator/-/generator-7.17.9.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.17.0
jsesc: 2.5.2
source-map: 0.5.7
/@babel/helper-annotate-as-pure/7.12.13:
resolution: {integrity: sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz}
dependencies:
'@babel/types': 7.17.0
/@babel/helper-annotate-as-pure/7.16.7:
resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.17.0
/@babel/helper-builder-binary-assignment-operator-visitor/7.12.13:
resolution: {integrity: sha512-CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz}
dependencies:
'@babel/helper-explode-assignable-expression': 7.13.0
'@babel/types': 7.17.0
/@babel/helper-compilation-targets/7.13.16_@babel+core@7.14.6:
resolution: {integrity: sha512-3gmkYIrpqsLlieFwjkGgLaSHmhnvlAYzZLlYVjlW+QwI+1zE17kGxuJGmIqDQdYp56XdmGeD+Bswx0UTyG18xA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.16.tgz}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/compat-data': 7.14.0
'@babel/core': 7.14.6
'@babel/helper-validator-option': 7.12.17
browserslist: 4.16.6
semver: 6.3.0
dev: true
/@babel/helper-compilation-targets/7.14.4_@babel+core@7.12.3:
resolution: {integrity: sha512-JgdzOYZ/qGaKTVkn5qEDV/SXAh8KcyUVkCoSWGN8T3bwrgd6m+/dJa2kVGi6RJYJgEYPBdZ84BZp9dUjNWkBaA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.4.tgz}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/compat-data': 7.14.4
'@babel/core': 7.12.3
'@babel/helper-validator-option': 7.12.17
browserslist: 4.16.6
semver: 6.3.0
dev: false
/@babel/helper-compilation-targets/7.14.4_@babel+core@7.14.6:
resolution: {integrity: sha512-JgdzOYZ/qGaKTVkn5qEDV/SXAh8KcyUVkCoSWGN8T3bwrgd6m+/dJa2kVGi6RJYJgEYPBdZ84BZp9dUjNWkBaA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.4.tgz}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/compat-data': 7.14.4
'@babel/core': 7.14.6
'@babel/helper-validator-option': 7.12.17
browserslist: 4.16.6
semver: 6.3.0
/@babel/helper-compilation-targets/7.14.5_@babel+core@7.12.3:
resolution: {integrity: sha512-v+QtZqXEiOnpO6EYvlImB6zCD2Lel06RzOPzmkz/D/XgQiUu3C/Jb1LOqSt/AIA34TYi/Q+KlT8vTQrgdxkbLw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.5.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/compat-data': 7.14.7
'@babel/core': 7.12.3
'@babel/helper-validator-option': 7.14.5
browserslist: 4.16.6
semver: 6.3.0
dev: false
/@babel/helper-compilation-targets/7.14.5_@babel+core@7.14.6:
resolution: {integrity: sha512-v+QtZqXEiOnpO6EYvlImB6zCD2Lel06RzOPzmkz/D/XgQiUu3C/Jb1LOqSt/AIA34TYi/Q+KlT8vTQrgdxkbLw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.5.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/compat-data': 7.14.7
'@babel/core': 7.14.6
'@babel/helper-validator-option': 7.14.5
browserslist: 4.16.6
semver: 6.3.0
/@babel/helper-create-class-features-plugin/7.14.2_@babel+core@7.12.3:
resolution: {integrity: sha512-6YctwVsmlkchxfGUogvVrrhzyD3grFJyluj5JgDlQrwfMLJSt5tdAzFZfPf4H2Xoi5YLcQ6BxfJlaOBHuctyIw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.2.tgz}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-annotate-as-pure': 7.12.13
'@babel/helper-function-name': 7.14.2
'@babel/helper-member-expression-to-functions': 7.13.12
'@babel/helper-optimise-call-expression': 7.12.13
'@babel/helper-replace-supers': 7.13.12
'@babel/helper-split-export-declaration': 7.12.13
transitivePeerDependencies:
- supports-color
dev: false
/@babel/helper-create-class-features-plugin/7.14.2_@babel+core@7.14.6:
resolution: {integrity: sha512-6YctwVsmlkchxfGUogvVrrhzyD3grFJyluj5JgDlQrwfMLJSt5tdAzFZfPf4H2Xoi5YLcQ6BxfJlaOBHuctyIw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.2.tgz}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.14.6
'@babel/helper-annotate-as-pure': 7.12.13
'@babel/helper-function-name': 7.14.2
'@babel/helper-member-expression-to-functions': 7.13.12
'@babel/helper-optimise-call-expression': 7.12.13
'@babel/helper-replace-supers': 7.13.12
'@babel/helper-split-export-declaration': 7.12.13
transitivePeerDependencies:
- supports-color
/@babel/helper-create-class-features-plugin/7.14.4_@babel+core@7.12.3:
resolution: {integrity: sha512-idr3pthFlDCpV+p/rMgGLGYIVtazeatrSOQk8YzO2pAepIjQhCN3myeihVg58ax2bbbGK9PUE1reFi7axOYIOw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.4.tgz}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-annotate-as-pure': 7.12.13
'@babel/helper-function-name': 7.14.2
'@babel/helper-member-expression-to-functions': 7.13.12
'@babel/helper-optimise-call-expression': 7.12.13
'@babel/helper-replace-supers': 7.14.4
'@babel/helper-split-export-declaration': 7.12.13
transitivePeerDependencies:
- supports-color
dev: false
/@babel/helper-create-class-features-plugin/7.17.9_@babel+core@7.12.3:
resolution: {integrity: sha512-kUjip3gruz6AJKOq5i3nC6CoCEEF/oHH3cp6tOZhB+IyyyPyW0g1Gfsxn3mkk6S08pIA2y8GQh609v9G/5sHVQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.9.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-annotate-as-pure': 7.16.7
'@babel/helper-environment-visitor': 7.16.7
'@babel/helper-function-name': 7.17.9
'@babel/helper-member-expression-to-functions': 7.17.7
'@babel/helper-optimise-call-expression': 7.16.7
'@babel/helper-replace-supers': 7.16.7
'@babel/helper-split-export-declaration': 7.16.7
transitivePeerDependencies:
- supports-color
dev: false
/@babel/helper-create-class-features-plugin/7.17.9_@babel+core@7.14.6:
resolution: {integrity: sha512-kUjip3gruz6AJKOq5i3nC6CoCEEF/oHH3cp6tOZhB+IyyyPyW0g1Gfsxn3mkk6S08pIA2y8GQh609v9G/5sHVQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.9.tgz}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.14.6
'@babel/helper-annotate-as-pure': 7.16.7
'@babel/helper-environment-visitor': 7.16.7
'@babel/helper-function-name': 7.17.9
'@babel/helper-member-expression-to-functions': 7.17.7
'@babel/helper-optimise-call-expression': 7.16.7
'@babel/helper-replace-supers': 7.16.7
'@babel/helper-split-export-declaration': 7.16.7
transitivePeerDependencies:
- supports-color
/@babel/helper-create-regexp-features-plugin/7.12.17_@babel+core@7.12.3:
resolution: {integrity: sha512-p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.17.tgz}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-annotate-as-pure': 7.12.13
regexpu-core: 4.7.1
dev: false
/@babel/helper-create-regexp-features-plugin/7.12.17_@babel+core@7.14.6:
resolution: {integrity: sha512-p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.17.tgz}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.14.6
'@babel/helper-annotate-as-pure': 7.12.13
regexpu-core: 4.7.1
/@babel/helper-define-polyfill-provider/0.2.0_@babel+core@7.14.6:
resolution: {integrity: sha512-JT8tHuFjKBo8NnaUbblz7mIu1nnvUDiHVjXXkulZULyidvo/7P6TY7+YqpV37IfF+KUFxmlK04elKtGKXaiVgw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.2.0.tgz}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
'@babel/core': 7.14.6
'@babel/helper-compilation-targets': 7.13.16_@babel+core@7.14.6
'@babel/helper-module-imports': 7.13.12
'@babel/helper-plugin-utils': 7.16.7
'@babel/traverse': 7.14.2
debug: 4.3.1
lodash.debounce: 4.0.8
resolve: 1.20.0
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
/@babel/helper-define-polyfill-provider/0.2.3_@babel+core@7.14.6:
resolution: {integrity: sha512-RH3QDAfRMzj7+0Nqu5oqgO5q9mFtQEVvCRsi8qCEfzLR9p2BHfn5FzhSB2oj1fF7I2+DcTORkYaQ6aTR9Cofew==}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
'@babel/core': 7.14.6
'@babel/helper-compilation-targets': 7.14.5_@babel+core@7.14.6
'@babel/helper-module-imports': 7.16.7
'@babel/helper-plugin-utils': 7.16.7
'@babel/traverse': 7.17.9
debug: 4.3.1
lodash.debounce: 4.0.8
resolve: 1.20.0
semver: 6.3.0
transitivePeerDependencies:
- supports-color
/@babel/helper-environment-visitor/7.16.7:
resolution: {integrity: sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.17.0
/@babel/helper-explode-assignable-expression/7.13.0:
resolution: {integrity: sha512-qS0peLTDP8kOisG1blKbaoBg/o9OSa1qoumMjTK5pM+KDTtpxpsiubnCGP34vK8BXGcb2M9eigwgvoJryrzwWA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.13.0.tgz}
dependencies:
'@babel/types': 7.17.0
/@babel/helper-function-name/7.14.2:
resolution: {integrity: sha512-NYZlkZRydxw+YT56IlhIcS8PAhb+FEUiOzuhFTfqDyPmzAhRge6ua0dQYT/Uh0t/EDHq05/i+e5M2d4XvjgarQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.14.2.tgz}
dependencies:
'@babel/helper-get-function-arity': 7.12.13
'@babel/template': 7.12.13
'@babel/types': 7.17.0
/@babel/helper-function-name/7.14.5:
resolution: {integrity: sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-get-function-arity': 7.14.5
'@babel/template': 7.14.5
'@babel/types': 7.17.0
/@babel/helper-function-name/7.17.9:
resolution: {integrity: sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.16.7
'@babel/types': 7.17.0
/@babel/helper-get-function-arity/7.12.13:
resolution: {integrity: sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz}
dependencies:
'@babel/types': 7.17.0
/@babel/helper-get-function-arity/7.14.5:
resolution: {integrity: sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.17.0
/@babel/helper-hoist-variables/7.13.16:
resolution: {integrity: sha512-1eMtTrXtrwscjcAeO4BVK+vvkxaLJSPFz1w1KLawz6HLNi9bPFGBNwwDyVfiu1Tv/vRRFYfoGaKhmAQPGPn5Wg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.13.16.tgz}
dependencies:
'@babel/traverse': 7.14.2
'@babel/types': 7.17.0
transitivePeerDependencies:
- supports-color
/@babel/helper-hoist-variables/7.14.5:
resolution: {integrity: sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.17.0
/@babel/helper-hoist-variables/7.16.7:
resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.17.0
/@babel/helper-member-expression-to-functions/7.13.12:
resolution: {integrity: sha512-48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz}
dependencies:
'@babel/types': 7.17.0
/@babel/helper-member-expression-to-functions/7.14.7:
resolution: {integrity: sha512-TMUt4xKxJn6ccjcOW7c4hlwyJArizskAhoSTOCkA0uZ+KghIaci0Qg9R043kUMWI9mtQfgny+NQ5QATnZ+paaA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.7.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.17.0
/@babel/helper-member-expression-to-functions/7.17.7:
resolution: {integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.17.7.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.17.0
/@babel/helper-module-imports/7.13.12:
resolution: {integrity: sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz}
dependencies:
'@babel/types': 7.14.2
/@babel/helper-module-imports/7.14.5:
resolution: {integrity: sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.17.0
/@babel/helper-module-imports/7.16.7:
resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.17.0
/@babel/helper-module-transforms/7.14.2:
resolution: {integrity: sha512-OznJUda/soKXv0XhpvzGWDnml4Qnwp16GN+D/kZIdLsWoHj05kyu8Rm5kXmMef+rVJZ0+4pSGLkeixdqNUATDA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.2.tgz}
dependencies:
'@babel/helper-module-imports': 7.13.12
'@babel/helper-replace-supers': 7.13.12
'@babel/helper-simple-access': 7.13.12
'@babel/helper-split-export-declaration': 7.12.13
'@babel/helper-validator-identifier': 7.14.0
'@babel/template': 7.12.13
'@babel/traverse': 7.14.2
'@babel/types': 7.17.0
transitivePeerDependencies:
- supports-color
/@babel/helper-module-transforms/7.14.5:
resolution: {integrity: sha512-iXpX4KW8LVODuAieD7MzhNjmM6dzYY5tfRqT+R9HDXWl0jPn/djKmA+G9s/2C2T9zggw5tK1QNqZ70USfedOwA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.5.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-module-imports': 7.14.5
'@babel/helper-replace-supers': 7.14.5
'@babel/helper-simple-access': 7.14.5
'@babel/helper-split-export-declaration': 7.14.5
'@babel/helper-validator-identifier': 7.16.7
'@babel/template': 7.14.5
'@babel/traverse': 7.14.7
'@babel/types': 7.17.0
transitivePeerDependencies:
- supports-color
/@babel/helper-optimise-call-expression/7.12.13:
resolution: {integrity: sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz}
dependencies:
'@babel/types': 7.17.0
/@babel/helper-optimise-call-expression/7.14.5:
resolution: {integrity: sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.17.0
/@babel/helper-optimise-call-expression/7.16.7:
resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.17.0
/@babel/helper-plugin-utils/7.13.0:
resolution: {integrity: sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz}
/@babel/helper-plugin-utils/7.16.7:
resolution: {integrity: sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz}
engines: {node: '>=6.9.0'}
/@babel/helper-remap-async-to-generator/7.13.0:
resolution: {integrity: sha512-pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.13.0.tgz}
dependencies:
'@babel/helper-annotate-as-pure': 7.12.13
'@babel/helper-wrap-function': 7.13.0
'@babel/types': 7.17.0
transitivePeerDependencies:
- supports-color
/@babel/helper-replace-supers/7.13.12:
resolution: {integrity: sha512-Gz1eiX+4yDO8mT+heB94aLVNCL+rbuT2xy4YfyNqu8F+OI6vMvJK891qGBTqL9Uc8wxEvRW92Id6G7sDen3fFw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.13.12.tgz}
dependencies:
'@babel/helper-member-expression-to-functions': 7.13.12
'@babel/helper-optimise-call-expression': 7.12.13
'@babel/traverse': 7.14.2
'@babel/types': 7.17.0
transitivePeerDependencies:
- supports-color
/@babel/helper-replace-supers/7.14.4:
resolution: {integrity: sha512-zZ7uHCWlxfEAAOVDYQpEf/uyi1dmeC7fX4nCf2iz9drnCwi1zvwXL3HwWWNXUQEJ1k23yVn3VbddiI9iJEXaTQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.14.4.tgz}
dependencies:
'@babel/helper-member-expression-to-functions': 7.13.12
'@babel/helper-optimise-call-expression': 7.12.13
'@babel/traverse': 7.14.2
'@babel/types': 7.17.0
transitivePeerDependencies:
- supports-color
/@babel/helper-replace-supers/7.14.5:
resolution: {integrity: sha512-3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.14.5.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-member-expression-to-functions': 7.14.7
'@babel/helper-optimise-call-expression': 7.14.5
'@babel/traverse': 7.14.7
'@babel/types': 7.17.0
transitivePeerDependencies:
- supports-color
/@babel/helper-replace-supers/7.16.7:
resolution: {integrity: sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': 7.16.7
'@babel/helper-member-expression-to-functions': 7.17.7
'@babel/helper-optimise-call-expression': 7.16.7
'@babel/traverse': 7.17.9
'@babel/types': 7.17.0
transitivePeerDependencies:
- supports-color
/@babel/helper-simple-access/7.13.12:
resolution: {integrity: sha512-7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz}
dependencies:
'@babel/types': 7.17.0
/@babel/helper-simple-access/7.14.5:
resolution: {integrity: sha512-nfBN9xvmCt6nrMZjfhkl7i0oTV3yxR4/FztsbOASyTvVcoYd0TRHh7eMLdlEcCqobydC0LAF3LtC92Iwxo0wyw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.14.5.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.17.0
/@babel/helper-skip-transparent-expression-wrappers/7.12.1:
resolution: {integrity: sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz}
dependencies:
'@babel/types': 7.17.0
/@babel/helper-split-export-declaration/7.12.13:
resolution: {integrity: sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz}
dependencies:
'@babel/types': 7.17.0
/@babel/helper-split-export-declaration/7.14.5:
resolution: {integrity: sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.17.0
/@babel/helper-split-export-declaration/7.16.7:
resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.17.0
/@babel/helper-validator-identifier/7.14.0:
resolution: {integrity: sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz}
/@babel/helper-validator-identifier/7.16.7:
resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==}
engines: {node: '>=6.9.0'}
/@babel/helper-validator-option/7.12.17:
resolution: {integrity: sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz}
/@babel/helper-validator-option/7.14.5:
resolution: {integrity: sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz}
engines: {node: '>=6.9.0'}
/@babel/helper-validator-option/7.16.7:
resolution: {integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz}
engines: {node: '>=6.9.0'}
/@babel/helper-wrap-function/7.13.0:
resolution: {integrity: sha512-1UX9F7K3BS42fI6qd2A4BjKzgGjToscyZTdp1DjknHLCIvpgne6918io+aL5LXFcER/8QWiwpoY902pVEqgTXA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.13.0.tgz}
dependencies:
'@babel/helper-function-name': 7.14.2
'@babel/template': 7.12.13
'@babel/traverse': 7.14.2
'@babel/types': 7.17.0
transitivePeerDependencies:
- supports-color
/@babel/helpers/7.14.6:
resolution: {integrity: sha512-yesp1ENQBiLI+iYHSJdoZKUtRpfTlL1grDIX9NRlAVppljLw/4tTyYupIB7uIYmC3stW/imAv8EqaKaS/ibmeA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.14.6.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.14.5
'@babel/traverse': 7.14.7
'@babel/types': 7.17.0
transitivePeerDependencies:
- supports-color
/@babel/highlight/7.14.5:
resolution: {integrity: sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.5.tgz}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': 7.16.7
chalk: 2.4.2
js-tokens: 4.0.0
/@babel/highlight/7.17.9:
resolution: {integrity: sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': 7.16.7
chalk: 2.4.2
js-tokens: 4.0.0
/@babel/parser/7.14.2:
resolution: {integrity: sha512-IoVDIHpsgE/fu7eXBeRWt8zLbDrSvD7H1gpomOkPpBoEN8KCruCqSDdqo8dddwQQrui30KSvQBaMUOJiuFu6QQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.2.tgz}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': 7.17.0
/@babel/parser/7.14.7:
resolution: {integrity: sha512-X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.7.tgz}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': 7.17.0
/@babel/parser/7.17.9:
resolution: {integrity: sha512-vqUSBLP8dQHFPdPi9bc5GK9vRkYHJ49fsZdtoJ8EQ8ibpwk5rPKfvNIwChB0KVXcIjcepEBBd2VHC5r9Gy8ueg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/parser/-/parser-7.17.9.tgz}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': 7.17.0
/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.13.12_@babel+core@7.14.6:
resolution: {integrity: sha512-d0u3zWKcoZf379fOeJdr1a5WPDny4aOFZ6hlfKivgK0LY7ZxNfoaHL2fWwdGtHyVvra38FC+HVYkO+byfSA8AQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.13.12.tgz}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
'@babel/core': 7.14.6
'@babel/helper-plugin-utils': 7.13.0
'@babel/helper-skip-transparent-expression-wrappers': 7.12.1
'@babel/plugin-proposal-optional-chaining': 7.14.2_@babel+core@7.14.6
/@babel/plugin-proposal-async-generator-functions/7.14.2_@babel+core@7.12.3:
resolution: {integrity: sha512-b1AM4F6fwck4N8ItZ/AtC4FP/cqZqmKRQ4FaTDutwSYyjuhtvsGEMLK4N/ztV/ImP40BjIDyMgBQAeAMsQYVFQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.2.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-plugin-utils': 7.13.0
'@babel/helper-remap-async-to-generator': 7.13.0
'@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.3
transitivePeerDependencies:
- supports-color
dev: false
/@babel/plugin-proposal-async-generator-functions/7.14.2_@babel+core@7.14.6:
resolution: {integrity: sha512-b1AM4F6fwck4N8ItZ/AtC4FP/cqZqmKRQ4FaTDutwSYyjuhtvsGEMLK4N/ztV/ImP40BjIDyMgBQAeAMsQYVFQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.2.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.14.6
'@babel/helper-plugin-utils': 7.13.0
'@babel/helper-remap-async-to-generator': 7.13.0
'@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.14.6
transitivePeerDependencies:
- supports-color
/@babel/plugin-proposal-class-properties/7.12.1_@babel+core@7.12.3:
resolution: {integrity: sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-create-class-features-plugin': 7.14.4_@babel+core@7.12.3
'@babel/helper-plugin-utils': 7.16.7
transitivePeerDependencies:
- supports-color
dev: false
/@babel/plugin-proposal-class-properties/7.13.0_@babel+core@7.12.3:
resolution: {integrity: sha512-KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-create-class-features-plugin': 7.14.2_@babel+core@7.12.3
'@babel/helper-plugin-utils': 7.13.0
transitivePeerDependencies:
- supports-color
dev: false
/@babel/plugin-proposal-class-properties/7.13.0_@babel+core@7.14.6:
resolution: {integrity: sha512-KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.14.6
'@babel/helper-create-class-features-plugin': 7.14.2_@babel+core@7.14.6
'@babel/helper-plugin-utils': 7.13.0
transitivePeerDependencies:
- supports-color
/@babel/plugin-proposal-class-static-block/7.13.11_@babel+core@7.14.6:
resolution: {integrity: sha512-fJTdFI4bfnMjvxJyNuaf8i9mVcZ0UhetaGEUHaHV9KEnibLugJkZAtXikR8KcYj+NYmI4DZMS8yQAyg+hvfSqg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.13.11.tgz}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
'@babel/core': 7.14.6
'@babel/helper-plugin-utils': 7.13.0
'@babel/plugin-syntax-class-static-block': 7.12.13_@babel+core@7.14.6
dev: true
/@babel/plugin-proposal-class-static-block/7.14.3_@babel+core@7.14.6:
resolution: {integrity: sha512-HEjzp5q+lWSjAgJtSluFDrGGosmwTgKwCXdDQZvhKsRlwv3YdkUEqxNrrjesJd+B9E9zvr1PVPVBvhYZ9msjvQ==}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
'@babel/core': 7.14.6
'@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.14.6
'@babel/helper-plugin-utils': 7.16.7
'@babel/plugin-syntax-class-static-block': 7.12.13_@babel+core@7.14.6
transitivePeerDependencies:
- supports-color
/@babel/plugin-proposal-decorators/7.12.1_@babel+core@7.12.3:
resolution: {integrity: sha512-knNIuusychgYN8fGJHONL0RbFxLGawhXOJNLBk75TniTsZZeA+wdkDuv6wp4lGwzQEKjZi6/WYtnb3udNPmQmQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.12.1.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-create-class-features-plugin': 7.14.4_@babel+core@7.12.3
'@babel/helper-plugin-utils': 7.16.7
'@babel/plugin-syntax-decorators': 7.12.13_@babel+core@7.12.3
transitivePeerDependencies:
- supports-color
dev: false
/@babel/plugin-proposal-dynamic-import/7.14.2_@babel+core@7.12.3:
resolution: {integrity: sha512-oxVQZIWFh91vuNEMKltqNsKLFWkOIyJc95k2Gv9lWVyDfPUQGSSlbDEgWuJUU1afGE9WwlzpucMZ3yDRHIItkA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.2.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-plugin-utils': 7.13.0
'@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.3
dev: false
/@babel/plugin-proposal-dynamic-import/7.14.2_@babel+core@7.14.6:
resolution: {integrity: sha512-oxVQZIWFh91vuNEMKltqNsKLFWkOIyJc95k2Gv9lWVyDfPUQGSSlbDEgWuJUU1afGE9WwlzpucMZ3yDRHIItkA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.2.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.14.6
'@babel/helper-plugin-utils': 7.13.0
'@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.14.6
/@babel/plugin-proposal-export-namespace-from/7.14.2_@babel+core@7.12.3:
resolution: {integrity: sha512-sRxW3z3Zp3pFfLAgVEvzTFutTXax837oOatUIvSG9o5gRj9mKwm3br1Se5f4QalTQs9x4AzlA/HrCWbQIHASUQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.2.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-plugin-utils': 7.13.0
'@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.3
dev: false
/@babel/plugin-proposal-export-namespace-from/7.14.2_@babel+core@7.14.6:
resolution: {integrity: sha512-sRxW3z3Zp3pFfLAgVEvzTFutTXax837oOatUIvSG9o5gRj9mKwm3br1Se5f4QalTQs9x4AzlA/HrCWbQIHASUQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.2.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.14.6
'@babel/helper-plugin-utils': 7.13.0
'@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.14.6
/@babel/plugin-proposal-json-strings/7.14.2_@babel+core@7.12.3:
resolution: {integrity: sha512-w2DtsfXBBJddJacXMBhElGEYqCZQqN99Se1qeYn8DVLB33owlrlLftIbMzn5nz1OITfDVknXF433tBrLEAOEjA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.2.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-plugin-utils': 7.13.0
'@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.3
dev: false
/@babel/plugin-proposal-json-strings/7.14.2_@babel+core@7.14.6:
resolution: {integrity: sha512-w2DtsfXBBJddJacXMBhElGEYqCZQqN99Se1qeYn8DVLB33owlrlLftIbMzn5nz1OITfDVknXF433tBrLEAOEjA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.2.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.14.6
'@babel/helper-plugin-utils': 7.13.0
'@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.14.6
/@babel/plugin-proposal-logical-assignment-operators/7.14.2_@babel+core@7.12.3:
resolution: {integrity: sha512-1JAZtUrqYyGsS7IDmFeaem+/LJqujfLZ2weLR9ugB0ufUPjzf8cguyVT1g5im7f7RXxuLq1xUxEzvm68uYRtGg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.2.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-plugin-utils': 7.13.0
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.3
dev: false
/@babel/plugin-proposal-logical-assignment-operators/7.14.2_@babel+core@7.14.6:
resolution: {integrity: sha512-1JAZtUrqYyGsS7IDmFeaem+/LJqujfLZ2weLR9ugB0ufUPjzf8cguyVT1g5im7f7RXxuLq1xUxEzvm68uYRtGg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.2.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.14.6
'@babel/helper-plugin-utils': 7.13.0
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.14.6
/@babel/plugin-proposal-nullish-coalescing-operator/7.12.1_@babel+core@7.12.3:
resolution: {integrity: sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-plugin-utils': 7.16.7
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.3
dev: false
/@babel/plugin-proposal-nullish-coalescing-operator/7.14.2_@babel+core@7.12.3:
resolution: {integrity: sha512-ebR0zU9OvI2N4qiAC38KIAK75KItpIPTpAtd2r4OZmMFeKbKJpUFLYP2EuDut82+BmYi8sz42B+TfTptJ9iG5Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.2.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-plugin-utils': 7.13.0
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.3
dev: false
/@babel/plugin-proposal-nullish-coalescing-operator/7.14.2_@babel+core@7.14.6:
resolution: {integrity: sha512-ebR0zU9OvI2N4qiAC38KIAK75KItpIPTpAtd2r4OZmMFeKbKJpUFLYP2EuDut82+BmYi8sz42B+TfTptJ9iG5Q==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.2.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.14.6
'@babel/helper-plugin-utils': 7.13.0
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.14.6
/@babel/plugin-proposal-numeric-separator/7.12.1_@babel+core@7.12.3:
resolution: {integrity: sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.1.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-plugin-utils': 7.16.7
'@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.3
dev: false
/@babel/plugin-proposal-numeric-separator/7.14.2_@babel+core@7.12.3:
resolution: {integrity: sha512-DcTQY9syxu9BpU3Uo94fjCB3LN9/hgPS8oUL7KrSW3bA2ePrKZZPJcc5y0hoJAM9dft3pGfErtEUvxXQcfLxUg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.2.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.3
'@babel/helper-plugin-utils': 7.13.0
'@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.3
dev: false
/@babel/plugin-proposal-numeric-separator/7.14.2_@babel+core@7.14.6:
resolution: {integrity: sha512-DcTQY9syxu9BpU3Uo94fjCB3LN9/hgPS8oUL7KrSW3bA2ePrKZZPJcc5y0hoJAM9dft3pGfErtEUvxXQcfLxUg==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.2.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.14.6
'@babel/helper-plugin-utils': 7.13.0
'@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.14.6
/@babel/plugin-proposal-object-rest-spread/7.14.2_@babel+core@7.14.6:
resolution: {integrity: sha512-hBIQFxwZi8GIp934+nj5uV31mqclC1aYDhctDu5khTi9PCCUOczyy0b34W0oE9U/eJXiqQaKyVsmjeagOaSlbw==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.2.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.14.0
'@babel/core': 7.14.6
'@babel/helper-compilation-targets': 7.13.16_@babel+core@7.14.6
'@babel/helper-plugin-utils': 7.13.0
'@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.14.6
'@babel/plugin-transform-parameters': 7.14.2_@babel+core@7.14.6
dev: true
/@babel/plugin-proposal-object-rest-spread/7.14.4_@babel+core@7.12.3:
resolution: {integrity: sha512-AYosOWBlyyXEagrPRfLJ1enStufsr7D1+ddpj8OLi9k7B6+NdZ0t/9V7Fh+wJ4g2Jol8z2JkgczYqtWrZd4vbA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.4.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.14.4
'@babel/core': 7.12.3
'@babel/helper-compilation-targets': 7.14.4_@babel+core@7.12.3
'@babel/helper-plugin-utils': 7.13.0
'@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.3
'@babel/plugin-transform-parameters': 7.14.2_@babel+core@7.12.3
dev: false
/@babel/plugin-proposal-object-rest-spread/7.14.4_@babel+core@7.14.6:
resolution: {integrity: sha512-AYosOWBlyyXEagrPRfLJ1enStufsr7D1+ddpj8OLi9k7B6+NdZ0t/9V7Fh+wJ4g2Jol8z2JkgczYqtWrZd4vbA==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.4.tgz}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.14.4
'@babel/core': 7.14.6
'@babel/helper-compilation-targets': 7.14.4_@babel+core@7.14.6
'@babel/helper-plugin-utils': 7.13.0
'@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.14.6
'@babel/plugin-transform-parameters': 7.14.2_@babel+core@7.14.6
/@babel/plugin-proposal-optional-catch-binding/7.14.2_@babel+core@7.12.3:
resolution: {integrity: sha512-XtkJsmJtBaUbOxZsNk0Fvrv8eiqgneug0A6aqLFZ4TSkar2L5dSXWcnUKHgmjJt49pyB/6ZHvkr3dPgl9MOWRQ==, registry: https://registry.yarnpkg.com/, tarball: https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.2.tgz}
peerDependencies: