forked from wojtekmaj/react-clock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
8308 lines (7480 loc) · 284 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 file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 4
cacheKey: 6
"@babel/cli@npm:^7.8.0":
version: 7.8.4
resolution: "@babel/cli@npm:7.8.4"
dependencies:
chokidar: ^2.1.8
commander: ^4.0.1
convert-source-map: ^1.1.0
fs-readdir-recursive: ^1.1.0
glob: ^7.0.0
lodash: ^4.17.13
make-dir: ^2.1.0
slash: ^2.0.0
source-map: ^0.5.0
peerDependencies:
"@babel/core": ^7.0.0-0
dependenciesMeta:
chokidar:
optional: true
bin:
babel: ./bin/babel.js
babel-external-helpers: ./bin/babel-external-helpers.js
checksum: c378a1ad7d9001811a98472c3dec54f9c6efbd2acf9786bc75e7763b5cdc6f5c4437fdda5792b54b419a3fff9347a416b544d0e341335770ce6e26f041926517
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/code-frame@npm:7.10.4"
dependencies:
"@babel/highlight": ^7.10.4
checksum: 05245d3b22a3ae849439195c4ee9ce9903dfd8c3fcb5124e77923c45e9f1ceac971cce4c61505974f411a9db432949531abe10ddee92937a0a9c306dc380a5b2
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.10.4, @babel/compat-data@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/compat-data@npm:7.11.0"
dependencies:
browserslist: ^4.12.0
invariant: ^2.2.4
semver: ^5.5.0
checksum: 6c3b3946543f4276e1bafbee03de6699c4cdbf92e236fd593f7793b8a2f78e6addb9ded715d84bc676ab39fda3efee634c23a7cf5b982c3d83381c51cd912b85
languageName: node
linkType: hard
"@babel/core@npm:^7.1.0, @babel/core@npm:^7.7.5, @babel/core@npm:^7.9.0":
version: 7.11.6
resolution: "@babel/core@npm:7.11.6"
dependencies:
"@babel/code-frame": ^7.10.4
"@babel/generator": ^7.11.6
"@babel/helper-module-transforms": ^7.11.0
"@babel/helpers": ^7.10.4
"@babel/parser": ^7.11.5
"@babel/template": ^7.10.4
"@babel/traverse": ^7.11.5
"@babel/types": ^7.11.5
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.1
json5: ^2.1.2
lodash: ^4.17.19
resolve: ^1.3.2
semver: ^5.4.1
source-map: ^0.5.0
checksum: ad61c22807c904247ae61f11d176b33b3e44f0f2ca3b8d2b31e781ebd558db3381291f5a8a6a3acc28f5c1d6fdbb2b3ad29ca73b4d656d128a406e641b2e985a
languageName: node
linkType: hard
"@babel/generator@npm:^7.11.5, @babel/generator@npm:^7.11.6":
version: 7.11.6
resolution: "@babel/generator@npm:7.11.6"
dependencies:
"@babel/types": ^7.11.5
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: 734bd60e018deaf7712c111bb5092d0382d3c217399569f1137f0100f672bcc1a086ae3a34efa0d604951ba9070f9bf554a4690c6bfe39123b05b89a4444e9c7
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-annotate-as-pure@npm:7.10.4"
dependencies:
"@babel/types": ^7.10.4
checksum: 535cdf631e1e6c0bfd6820d2509c69373e2f48148505ddc2325ce8fe85302dc5681d6f6fd41261cacc458a0431edeff7c6115056144b80b02c10e111d2941c36
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.10.4"
dependencies:
"@babel/helper-explode-assignable-expression": ^7.10.4
"@babel/types": ^7.10.4
checksum: 369530a1971c92d09bd3fae3387bf752abffa9a1f285ab55f45cdf0ac9a2e8ed1a28cd4dc31b0d5672ee0aac91435e3fdcf1196f67870ac0f9a768e3d9295d60
languageName: node
linkType: hard
"@babel/helper-builder-react-jsx-experimental@npm:^7.10.4, @babel/helper-builder-react-jsx-experimental@npm:^7.11.5":
version: 7.11.5
resolution: "@babel/helper-builder-react-jsx-experimental@npm:7.11.5"
dependencies:
"@babel/helper-annotate-as-pure": ^7.10.4
"@babel/helper-module-imports": ^7.10.4
"@babel/types": ^7.11.5
checksum: ae6158992bfdd1c1ee85f73fb3664095bf5cfa7593a957c125c94dcc02edc1fc5e2767efddbaa0643df688047a1f04521d264c4742b6641cf9d92ea8741c71c8
languageName: node
linkType: hard
"@babel/helper-builder-react-jsx@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-builder-react-jsx@npm:7.10.4"
dependencies:
"@babel/helper-annotate-as-pure": ^7.10.4
"@babel/types": ^7.10.4
checksum: f14f786b5e5d4728ecfae8679d26da6460056dee4c8c2ae7432cd0e64332a289cf44e43b0e2b349f8ce1d281595fafb6824988d9674fa29389b1e5ab2055b3be
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-compilation-targets@npm:7.10.4"
dependencies:
"@babel/compat-data": ^7.10.4
browserslist: ^4.12.0
invariant: ^2.2.4
levenary: ^1.1.1
semver: ^5.5.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 7603388e451012154ac6b8f6ec3792f2f35abbee21efa338fa87a851d88b72bee4a8aa5b016e53a5dc011dc616d803eda2cb030ec55a4a6673f1f587f95275e0
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/helper-create-class-features-plugin@npm:7.10.5"
dependencies:
"@babel/helper-function-name": ^7.10.4
"@babel/helper-member-expression-to-functions": ^7.10.5
"@babel/helper-optimise-call-expression": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-replace-supers": ^7.10.4
"@babel/helper-split-export-declaration": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0
checksum: ba8fb0f7b7788d0fde2341314a86d0d5705ed17537eba1e319bb0e532125c5b97fc142633ae1605615be9f45cb6cbf19879c13e626610ecd3be1821d651a1423
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.10.4"
dependencies:
"@babel/helper-annotate-as-pure": ^7.10.4
"@babel/helper-regex": ^7.10.4
regexpu-core: ^4.7.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 6d1728b614b35daf5f4cef73769286685f86aaebf6caec1d50b8f2edbcb7a74399cf4381c436405476f97ef3411d025c54f2a2674f1c01580a970e634d492963
languageName: node
linkType: hard
"@babel/helper-define-map@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/helper-define-map@npm:7.10.5"
dependencies:
"@babel/helper-function-name": ^7.10.4
"@babel/types": ^7.10.5
lodash: ^4.17.19
checksum: 964cab640de84daa572d75e07216cf9d1aeeca3552acec0516d3aa10533836741f7391ab957e8b22624bd6b25473d8bd53f4b8d4af8713871601af02d31072ae
languageName: node
linkType: hard
"@babel/helper-explode-assignable-expression@npm:^7.10.4":
version: 7.11.4
resolution: "@babel/helper-explode-assignable-expression@npm:7.11.4"
dependencies:
"@babel/types": ^7.10.4
checksum: 22aa9c75c7eeb8bf42c268a8f4aad00abf12f315f59d912cc26b5895f4c1efec919e4f09b00a6c67a8fa8d7c5a212ca3d758748e60d401d41a322e319b312092
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-function-name@npm:7.10.4"
dependencies:
"@babel/helper-get-function-arity": ^7.10.4
"@babel/template": ^7.10.4
"@babel/types": ^7.10.4
checksum: 41ab8f48bbb7d4a65a90a4cf50c79c386d3c30e0dac10bc3ce311fda2ca971d82289a07570a785ebac92686854237ea1e511e74f2577a38c7ec2d67f2a250a9e
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-get-function-arity@npm:7.10.4"
dependencies:
"@babel/types": ^7.10.4
checksum: 4f0ddd43405e5a43c0638ddeb9fd6fc562ce8f338983ae603d4824ce4b586c2ca2fbc0ca93864357ba3a28f699029653749c6b49ec8576cb512ab0f404500999
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-hoist-variables@npm:7.10.4"
dependencies:
"@babel/types": ^7.10.4
checksum: 0bc1976366e1535920ac46ecf89700a738bb38f1413ca42f1bc11bef708f297f011078077355dfe81b3e5af8ef696c5fb752408d6b65f85c71839c28ce95afaa
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.10.4, @babel/helper-member-expression-to-functions@npm:^7.10.5":
version: 7.11.0
resolution: "@babel/helper-member-expression-to-functions@npm:7.11.0"
dependencies:
"@babel/types": ^7.11.0
checksum: 745f0697ca43736736d936125d563070a4e0da4eb90cf67be45d46c18b622106a14923d9541a6f217207b83f67d0113b0a69c01f1f207fe8be086637722433f3
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-module-imports@npm:7.10.4"
dependencies:
"@babel/types": ^7.10.4
checksum: 84d03b58e7f04daf7c5a80765c527c24021ddbf4051567381528e2b351a550451dd87f67bf7a66f251dffcc979cd2ddaa01e1defd8b8db1095d38005e18eb806
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.10.4, @babel/helper-module-transforms@npm:^7.10.5, @babel/helper-module-transforms@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/helper-module-transforms@npm:7.11.0"
dependencies:
"@babel/helper-module-imports": ^7.10.4
"@babel/helper-replace-supers": ^7.10.4
"@babel/helper-simple-access": ^7.10.4
"@babel/helper-split-export-declaration": ^7.11.0
"@babel/template": ^7.10.4
"@babel/types": ^7.11.0
lodash: ^4.17.19
checksum: 8b74d0a729f00c5880ed7927e333a6b4bc31739108fbbbdd94b0cf28599f49c78f1e48f16b12bec0b1c966ba1ca72faf10eb98019617ef470a6885cc891e97f6
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-optimise-call-expression@npm:7.10.4"
dependencies:
"@babel/types": ^7.10.4
checksum: 70dd5a6daf6dc9f176dbfcac4afc1390d872821abe4ffaedf3ff0b1dbda8fb4b49efdeb612ae86c08f0773340583ce6e393a7a059727991aaa51b18de1fc0960
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/helper-plugin-utils@npm:7.10.4"
checksum: 9f617e619a3557cb5fae8885e91cd94ba4ee16fb345e0360de0d7dc037efb10cc604939ecc1038ccdb71aa37e7e78f20133d7bbbebecb8f6dcdb557650366d92
languageName: node
linkType: hard
"@babel/helper-regex@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/helper-regex@npm:7.10.5"
dependencies:
lodash: ^4.17.19
checksum: 956b9f22da2e996670b5f0b61450d3ed4efa462a5ebec5af7967da7a7759670a04ec4887152d43ea6b695c320370cac022987a9647d4caa86f0662605d7fc82f
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.10.4":
version: 7.11.4
resolution: "@babel/helper-remap-async-to-generator@npm:7.11.4"
dependencies:
"@babel/helper-annotate-as-pure": ^7.10.4
"@babel/helper-wrap-function": ^7.10.4
"@babel/template": ^7.10.4
"@babel/types": ^7.10.4
checksum: 5f19329b439ce2bd65d3500e25204720ab0144382b3f7d26ed2855531e569dfa659c500f10805e752bc6fa9db691096f92c5c60ac9e849fc75e8f7519eb828d7
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-replace-supers@npm:7.10.4"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.10.4
"@babel/helper-optimise-call-expression": ^7.10.4
"@babel/traverse": ^7.10.4
"@babel/types": ^7.10.4
checksum: 2d7e0627cda8d6f360e52d9c962746fb5818cb6599072d4473fc1e7a2eacfb1a2605a1727d95ae9af66e06e1b84c0a67d40ae16446f838d367de11ae198ee0f8
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-simple-access@npm:7.10.4"
dependencies:
"@babel/template": ^7.10.4
"@babel/types": ^7.10.4
checksum: a7ce52a2295b9290b70cfbdd5667ec42de1a170de2f9d6e8321b3864e631bca729fbb537fbcc85396b7ce921abc2c844a452e70996fcd582dd31433c33ef0f9d
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.11.0"
dependencies:
"@babel/types": ^7.11.0
checksum: c5995c834fbaeb8d573184c54e637add2c1b558f6f8a52a84d0c1777a564b634b94917f2b232d1ee4a96ae34587fdeb28b5dae1a45f3e3620cbff0da340aa287
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.10.4, @babel/helper-split-export-declaration@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/helper-split-export-declaration@npm:7.11.0"
dependencies:
"@babel/types": ^7.11.0
checksum: ddfc44d0cf75ee3a73e71b18e8b9b67d256f6e8496e550ab0b1342ef8cd62dd232c13ac77569e319869b1515a9733863e69a143e76f52e9fc1b51ee374b8869b
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-validator-identifier@npm:7.10.4"
checksum: 25098ef842e3ffecdd9a7216f6173da7ad7be1b0b3e454a9f6965055154b9ad7a4acd2f218ba3d2efc0821bdab97837b3cb815844af7d72f66f89d446a54efc6
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-wrap-function@npm:7.10.4"
dependencies:
"@babel/helper-function-name": ^7.10.4
"@babel/template": ^7.10.4
"@babel/traverse": ^7.10.4
"@babel/types": ^7.10.4
checksum: 4d5fe2db333b8f64f85057562ab49d825ad64ec53b94b92d2229645f7373e6e67a51e9eb108ac5d91933687a576ab4cd1f663a66caf140a6911d2a07e7efba24
languageName: node
linkType: hard
"@babel/helpers@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helpers@npm:7.10.4"
dependencies:
"@babel/template": ^7.10.4
"@babel/traverse": ^7.10.4
"@babel/types": ^7.10.4
checksum: 96859c490ac07fe30fe2b6ad8e474325d2504ffcc8b720b0f22a01e8334d79b4fb3051720c2146390579f7781cbc5923cb32d4e23e51b811c83aaa644fe17f2a
languageName: node
linkType: hard
"@babel/highlight@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/highlight@npm:7.10.4"
dependencies:
"@babel/helper-validator-identifier": ^7.10.4
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: c167b938af9797e7630dd922398ceb1a079469085b9c0a7274f093f9f2b1ef9f0a5efec89592e81cbab7c87a537d32c238cea97d288b7af9a0d26b2bceb7a439
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.10.4, @babel/parser@npm:^7.11.5, @babel/parser@npm:^7.7.0, @babel/parser@npm:^7.7.5":
version: 7.11.5
resolution: "@babel/parser@npm:7.11.5"
bin:
parser: ./bin/babel-parser.js
checksum: ef2874e4d27eaa86777680505e57a7b36549c9602c682372d8b7c6234dff84cb8d03bdce65002a3e98921d83233b5af451d6c9dd9c681232ebe4c4ee9f41318e
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.10.5"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-remap-async-to-generator": ^7.10.4
"@babel/plugin-syntax-async-generators": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d43c72c3308dbf70a6f437919af6e8de6e59170876443d3785554805272901f2eb226a95535aaffde397ff664cce74425fd50986908195741714860986aade85
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.10.4, @babel/plugin-proposal-class-properties@npm:^7.8.0":
version: 7.10.4
resolution: "@babel/plugin-proposal-class-properties@npm:7.10.4"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 32cf34c077eb2612e7f9a599078a51ed53807167b8cfe01702a777bf9efaec254820e2c3c52ce801e8619d40226065f311b8190b36c21f8b853c7f340dccca1f
languageName: node
linkType: hard
"@babel/plugin-proposal-dynamic-import@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-dynamic-import": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0ded8305a774d2885ead96e9fda66ec0fc01085c123427b4ecd71314ea08a2b753e8bdbf28f127eafa9cbd7d2d08c7302506ae6f9c0e1c0895818a4c1604f45b
languageName: node
linkType: hard
"@babel/plugin-proposal-export-namespace-from@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-export-namespace-from@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-export-namespace-from": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b17727e66f86119de1f8b3d7b48351ec2b339f95a7c45238c0c11c9d81491696689d68204d79f45cdede007ed674424a6d255463285c2d66abbb76f09417ae28
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-json-strings@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-json-strings": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 340397166125ea2d4e2b2c15b5bb8845dc6cb5dc2bcd9ff52b5e767b8337e38ff1daa66aa7eb461b4abed3d242376e93d972ebe6799b5a1a3c65b1feb8833dfe
languageName: node
linkType: hard
"@babel/plugin-proposal-logical-assignment-operators@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/plugin-proposal-logical-assignment-operators@npm:7.11.0"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-logical-assignment-operators": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a87e80bcfdfcbdbd6fa3b34198948d4a9c0e2a8965efcd525215fc8244e7b47f7cb5e69c6c5d42646cdab6aeaebf3e138a33ebe0c44a4163e4ad995b85f008b5
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5a20d8bcbf2926dde3e9edcf847eaa5485d0d0fea76d0683ef1cafb11e0c35e46620391916283e1a9c0f76351e8c5ecccebf0d3a6bdf24559c5ad381433a0e3a
languageName: node
linkType: hard
"@babel/plugin-proposal-numeric-separator@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-numeric-separator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-numeric-separator": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 344eff491f0a7bb17958ce00db34af5671ec3d9dc87c29766208ab7a3c8ea769730c9f2420c55c54ecd24ffdd5df01f258d54eb41ccd35911e974c549a697e4b
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.11.0"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-object-rest-spread": ^7.8.0
"@babel/plugin-transform-parameters": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5071094245f02ce9b1b090597f51cf8510c7936425ac2358b561447b09bcdd231b5b52896f63cc1a96aa6c2ab7a952b61d9fee6b286686f7dc8697728dd5d66d
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-catch-binding@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-optional-catch-binding": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 56a3a62131cdc7b7481a005dacd26f83ae10936e2dbe0b06a98cb767b13cdc859504d862a166be8d1e2ac4bc0ddfc7aa9fa7135a68e126bfcba1bcb0585928d0
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.11.0"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-skip-transparent-expression-wrappers": ^7.11.0
"@babel/plugin-syntax-optional-chaining": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fb59410944f66de515e34eb68a5fa2c530db7f87d2e599230f5d512ebf1d4c92d2e10a39ec012feefc1cc748a3e3b0be25967997bff23af9bb6f7c1402d3eda7
languageName: node
linkType: hard
"@babel/plugin-proposal-private-methods@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-private-methods@npm:7.10.4"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7a29e63aaf68e25059570253c0f3b1046000ed2d43f66cb458a90c6d5fa4f1cc58f2197778ee0d07f773520980bd076609f94789d7f6b8637b9927d62ddfe6fe
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.10.4, @babel/plugin-proposal-unicode-property-regex@npm:^7.4.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.10.4"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 41e271cf08bad32a0e86dedb67ed4329a119466ec1531a69397915fbac6032f8452e5b0bb7205a069a6a728c370375a944efabaec155d861b9e4028e0f434667
languageName: node
linkType: hard
"@babel/plugin-syntax-async-generators@npm:^7.8.0, @babel/plugin-syntax-async-generators@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 39685944ffe342981afb1fe3af824305e94ee249b1841c78c1112f93d256d3d405902ac146ab3bad8c243710f081621f9fbf53c62474800d398293c99521c8ef
languageName: node
linkType: hard
"@babel/plugin-syntax-bigint@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-bigint@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8c9b610377af48e1d8ec0d5ad5eec5e462fbc775b20f367e0ebc2656b98b4cc73a952e8b5ab8641e6de0d04923f3843dd73ce00a71ef5cac9940822ff776c8ec
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.10.4, @babel/plugin-syntax-class-properties@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-class-properties@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8d0c1a3f5a922c2cd9387c7313e5516d58bfb6e60885b8d953ae23b6432aafe14be0fa1a2d4348c02f2eaaca82fecd76b7f622bff439775505c021b00a12dcbb
languageName: node
linkType: hard
"@babel/plugin-syntax-dynamic-import@npm:^7.8.0":
version: 7.8.3
resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 134a6f37feac0e6d55f8188232e11798ccf699b02d50a4daf9c040f52a22ee32923a6a979443ecc865f4014937ffe67ac11b81aa5668b6792238c647314f41c9
languageName: node
linkType: hard
"@babel/plugin-syntax-export-namespace-from@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-export-namespace-from@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 832e007319bc5040818012d51eb91c3ad4c38a1ea696e9a9805df4d601d8c4f061032cb61494946e7bdaa5db0422a6bb6f39577cd0e5c8323b6bb2c364406dcb
languageName: node
linkType: hard
"@babel/plugin-syntax-json-strings@npm:^7.8.0, @babel/plugin-syntax-json-strings@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1a7dabf0a4b264cb235966c4256aad131567eba20e41de731fa9127d371454a2f702e27fd7bedac65efb0df847e5cece7bcb5507a931604d1c2ecb7390adaa1f
languageName: node
linkType: hard
"@babel/plugin-syntax-jsx@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-jsx@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7c9a5c56e559e696ae6f36404a58c8bddd3bb4276f24f89606192f6e3f72f38cce65bfd5fd83e9b691aa0265312db79bab514e64486d178ca0c710b8a5924074
languageName: node
linkType: hard
"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4, @babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5b82f717707d278e58d12649932bf3327923361f051cd4517a5b63d7ebfe39cb6cdfb37aa199b5a441db305301a3c8de01c946d25d1f4c4ecb94322a23ac9e73
languageName: node
linkType: hard
"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.0, @babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4ba03753759a2d9783b792c060147a20f474f76c42edf77cbf89c6669f9f22ffb3cbba4facdd8ce651129db6089a81feca1f7e42da75244eabedecba37bd20be
languageName: node
linkType: hard
"@babel/plugin-syntax-numeric-separator@npm:^7.10.4, @babel/plugin-syntax-numeric-separator@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 47ae8782939ccc41f94b1d46b8b7a63363b003b8b7544bddae8dd454a8d51b38bbd4f9c26e91ecfb5fc16dc5f2228700e3030def63c5d07046073ec8fabc4665
languageName: node
linkType: hard
"@babel/plugin-syntax-object-rest-spread@npm:^7.8.0, @babel/plugin-syntax-object-rest-spread@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: db5dfb39faceddba8b80c586e331e17c3a1f79941f80eaa070b91fb920582bffe8bba46f6bebbdaf7c1f9b0bbe2a68493c28e1c9fb0ced864da739c0cd52ce43
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.0, @babel/plugin-syntax-optional-catch-binding@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f03d07526674ecdb3388e1d648ec250250968e13c037a7110e37d3eab0b82b07d6605332772afdf19f1831dfd3bdbbf0288a7d9097097d30b9548388ea693a07
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-chaining@npm:^7.8.0, @babel/plugin-syntax-optional-chaining@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2a50685d023bc609b01a3fd7ed3af03bc36c575da8d02199ed51cb24e8e068f26a128a20486cd502abe9e1d4c02e0264b8a58f1a5143e1291ca3508a948ada97
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-top-level-await@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 998d87fbd38a2c7d1b630ccd0a90430a70dec6b7fb23fc37c60cbc10de7112a094c786602d9c8e3093568f538eb2642705006682ce58eb922f2eda889af3ad48
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-arrow-functions@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ec5b1d6ec6b61baf93cff41016e30f9d410a6a24fd8adc6e8790b168781470ad52dbf34c8e6897bed7c62eb79c20f59f96e6014acb8f7fd6b91c89ed1c515acb
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-async-to-generator@npm:7.10.4"
dependencies:
"@babel/helper-module-imports": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-remap-async-to-generator": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c4cddae691f303aecc5124dfd4cbc9eba09523b714b92fa4a567cf4add212c057b93d7598cd6dda79645230c777290fc13ec17f6384255c8bdce50692539abe1
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d608f55104576798ec224d1b222ee33a22968bc0653b54c316c0a591bf4c2681b87c6222266d978ab273c19ef44e6976eaeac4da8928694312433a01616cc73f
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.10.4":
version: 7.11.1
resolution: "@babel/plugin-transform-block-scoping@npm:7.11.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f24179bf37249a06515b571f30bc9b9aefe8be9e740f1be58345b153f41f3cd978cb47cc9440f0e48ff26ad828f6d97e353eddf03fc0e10621a8a48757f02cbe
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-classes@npm:7.10.4"
dependencies:
"@babel/helper-annotate-as-pure": ^7.10.4
"@babel/helper-define-map": ^7.10.4
"@babel/helper-function-name": ^7.10.4
"@babel/helper-optimise-call-expression": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-replace-supers": ^7.10.4
"@babel/helper-split-export-declaration": ^7.10.4
globals: ^11.1.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c5ba85f73658eb060c83fafda960572c9ceb4e47650c539fbde474d37f133a0112031c4602964cf5f9ef967916e4bbd4afa8b1210cd64ec6fb71519521e28348
languageName: node
linkType: hard
"@babel/plugin-transform-computed-properties@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-computed-properties@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c69c53881deaa1595fd974328997f1c4731586df5e6be310269107becb83efb0fd8abbe7177320c6b1fdd8828bfe42301f6649e7589da8472a65ecda72cd8d32
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-destructuring@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2ea714834691b08805227a5335707e556aff087507c9fdccb7265ed56ca9ee39635945d102f5a6f418ade08f3f61ce3f4ebc345d36060254d06d6e08a5693f0a
languageName: node
linkType: hard
"@babel/plugin-transform-dotall-regex@npm:^7.10.4, @babel/plugin-transform-dotall-regex@npm:^7.4.4":
version: 7.10.4
resolution: "@babel/plugin-transform-dotall-regex@npm:7.10.4"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 284cce72dfade92b51e8a66742ac7e9449f3d9e379ea2185777e600b000fd1ba0614786ccd9f753a52e2a896235ba7381d82767d7ade0352fd32ec5c90781bc7
languageName: node
linkType: hard
"@babel/plugin-transform-duplicate-keys@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-duplicate-keys@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 60897c7c2f49f687b5699c486a84f91f16bd8951c306795199bbc908073000db3d693f4ca04058d62ef09bec61fccd4d9c379ef8086754297d4440b1677047f2
languageName: node
linkType: hard
"@babel/plugin-transform-exponentiation-operator@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.10.4"
dependencies:
"@babel/helper-builder-binary-assignment-operator-visitor": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fb086b4482cce50adc59dcc5713f4a4fe082bad176b360f5bb3fabc47461cdfed6bbf739a84535a78bc26f743bca74f31f195ec8c223cba8acafa299f5361fe1
languageName: node
linkType: hard
"@babel/plugin-transform-for-of@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-for-of@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 86c02bbf98763179f881f58f7b3c6536ed6da36db9190f6a285a61298584ecbef253e1d1e7ffae3cdc216c47bca7987d96e3a4c652edd3134994a146da831e4e
languageName: node
linkType: hard
"@babel/plugin-transform-function-name@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-function-name@npm:7.10.4"
dependencies:
"@babel/helper-function-name": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 64d8bf2de2a290d1c5d0c5f1d5f57fc64ff02705bc9740fc217f026d7aea7a1823ef22e28c6aa101ee7f81b55485801938bbc2210530845eee7fc0305ccdde0c
languageName: node
linkType: hard
"@babel/plugin-transform-literals@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-literals@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 53cd3f43672cb9361175e21cddb9eb39d260ddb1ca6206c669ec5a6519db16609cb46e88af700b3da5b2a9ce09ea035f9557ca60e679341d737b1988f5ba6088
languageName: node
linkType: hard
"@babel/plugin-transform-member-expression-literals@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-member-expression-literals@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e6a1844cb542ea43a83fc0ac81f630ab5ac1547aaf595acfb9f9c17e98b5aa1f7aca21f84657c111260e6e7a2404643355ea8c2b5fd434915b106c3e1c2f431e
languageName: node
linkType: hard
"@babel/plugin-transform-modules-amd@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/plugin-transform-modules-amd@npm:7.10.5"
dependencies:
"@babel/helper-module-transforms": ^7.10.5
"@babel/helper-plugin-utils": ^7.10.4
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 6d2b80f3ca13d13589863288f75f9c9efaa7d80e6eeb93351c8994c3c15c4a675e8347f0b28fcc2afb2dce5cb17b499560a215ba7691719d6ab0ad164384e41e
languageName: node
linkType: hard
"@babel/plugin-transform-modules-commonjs@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.10.4"
dependencies:
"@babel/helper-module-transforms": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-simple-access": ^7.10.4
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 42176865089a2800e888c41beaf3688e00b9b71b5bc65ca238342c83e9d38ec141eaa405182688a8294b344cd8a7ed36ab2da2662c38a40e2c736fed48ae7178
languageName: node
linkType: hard
"@babel/plugin-transform-modules-systemjs@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/plugin-transform-modules-systemjs@npm:7.10.5"
dependencies:
"@babel/helper-hoist-variables": ^7.10.4
"@babel/helper-module-transforms": ^7.10.5
"@babel/helper-plugin-utils": ^7.10.4
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: eb08d7c7e58c45c14212b885d3aceea9742a4565fa561e171c53169834d5e42044c818447a7f055f098b92742eef392470cf16678c30b9775bf6b232130c259b
languageName: node
linkType: hard
"@babel/plugin-transform-modules-umd@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-modules-umd@npm:7.10.4"
dependencies:
"@babel/helper-module-transforms": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b0c3f47b9e36dd2fffb8f31ee6449410b59bcb8c544552bc91c2f565ea34c8b9dc4396b478e38ba885b96777de6fdd38cf2053307c189837b54429290ecfa720
languageName: node
linkType: hard
"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.10.4"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0
checksum: 6b868806fda6cab6ff011990473a424199059f75a9eb12d0e421e01460244e0164f837af8b76e415bc390bf6502d5372ad9d56fd270cd1cfff7e0d19facc237f
languageName: node
linkType: hard
"@babel/plugin-transform-new-target@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-new-target@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a4742428d2c942d11b8cd91beaf6e3e1509416b563bf74959e4d103ffa954176d639cb44eb3b5992321897253eda6d921f21f18af1d20da30534dcccdd474bec
languageName: node
linkType: hard
"@babel/plugin-transform-object-super@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-object-super@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-replace-supers": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 30485dd88ba30dc1584d08a3c2b61f61e3ca5b0850a183e3c655a3bcd7fa49fd3c5c1d5de5da2baa811b97d65d52fec11a39deb3acca4acbacd63ae632335d0c
languageName: node
linkType: hard
"@babel/plugin-transform-parameters@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/plugin-transform-parameters@npm:7.10.5"
dependencies:
"@babel/helper-get-function-arity": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f5da5726a22e981388640b152b7cdb75132e8a0d93a0228a4c6c72a9cd80052edf01e25829d24f71419f978de0512103d61328fd24d4df36c3b0b16064b5b1bb
languageName: node
linkType: hard
"@babel/plugin-transform-property-literals@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-property-literals@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 06ced62af42371e315830b84b71e043a08fbdac995945b7b15d9987430d3eea9f3aed646c3b50e4b4aaa2fadf46a824b2a2ce49e379db7157647a37d751603c6
languageName: node
linkType: hard
"@babel/plugin-transform-react-display-name@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-react-display-name@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7a224e1163271a0557adc8d94332ab72f4c6a3fc163377349975cf453c44845fef697f0b46c0254f3e0eba889d55d01a47e3f065c5b9bc01060ba7d0f3e1e44f
languageName: node
linkType: hard
"@babel/plugin-transform-react-jsx-development@npm:^7.10.4":
version: 7.11.5
resolution: "@babel/plugin-transform-react-jsx-development@npm:7.11.5"
dependencies:
"@babel/helper-builder-react-jsx-experimental": ^7.11.5
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-jsx": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5435da45ba2b82334f74296233d3cf05378009b2ce6e66c1dee27ba07bd9f0f74366fc10782f362e20684f5ffa0e4d10a286dfc744f3a93bc35deb5302ec724b
languageName: node
linkType: hard
"@babel/plugin-transform-react-jsx-self@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-react-jsx-self@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-jsx": ^7.10.4
peerDependencies: