forked from subquery/subql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
19436 lines (17521 loc) · 658 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: 7
"@angular-devkit/core@npm:11.0.3":
version: 11.0.3
resolution: "@angular-devkit/core@npm:11.0.3"
dependencies:
ajv: 6.12.6
fast-json-stable-stringify: 2.1.0
magic-string: 0.25.7
rxjs: 6.6.3
source-map: 0.7.3
checksum: 0b830e48aea4c589fdb78e776cec5303215c01f54dcfc1b2220e4dbf0fa76179bb78d1d1aca5e826e3ac62b74770260ce9637bbb542f7906890efd071c6bac73
languageName: node
linkType: hard
"@angular-devkit/core@npm:11.1.0":
version: 11.1.0
resolution: "@angular-devkit/core@npm:11.1.0"
dependencies:
ajv: 6.12.6
fast-json-stable-stringify: 2.1.0
magic-string: 0.25.7
rxjs: 6.6.3
source-map: 0.7.3
checksum: 16d77ca1bf96919bce1db9f948fb26f098641c96dfa185b80cd895ccb1e93aa545668380bfe5e0c23531890d1b99c50f2addaeb7bd9cf60a301f527eb0b092a5
languageName: node
linkType: hard
"@angular-devkit/schematics-cli@npm:0.1100.3":
version: 0.1100.3
resolution: "@angular-devkit/schematics-cli@npm:0.1100.3"
dependencies:
"@angular-devkit/core": 11.0.3
"@angular-devkit/schematics": 11.0.3
"@schematics/schematics": 0.1100.3
ansi-colors: 4.1.1
inquirer: 7.3.3
minimist: 1.2.5
symbol-observable: 2.0.3
bin:
schematics: bin/schematics.js
checksum: 411f3bc6b2f8ac20e11091f17051047b2a86989de63a0f975d4b3f275c3bc1c9e939c5be5ed39a4ab1bb827e8d695a0b394bfbacfa26189f2f037dde60b9f087
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:11.0.3":
version: 11.0.3
resolution: "@angular-devkit/schematics@npm:11.0.3"
dependencies:
"@angular-devkit/core": 11.0.3
ora: 5.1.0
rxjs: 6.6.3
checksum: 0f7fe327c5bd4b13bef5732b3b32e9ac59defc1186384d46a6d665255f4260e49137a9ef11f544877c2db005dbe5663c824be026aab289980139d94abd49b0b1
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:11.1.0":
version: 11.1.0
resolution: "@angular-devkit/schematics@npm:11.1.0"
dependencies:
"@angular-devkit/core": 11.1.0
ora: 5.2.0
rxjs: 6.6.3
checksum: e45a04b9fade2fa5ee726a75a3f3da51457f0ede90a4f1ec7fe95e87197c8151b99913eb7b6fb6095c1c6ca37a5ec31b37026c5213b3dc49f6134e32258ef16c
languageName: node
linkType: hard
"@apollo/client@npm:^3.1.5":
version: 3.3.7
resolution: "@apollo/client@npm:3.3.7"
dependencies:
"@graphql-typed-document-node/core": ^3.0.0
"@types/zen-observable": ^0.8.0
"@wry/context": ^0.5.2
"@wry/equality": ^0.3.0
fast-json-stable-stringify: ^2.0.0
graphql-tag: ^2.11.0
hoist-non-react-statics: ^3.3.2
optimism: ^0.14.0
prop-types: ^15.7.2
symbol-observable: ^2.0.0
ts-invariant: ^0.6.0
tslib: ^1.10.0
zen-observable: ^0.8.14
peerDependencies:
graphql: ^14.0.0 || ^15.0.0
react: ^16.8.0 || ^17.0.0
subscriptions-transport-ws: ^0.9.0
peerDependenciesMeta:
react:
optional: true
subscriptions-transport-ws:
optional: true
checksum: eb06152f3e92cb2d6ebe400f9f3392fa106816bc9bd60fdb57cc160ac077c3e0cc5a00978e53cd4796fb87617eb05c836c82e3e16e828e1deee3a79940f951f1
languageName: node
linkType: hard
"@apollo/protobufjs@npm:^1.0.3":
version: 1.0.5
resolution: "@apollo/protobufjs@npm:1.0.5"
dependencies:
"@protobufjs/aspromise": ^1.1.2
"@protobufjs/base64": ^1.1.2
"@protobufjs/codegen": ^2.0.4
"@protobufjs/eventemitter": ^1.1.0
"@protobufjs/fetch": ^1.1.0
"@protobufjs/float": ^1.0.2
"@protobufjs/inquire": ^1.1.0
"@protobufjs/path": ^1.1.2
"@protobufjs/pool": ^1.1.0
"@protobufjs/utf8": ^1.1.0
"@types/long": ^4.0.0
"@types/node": ^10.1.0
long: ^4.0.0
bin:
apollo-pbjs: bin/pbjs
apollo-pbts: bin/pbts
checksum: 593f898542e2745be5754b76119cb398ac28b17cb3e8f8377b0b0ece6349633ebe26e06d21f2800c6fdd4092656e74ad4cd2988f26f426c99f6a250a422ff5ab
languageName: node
linkType: hard
"@apollographql/apollo-tools@npm:^0.4.3":
version: 0.4.8
resolution: "@apollographql/apollo-tools@npm:0.4.8"
dependencies:
apollo-env: ^0.6.5
checksum: 324d2a78e4a590e3451fc8883e8a6b2231982cb071a1adba72a83361882a7488aff4a75e50c098d01860c3d9c593a09d47c7bb71d401815001fda783dccd6967
languageName: node
linkType: hard
"@apollographql/graphql-playground-html@npm:1.6.26":
version: 1.6.26
resolution: "@apollographql/graphql-playground-html@npm:1.6.26"
dependencies:
xss: ^1.0.6
checksum: d566024a09041177688846d5592b31d551ff8f3924601e1bea8686e2fd74a88e9c77db4673bca2d1d74f8eb6689b7eb9dc2267a7bcd06f608903ea5146cc023c
languageName: node
linkType: hard
"@ardatan/aggregate-error@npm:0.0.6":
version: 0.0.6
resolution: "@ardatan/aggregate-error@npm:0.0.6"
dependencies:
tslib: ~2.0.1
checksum: c11138d0cb4bd29edc62380b34ac019c915cfa7e77dee6aa3569b58089a83ed77067129937074a06b4b4c11fa6fa2db19cc78835a89e6f59d2b7f1e7fab50f8d
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.8.3":
version: 7.12.13
resolution: "@babel/code-frame@npm:7.12.13"
dependencies:
"@babel/highlight": ^7.12.13
checksum: 471532bb7cb4a300bd1a3201e75e7c0c83ebfb4e0e6610fdb53270521505d7efe0961258de61e7b1970ef3092a97ed675248ee1a44597912a1f61f903d85ef41
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/compat-data@npm:7.12.13"
checksum: ab32dd78b7cb3c511ca557ec042763007cea6d2419dbf76d2716b7d5184b6f3e9c60e2fb4124ee69a0a4b78582e41a6e83330e99b969843d6daada427fecb877
languageName: node
linkType: hard
"@babel/core@npm:^7.0.0, @babel/core@npm:^7.1.0, @babel/core@npm:^7.11.0, @babel/core@npm:^7.7.5, @babel/core@npm:^7.8.4":
version: 7.12.13
resolution: "@babel/core@npm:7.12.13"
dependencies:
"@babel/code-frame": ^7.12.13
"@babel/generator": ^7.12.13
"@babel/helper-module-transforms": ^7.12.13
"@babel/helpers": ^7.12.13
"@babel/parser": ^7.12.13
"@babel/template": ^7.12.13
"@babel/traverse": ^7.12.13
"@babel/types": ^7.12.13
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.1
json5: ^2.1.2
lodash: ^4.17.19
semver: ^5.4.1
source-map: ^0.5.0
checksum: c8cb5712616c6f3c9c593cb8f9a084b33481c656b3dd74eafb6f095de7d5699125131c88cf2ebc4c2ed7887c4ad8d65a43efdc6c0a2edd9c269b2793fdb593d3
languageName: node
linkType: hard
"@babel/generator@npm:^7.12.13, @babel/generator@npm:^7.5.0":
version: 7.12.15
resolution: "@babel/generator@npm:7.12.15"
dependencies:
"@babel/types": ^7.12.13
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: 243c7c8987b9720d7cc8ecec165f69fda4159bb3ab19d3f09a4d5c6d35644d3b62293903aab0ae1f34dda61e39094bfea604d88a035e9f9ec485ffde636a734f
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-annotate-as-pure@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: e82f457eb92080bba1e0d59386af32596fdf7aa3fd5aa557ef7fab2e1833f45c8818873f135294ee95210856103ae10a6e86789ca72e259a98ee8b6745e70319
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.12.13"
dependencies:
"@babel/helper-explode-assignable-expression": ^7.12.13
"@babel/types": ^7.12.13
checksum: 38bd626f3893fa82267c9e5fa43353c897b75dc18259ffdc1c81b0fa5ac26284a4aaca465550fff14daed159f4d1502c4c95028740dacef1018d787d58173e2b
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.12.13, @babel/helper-compilation-targets@npm:^7.9.6":
version: 7.12.13
resolution: "@babel/helper-compilation-targets@npm:7.12.13"
dependencies:
"@babel/compat-data": ^7.12.13
"@babel/helper-validator-option": ^7.12.11
browserslist: ^4.14.5
semver: ^5.5.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 4b91f743253f5c2c5a74c9733bb6cca536dd2b14fdd458a722755fd63d1df4d8691fe805d1fd406555c25b6ac63d0e6430e3aa9ff9a21f10724e1b63a15602f7
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-create-class-features-plugin@npm:7.12.13"
dependencies:
"@babel/helper-function-name": ^7.12.13
"@babel/helper-member-expression-to-functions": ^7.12.13
"@babel/helper-optimise-call-expression": ^7.12.13
"@babel/helper-replace-supers": ^7.12.13
"@babel/helper-split-export-declaration": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0
checksum: dfb86b2d5cf12159f45a35b208ab21c286cac523d32f03e7b7b86bb38bc91ad8a60d911856794546d02723c40dbdb76aa0c136cf412d8fb6e6e4a6dcf501123a
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.12.13"
dependencies:
"@babel/helper-annotate-as-pure": ^7.12.13
regexpu-core: ^4.7.1
peerDependencies:
"@babel/core": ^7.0.0
checksum: 709f491bb6ca0f25ed5870bf3cba0c5e7f290dced9af52d1b13a9e4d86513bb1fccf374e846551e06768b864750824f9088f7cab793f664d651793368544deec
languageName: node
linkType: hard
"@babel/helper-explode-assignable-expression@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-explode-assignable-expression@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: 775631f976df21a39cf02f46f02277dcb285bf0800ca6633f8e830ee122eb01fe62435af16afe54bc3ab6d5a7d943ccaad6f294e1aa2a8dd49e48038245931dc
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-function-name@npm:7.12.13"
dependencies:
"@babel/helper-get-function-arity": ^7.12.13
"@babel/template": ^7.12.13
"@babel/types": ^7.12.13
checksum: 25f03f303be790618437dc49c6df758d362112a564361d2eae66b58fda4f5ec09e62875473b18090b939c8d3d60b36aa7c9f688768b7fade511512d02ac9d3d0
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-get-function-arity@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: cfb5c39959ea9f1cc21ee0f4a23054be66a615fa5392f25763ea98f0c690a5b47500af9a63f28a42a2fb3f699684c113c45a95c4ce6303dfecb3358e32e56c76
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-hoist-variables@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: dc3cc7d1e15c6befbb196c6ce5a758b6a27eda41243401281c192607c00ac785083a3a6383b68be130d505d1e71563946f299b33935ae9e12865abb03cad1f36
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-member-expression-to-functions@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: 64827b3c56d21e4b118c02ebe36ff6b18917f0dfa03d40580a1e0d01f8d205636c6762e930b7a8be9fffa5d4cd5d5042779e19bb3d22aefea7673fec815e3bb4
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.0.0, @babel/helper-module-imports@npm:^7.12.13, @babel/helper-module-imports@npm:^7.8.3":
version: 7.12.13
resolution: "@babel/helper-module-imports@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: 9832436fb44361b2d7a0b7d99f18b7c0529afb94202ab92b578147aba062447e9a1cff33bc95db33189686fa922c62f23da296870958eee2f862b3aa89809159
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-module-transforms@npm:7.12.13"
dependencies:
"@babel/helper-module-imports": ^7.12.13
"@babel/helper-replace-supers": ^7.12.13
"@babel/helper-simple-access": ^7.12.13
"@babel/helper-split-export-declaration": ^7.12.13
"@babel/helper-validator-identifier": ^7.12.11
"@babel/template": ^7.12.13
"@babel/traverse": ^7.12.13
"@babel/types": ^7.12.13
lodash: ^4.17.19
checksum: 4cbb439f3488af62f429c69fc6e597d7f5c9d8587847e19c14ce45d976cbbaa684e54e23e91358615256e76bf2f63598265cdc95b3590443a61a16eb0b27c673
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-optimise-call-expression@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: 5e4df5da4a45d7b7c100307efdc11f9fb460f943b4db1c60ddbdf57c3a7cbeecc8dea8980f4a9d4f3c38071b04d0e7c95af213229bcc1c13f17eb7293a6298a9
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.12.13, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.12.13
resolution: "@babel/helper-plugin-utils@npm:7.12.13"
checksum: 9cdfd7790c30ed1d538804544a2f82848533e1532670c8615befa20827332d82810b582035c3e67bba86adccaa7290b981fa31cc5e2881bb346b8ee5d69b1ed6
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-remap-async-to-generator@npm:7.12.13"
dependencies:
"@babel/helper-annotate-as-pure": ^7.12.13
"@babel/helper-wrap-function": ^7.12.13
"@babel/types": ^7.12.13
checksum: 6a0838e6bc850dde2f0d1f218cf52d8a8014422476be548b24b593f92176757b84f31c10245fa4352bb86f17d1271c6b41155047c81768150c7a6a2d8462c45c
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-replace-supers@npm:7.12.13"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.12.13
"@babel/helper-optimise-call-expression": ^7.12.13
"@babel/traverse": ^7.12.13
"@babel/types": ^7.12.13
checksum: 1a433f4e4b0a1fc7fbcf4884a12abd75873269f8978c66a72a63e5ba83614c2208851111100d0dc25b9f3bc15e244356810b581d3e8b8cb2c11f8c42f2673400
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-simple-access@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: 34f19da4b8129006d660ff6d704d493a447852268a1360727a7de32087c7cead4c2548a3bb73c8fee7afa2dcad85087d53f9b0cabe071f3bf5cc27f35de9e7c8
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.12.1"
dependencies:
"@babel/types": ^7.12.1
checksum: 2e690ed5659534f46387bde713d7c511865a309c5cd6f1d64ff94abdb64fe2e4d5e6cb6ed6c9856cbb16e9de60ecac86534b9d1eb93e877830442610889f6144
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-split-export-declaration@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: c8d529558c45855542b7094de7b08e6c6de34922037a71596545dbb7a3be6ebf61b8b3193afe85fa5c9c35bcb0cc94110866deab8028f73e500bdc62427532c9
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.12.11":
version: 7.12.11
resolution: "@babel/helper-validator-identifier@npm:7.12.11"
checksum: 18de432203264b501db2690b53370a4289dc56084f5a2c66de624b159ee28b8abaeb402b2b7584296d9261645d91ddb6bfd21125d3ffd9bf02e9262e77baf3d2
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.12.11":
version: 7.12.11
resolution: "@babel/helper-validator-option@npm:7.12.11"
checksum: c0a861e95f4f24ed59535c28206f62e639404db873473886ec77b50fef53e21111b4093522838927b79be768a885ad2007086b2434353b9d2b89b891ca14028a
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-wrap-function@npm:7.12.13"
dependencies:
"@babel/helper-function-name": ^7.12.13
"@babel/template": ^7.12.13
"@babel/traverse": ^7.12.13
"@babel/types": ^7.12.13
checksum: 96360927438b7e9d8b7528c8a464743f0db06d213f3e32c08413c3b422b57139055a9c8f4138209b28ab923f159020ced50a7284b4f7bc857e4964e868233949
languageName: node
linkType: hard
"@babel/helpers@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helpers@npm:7.12.13"
dependencies:
"@babel/template": ^7.12.13
"@babel/traverse": ^7.12.13
"@babel/types": ^7.12.13
checksum: ebfde3ef2a0bfc4df4a16d51af655bedcb4aa1101f2e2c6f3942a072ee5bd2e53abe2193434c8993379ac480cc4fb2af91d42bf2b8bf0fb5c60ffa40d8162999
languageName: node
linkType: hard
"@babel/highlight@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/highlight@npm:7.12.13"
dependencies:
"@babel/helper-validator-identifier": ^7.12.11
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: 83a3a2cc961b9e17fb75bd57ebf90cf07be6ec4263d74b60c435c28bcb045c474f0162eaa921ad7b44429d7624ec49b41cae416e475d3f747ccda678be1f7a8f
languageName: node
linkType: hard
"@babel/parser@npm:7.12.13":
version: 7.12.13
resolution: "@babel/parser@npm:7.12.13"
bin:
parser: ./bin/babel-parser.js
checksum: 177230a5e8cce685f3964632733eab2a243db984cad1746d468696318c2997c2287d8999e82135c7bac94d54fde26b2592f8c697a18833846d389ae2057d811d
languageName: node
linkType: hard
"@babel/parser@npm:^7.0.0, @babel/parser@npm:^7.1.0, @babel/parser@npm:^7.12.13":
version: 7.12.15
resolution: "@babel/parser@npm:7.12.15"
bin:
parser: ./bin/babel-parser.js
checksum: 0e8b7fc396f8137a820bbc132be17f7b0df25393f9cc13ddcea0e0a9d3a131f5d51db2c1fe5ac8387c70b8635f3ce633d9ba84c3ad6790892f97aa0761ca69ce
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
"@babel/helper-remap-async-to-generator": ^7.12.13
"@babel/plugin-syntax-async-generators": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5f45a324166dc18721b95b68f3efb746964340745c5a95a8acda9a91fd13b0855da22bfd691669dd30eea75968306d0921a9d7fc9375ce99672303ae3cd1c29f
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.0.0, @babel/plugin-proposal-class-properties@npm:^7.12.13, @babel/plugin-proposal-class-properties@npm:^7.8.3":
version: 7.12.13
resolution: "@babel/plugin-proposal-class-properties@npm:7.12.13"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.12.13
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4fc7b094c3ca8fc1153a30030c30e919d376da05bfd47a990b74e5274846cc618dd9769e7c555939522f1c57f3021da15922348b895e9cd137d141c1b90b057b
languageName: node
linkType: hard
"@babel/plugin-proposal-decorators@npm:^7.8.3":
version: 7.12.13
resolution: "@babel/plugin-proposal-decorators@npm:7.12.13"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.12.13
"@babel/helper-plugin-utils": ^7.12.13
"@babel/plugin-syntax-decorators": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: be73666ef9851ec2a448aad72d908d0ca3d9735c7098a7ceb9f51e42f4f91eedc859d2b69b1a965e13817eccbb5920eae032f5276078b4f87ead9996c50994e0
languageName: node
linkType: hard
"@babel/plugin-proposal-dynamic-import@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-dynamic-import": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4428439b483912c898d70a858f86e48f28247f55b05f4ca4ebc1f6746e63cc73e2704ed85c8fc65f2761154f4fcfa08220ac413c9edd5758d1ace03b4dcd4551
languageName: node
linkType: hard
"@babel/plugin-proposal-export-namespace-from@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-proposal-export-namespace-from@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
"@babel/plugin-syntax-export-namespace-from": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 831dcc6711b9181978a62a5955104ef3f23de0c9a6740af0ca7395153cd4d481665fd557aa178ac53146cdbf49cf95f3ab06e51f2c79343a69639ed09877f7db
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-proposal-json-strings@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
"@babel/plugin-syntax-json-strings": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e15d3b598817d951d33fdafc24cb157d4db008d0e26a880d61817214a4adc7946df553dd07c8097901c6b1f33afad661c953d70f3bcbb8b9b28a14d184b7ed5b
languageName: node
linkType: hard
"@babel/plugin-proposal-logical-assignment-operators@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-proposal-logical-assignment-operators@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
"@babel/plugin-syntax-logical-assignment-operators": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8cfcff04cb72eeeaae3e0246d4671f2da4d0da37e7bf551c54d0d1b953805d2a590ead4815d390e9c69e22a2d93624feca76e064fe30cd22b5a0f8b9c31d9345
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
"@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: af19899197f6cbad35e763b92ac3595db6abde75eeeeecc57a0a1c5d3aa35affd6904e7f91a86e3263a8618d88dd88757bcd27be75c53bcafd9d4146863201da
languageName: node
linkType: hard
"@babel/plugin-proposal-numeric-separator@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-proposal-numeric-separator@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
"@babel/plugin-syntax-numeric-separator": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d0480be4c7cc4f7c98bcdfa541cc25d878e70f9f1d37097b9846f1ff8e48756b5015f0f230b794c1b808b4e064606d074c53cb12875111ad080b9d30d2e2adf5
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:^7.0.0, @babel/plugin-proposal-object-rest-spread@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
"@babel/plugin-syntax-object-rest-spread": ^7.8.0
"@babel/plugin-transform-parameters": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1750d72b5387faa93f6198bdad7c617c4e1f01923240b45e8c297b9c55047614cd774c2e7ae5e4ff7d1f04bbe05438cdcb044750ba516bcb1f3e2fa209a3e170
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-catch-binding@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
"@babel/plugin-syntax-optional-catch-binding": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: eb7e28b63e23a6f1026e8ed1dac21bc7e262231222e1b61afe390193a8b2a3a2b10bd5178acaf490461512c2b7110a77041e82ee0d42c4f027a763a1fc553860
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
"@babel/helper-skip-transparent-expression-wrappers": ^7.12.1
"@babel/plugin-syntax-optional-chaining": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 40e7ba49868a041a4ca4d3024605fe36d9b33210d63d5350d298165e83ee91e520544bb7835fbc8419b5c2c76ae130f3da36140f4dac0d83c8daa0c01039a762
languageName: node
linkType: hard
"@babel/plugin-proposal-private-methods@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-proposal-private-methods@npm:7.12.13"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.12.13
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 972c195de6844b7ae6287a3db657d5b6dd53daafbf02c20a9181919d5804a04baa2a9ddba01d0ce1628248ba1287a4d8bcb473b875c5eef1157e89ab773c4f37
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.12.13, @babel/plugin-proposal-unicode-property-regex@npm:^7.4.4":
version: 7.12.13
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.12.13"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.12.13
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4877865ea8482c467e7ba527014e346680d7e391a4f426e398d738fd1ce33c28f97012a07d1d47103e678e78c26a21961bc59719bfef2a295fb087c761e09988
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.0.0, @babel/plugin-syntax-class-properties@npm:^7.12.13, @babel/plugin-syntax-class-properties@npm:^7.8.3":
version: 7.12.13
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3023dec8acd42e0b691d9cdf21bc6931fe3e3d53c2231bdfe3eca3afeab168723f7315991550a163748bc49dbcd3c95632b77ec56f5e1d89bc5029cfeb7f0f7b
languageName: node
linkType: hard
"@babel/plugin-syntax-decorators@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-syntax-decorators@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 6a07456fe84979ff1417cb14db464827c361d685472ece866eed188ef4c4a4d926cf66d904e1d9c194081e10daa68656d19a18bf8759ac608bfd71be242f5de0
languageName: node
linkType: hard
"@babel/plugin-syntax-dynamic-import@npm:^7.8.0, @babel/plugin-syntax-dynamic-import@npm:^7.8.3":
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-flow@npm:^7.0.0, @babel/plugin-syntax-flow@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-syntax-flow@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: de8845354dda62b7857a518a54f85bf30809ed1d7cc5ace93ced6da16d095cba78487d18651f1b2277db58d8e749cb910c703f96529af198369226e374df5f73
languageName: node
linkType: hard
"@babel/plugin-syntax-import-meta@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 685ee8f0b5b675952e02e1cabcde4d92638918a66ed515b2663e2e0b2246210a0768325423d5642f8687653a449357826675ccfcb712676be260a0ae13313828
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.0.0, @babel/plugin-syntax-jsx@npm:^7.12.13, @babel/plugin-syntax-jsx@npm:^7.2.0, @babel/plugin-syntax-jsx@npm:^7.8.3":
version: 7.12.13
resolution: "@babel/plugin-syntax-jsx@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 00a832806d85aaf3e1ece466f207705a5c0cde29141f4a8e89281dc42feafe6e40233ec4b72aa4b33038647cffa5ebe151d061850250dcf5ee6d58bcf733bce8
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.0.0, @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.12.13, @babel/plugin-syntax-top-level-await@npm:^7.8.3":
version: 7.12.13
resolution: "@babel/plugin-syntax-top-level-await@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5bd0a65b01a39e5636169f830ade7511d046f2db63831e226fa99139d97aa30ee6958ac04a1e114954ace8c64875269fc450ed3304a4204f4be82c1b8aa21be7
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.0.0, @babel/plugin-transform-arrow-functions@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-transform-arrow-functions@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b1b04e8a0ea4353b3602ac34b03a3e5e6c1d87222ee316d64d09954f2881ea834c133e08b68a24ea4b4f5ed7c6237dd570c06a1e7e13fc60428a7aa7bcada985
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-transform-async-to-generator@npm:7.12.13"
dependencies:
"@babel/helper-module-imports": ^7.12.13
"@babel/helper-plugin-utils": ^7.12.13
"@babel/helper-remap-async-to-generator": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ed26ae749032b25a91b684538e95d15c5f133395aaedffb0025fa236ea63dd43a849eba3dd487d7f81852a011cc6c9949c2cdc026f7bd9d2857778f27df22729
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.0.0, @babel/plugin-transform-block-scoped-functions@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c914fa2874ccee83a03d5323dee942b90b42a3ff57fa92703ffc14e9c3feabccf30225766db2977bdcde49c487118f1e6bd19dd284a97a527f8fcd30a1003933
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.0.0, @babel/plugin-transform-block-scoping@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-transform-block-scoping@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: cea49384ce946e14a4d8141cccadd09f7d9467964ee2df83e7f7e0c8cbd3ef1901125caf5a4013720539780647092ceb875cef214841126aa2e68dc05381f1f5
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.0.0, @babel/plugin-transform-classes@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-transform-classes@npm:7.12.13"
dependencies:
"@babel/helper-annotate-as-pure": ^7.12.13
"@babel/helper-function-name": ^7.12.13
"@babel/helper-optimise-call-expression": ^7.12.13
"@babel/helper-plugin-utils": ^7.12.13
"@babel/helper-replace-supers": ^7.12.13
"@babel/helper-split-export-declaration": ^7.12.13
globals: ^11.1.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a087f0b095a522bfaa438063ee4a6d886a7dbe0c860594f3823e24ab6550108150be4e767ff280ad428a4dd90f8dbaf1dc9f563e06dc986b1f68b4c9d4126418
languageName: node
linkType: hard
"@babel/plugin-transform-computed-properties@npm:^7.0.0, @babel/plugin-transform-computed-properties@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-transform-computed-properties@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5fda252a10d5e6fe5cbcfc80c9b80df23bee10cffa9401fc7cb37d878b5fb3abe883a1cd44b08b50bd87daf28f9fad6f45915c228bbb4c150f1fddd78e20f050
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:^7.0.0, @babel/plugin-transform-destructuring@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-transform-destructuring@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a1afc8811c1f83b1c4b646260d8da932cec5db6686b15d4532449f3c64ef8897fe52f21bb68cba5e512dcbd1470e187522f30a93bbb26a175bec67711a5e79ca
languageName: node
linkType: hard
"@babel/plugin-transform-dotall-regex@npm:^7.12.13, @babel/plugin-transform-dotall-regex@npm:^7.4.4":
version: 7.12.13
resolution: "@babel/plugin-transform-dotall-regex@npm:7.12.13"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.12.13
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: cd33e1adfb1e081468dbf72bbfa310490abafc9a4f87d50b1d084c10655669494554d0e2695578954e710642b52e1869916680fa90e4caf8408ffa507c99d4d6
languageName: node
linkType: hard
"@babel/plugin-transform-duplicate-keys@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-transform-duplicate-keys@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7565f2dc697006edcfe50c02f2c0f18c71aa9e4c68dd2d3b663781054e680b70c78f616ee1a2c2349099797175e426d6d6086f3cfbe547fd4f0adfe9e3c3f9fb
languageName: node
linkType: hard
"@babel/plugin-transform-exponentiation-operator@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.12.13"
dependencies:
"@babel/helper-builder-binary-assignment-operator-visitor": ^7.12.13
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: cbe6a6bb2b9a54c687e9364c876afb31f75fa21b1409a78bb7f405100a082f7dce5255d2cd2937c8b0d2c6040b9a10c67ed80a98b4684eee0b939c9d2c65b35a
languageName: node
linkType: hard
"@babel/plugin-transform-flow-strip-types@npm:^7.0.0":
version: 7.12.13
resolution: "@babel/plugin-transform-flow-strip-types@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
"@babel/plugin-syntax-flow": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: cad9f74e04046db30c401109b50c6ae079fce3be1d8114afa2de666cd32a6483f24675e4641f4c8e45367669614d58152fce437a9ed3479f00732c9d3628bdce
languageName: node
linkType: hard
"@babel/plugin-transform-for-of@npm:^7.0.0, @babel/plugin-transform-for-of@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-transform-for-of@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 231ae275f30e37146670b05260d5b7312f7103d34645fad4df61e39185fd9039ce7ac7f8c6f1efaa9caf0caa9ca7402dc3d1f83836d9bf3dab9e499c97324450
languageName: node
linkType: hard
"@babel/plugin-transform-function-name@npm:^7.0.0, @babel/plugin-transform-function-name@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-transform-function-name@npm:7.12.13"
dependencies:
"@babel/helper-function-name": ^7.12.13
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 26b8af8882dc7684e124ba88494cafbdf8252768eac351b0b7913578dee4e906a8ecc7c1cc2d53ae5c6f1e241bfbaede40cb28d38d4312770b22842bdd7943cb
languageName: node
linkType: hard
"@babel/plugin-transform-literals@npm:^7.0.0, @babel/plugin-transform-literals@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-transform-literals@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8dbc807354a81339a0161676c3daae619277797a7181b94bef013360aa3d6003603717cf2380aa6ee062f75f39e69a36803bdd3b39c530ebbca368cf7b8dc0d4
languageName: node
linkType: hard
"@babel/plugin-transform-member-expression-literals@npm:^7.0.0, @babel/plugin-transform-member-expression-literals@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-transform-member-expression-literals@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0