-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
5031 lines (4334 loc) · 201 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@apollo/client@^3.3.13":
"integrity" "sha512-usiVmXiOq0J/GpyIOIhlF8ItHpiPJObC7zoxLYPoOYj3G3OB0hCIcUKs3aTJ3ATW7u8QxvYgRaJg72NN7E1WOg=="
"resolved" "https://registry.npmjs.org/@apollo/client/-/client-3.3.13.tgz"
"version" "3.3.13"
dependencies:
"@graphql-typed-document-node/core" "^3.0.0"
"@types/zen-observable" "^0.8.0"
"@wry/context" "^0.6.0"
"@wry/equality" "^0.4.0"
"fast-json-stable-stringify" "^2.0.0"
"graphql-tag" "^2.12.0"
"hoist-non-react-statics" "^3.3.2"
"optimism" "^0.15.0"
"prop-types" "^15.7.2"
"symbol-observable" "^2.0.0"
"ts-invariant" "^0.7.0"
"tslib" "^1.10.0"
"zen-observable" "^0.8.14"
"@ardatan/[email protected]":
"integrity" "sha512-vyrkEHG1jrukmzTPtyWB4NLPauUw5bQeg4uhn8f+1SSynmrOcyvlb1GKQjjgoBzElLdfXCRYX8UnBlhklOHYRQ=="
"resolved" "https://registry.npmjs.org/@ardatan/aggregate-error/-/aggregate-error-0.0.6.tgz"
"version" "0.0.6"
dependencies:
"tslib" "~2.0.1"
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13":
"integrity" "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/highlight" "^7.12.13"
"@babel/[email protected]":
"integrity" "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz"
"version" "7.12.11"
dependencies:
"@babel/highlight" "^7.10.4"
"@babel/compat-data@^7.13.12", "@babel/compat-data@^7.13.8":
"integrity" "sha512-3eJJ841uKxeV8dcN/2yGEUy+RfgQspPEgQat85umsE1rotuquQ2AbIub4S6j7c50a2d+4myc+zSlnXeIHrOnhQ=="
"resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.13.12.tgz"
"version" "7.13.12"
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0":
"integrity" "sha512-wZso/vyF4ki0l0znlgM4inxbdrUvCb+cVz8grxDq+6C9k6qbqoIJteQOKicaKjCipU3ISV+XedCqpL2RJJVehA=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.13.14.tgz"
"version" "7.13.14"
dependencies:
"@babel/code-frame" "^7.12.13"
"@babel/generator" "^7.13.9"
"@babel/helper-compilation-targets" "^7.13.13"
"@babel/helper-module-transforms" "^7.13.14"
"@babel/helpers" "^7.13.10"
"@babel/parser" "^7.13.13"
"@babel/template" "^7.12.13"
"@babel/traverse" "^7.13.13"
"@babel/types" "^7.13.14"
"convert-source-map" "^1.7.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.1.2"
"semver" "^6.3.0"
"source-map" "^0.5.0"
"@babel/generator@^7.12.13", "@babel/generator@^7.13.9", "@babel/generator@^7.5.0":
"integrity" "sha512-mHOOmY0Axl/JCTkxTU6Lf5sWOg/v8nUa+Xkt4zMTftX0wqmb6Sh7J8gvcehBw7q0AhrhAR+FDacKjCZ2X8K+Sw=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.13.9.tgz"
"version" "7.13.9"
dependencies:
"@babel/types" "^7.13.0"
"jsesc" "^2.5.1"
"source-map" "^0.5.0"
"@babel/helper-annotate-as-pure@^7.12.13":
"integrity" "sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw=="
"resolved" "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/types" "^7.12.13"
"@babel/helper-compilation-targets@^7.13.13", "@babel/helper-compilation-targets@^7.13.8":
"integrity" "sha512-q1kcdHNZehBwD9jYPh3WyXcsFERi39X4I59I3NadciWtNDyZ6x+GboOxncFK0kXlKIv6BJm5acncehXWUjWQMQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.13.tgz"
"version" "7.13.13"
dependencies:
"@babel/compat-data" "^7.13.12"
"@babel/helper-validator-option" "^7.12.17"
"browserslist" "^4.14.5"
"semver" "^6.3.0"
"@babel/helper-create-class-features-plugin@^7.13.0":
"integrity" "sha512-ays0I7XYq9xbjCSvT+EvysLgfc3tOkwCULHjrnscGT3A9qD4sk3wXnJ3of0MAWsWGjdinFvajHU2smYuqXKMrw=="
"resolved" "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.13.11.tgz"
"version" "7.13.11"
dependencies:
"@babel/helper-function-name" "^7.12.13"
"@babel/helper-member-expression-to-functions" "^7.13.0"
"@babel/helper-optimise-call-expression" "^7.12.13"
"@babel/helper-replace-supers" "^7.13.0"
"@babel/helper-split-export-declaration" "^7.12.13"
"@babel/helper-function-name@^7.12.13":
"integrity" "sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA=="
"resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/helper-get-function-arity" "^7.12.13"
"@babel/template" "^7.12.13"
"@babel/types" "^7.12.13"
"@babel/helper-get-function-arity@^7.12.13":
"integrity" "sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg=="
"resolved" "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/types" "^7.12.13"
"@babel/helper-member-expression-to-functions@^7.13.0", "@babel/helper-member-expression-to-functions@^7.13.12":
"integrity" "sha512-48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw=="
"resolved" "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz"
"version" "7.13.12"
dependencies:
"@babel/types" "^7.13.12"
"@babel/helper-module-imports@^7.13.12":
"integrity" "sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz"
"version" "7.13.12"
dependencies:
"@babel/types" "^7.13.12"
"@babel/helper-module-transforms@^7.13.0", "@babel/helper-module-transforms@^7.13.14":
"integrity" "sha512-QuU/OJ0iAOSIatyVZmfqB0lbkVP0kDRiKj34xy+QNsnVZi/PA6BoSoreeqnxxa9EHFAIL0R9XOaAR/G9WlIy5g=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.13.14.tgz"
"version" "7.13.14"
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.12.11"
"@babel/template" "^7.12.13"
"@babel/traverse" "^7.13.13"
"@babel/types" "^7.13.14"
"@babel/helper-optimise-call-expression@^7.12.13":
"integrity" "sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA=="
"resolved" "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/types" "^7.12.13"
"@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.8.0":
"integrity" "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz"
"version" "7.13.0"
"@babel/helper-replace-supers@^7.12.13", "@babel/helper-replace-supers@^7.13.0", "@babel/helper-replace-supers@^7.13.12":
"integrity" "sha512-Gz1eiX+4yDO8mT+heB94aLVNCL+rbuT2xy4YfyNqu8F+OI6vMvJK891qGBTqL9Uc8wxEvRW92Id6G7sDen3fFw=="
"resolved" "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.13.12.tgz"
"version" "7.13.12"
dependencies:
"@babel/helper-member-expression-to-functions" "^7.13.12"
"@babel/helper-optimise-call-expression" "^7.12.13"
"@babel/traverse" "^7.13.0"
"@babel/types" "^7.13.12"
"@babel/helper-simple-access@^7.12.13", "@babel/helper-simple-access@^7.13.12":
"integrity" "sha512-7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA=="
"resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz"
"version" "7.13.12"
dependencies:
"@babel/types" "^7.13.12"
"@babel/helper-skip-transparent-expression-wrappers@^7.12.1":
"integrity" "sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA=="
"resolved" "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz"
"version" "7.12.1"
dependencies:
"@babel/types" "^7.12.1"
"@babel/helper-split-export-declaration@^7.12.13":
"integrity" "sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg=="
"resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/types" "^7.12.13"
"@babel/helper-validator-identifier@^7.12.11":
"integrity" "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz"
"version" "7.12.11"
"@babel/helper-validator-option@^7.12.17":
"integrity" "sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz"
"version" "7.12.17"
"@babel/helpers@^7.13.10":
"integrity" "sha512-4VO883+MWPDUVRF3PhiLBUFHoX/bsLTGFpFK/HqvvfBZz2D57u9XzPVNFVBTc0PW/CWR9BXTOKt8NF4DInUHcQ=="
"resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.13.10.tgz"
"version" "7.13.10"
dependencies:
"@babel/template" "^7.12.13"
"@babel/traverse" "^7.13.0"
"@babel/types" "^7.13.0"
"@babel/highlight@^7.10.4", "@babel/highlight@^7.12.13":
"integrity" "sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.10.tgz"
"version" "7.13.10"
dependencies:
"@babel/helper-validator-identifier" "^7.12.11"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/parser@^7.0.0", "@babel/parser@^7.12.13", "@babel/[email protected]":
"integrity" "sha512-c/+u9cqV6F0+4Hpq01jnJO+GLp2DdT63ppz9Xa+6cHaajM9VFzK/iDXiKK65YtpeVwu+ctfS6iqlMqRgQRzeCw=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.12.16.tgz"
"version" "7.12.16"
"@babel/parser@^7.13.13":
"integrity" "sha512-OhsyMrqygfk5v8HmWwOzlYjJrtLaFhF34MrfG/Z73DgYCI6ojNUTUp2TYbtnjo8PegeJp12eamsNettCQjKjVw=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.13.13.tgz"
"version" "7.13.13"
"@babel/plugin-proposal-class-properties@^7.0.0":
"integrity" "sha512-KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz"
"version" "7.13.0"
dependencies:
"@babel/helper-create-class-features-plugin" "^7.13.0"
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/plugin-proposal-object-rest-spread@^7.0.0":
"integrity" "sha512-DhB2EuB1Ih7S3/IRX5AFVgZ16k3EzfRbq97CxAVI1KSYcW+lexV8VZb7G7L8zuPVSdQMRn0kiBpf/Yzu9ZKH0g=="
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.13.8.tgz"
"version" "7.13.8"
dependencies:
"@babel/compat-data" "^7.13.8"
"@babel/helper-compilation-targets" "^7.13.8"
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/plugin-syntax-object-rest-spread" "^7.8.3"
"@babel/plugin-transform-parameters" "^7.13.0"
"@babel/plugin-syntax-class-properties@^7.0.0":
"integrity" "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.12.13":
"integrity" "sha512-J/RYxnlSLXZLVR7wTRsozxKT8qbsx1mNKJzXEEjQ0Kjx1ZACcyHgbanNWNCFtc36IzuWhYWPpvJFFoexoOWFmA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.12.13":
"integrity" "sha512-d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3":
"integrity" "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-transform-arrow-functions@^7.0.0":
"integrity" "sha512-96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.13.0.tgz"
"version" "7.13.0"
dependencies:
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/plugin-transform-block-scoped-functions@^7.0.0":
"integrity" "sha512-zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/plugin-transform-block-scoping@^7.0.0":
"integrity" "sha512-Pxwe0iqWJX4fOOM2kEZeUuAxHMWb9nK+9oh5d11bsLoB0xMg+mkDpt0eYuDZB7ETrY9bbcVlKUGTOGWy7BHsMQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/plugin-transform-classes@^7.0.0":
"integrity" "sha512-9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.13.0.tgz"
"version" "7.13.0"
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.13.0"
"@babel/helper-replace-supers" "^7.13.0"
"@babel/helper-split-export-declaration" "^7.12.13"
"globals" "^11.1.0"
"@babel/plugin-transform-computed-properties@^7.0.0":
"integrity" "sha512-RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.13.0.tgz"
"version" "7.13.0"
dependencies:
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/plugin-transform-destructuring@^7.0.0":
"integrity" "sha512-zym5em7tePoNT9s964c0/KU3JPPnuq7VhIxPRefJ4/s82cD+q1mgKfuGRDMCPL0HTyKz4dISuQlCusfgCJ86HA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.0.tgz"
"version" "7.13.0"
dependencies:
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/plugin-transform-flow-strip-types@^7.0.0":
"integrity" "sha512-EXAGFMJgSX8gxWD7PZtW/P6M+z74jpx3wm/+9pn+c2dOawPpBkUX7BrfyPvo6ZpXbgRIEuwgwDb/MGlKvu2pOg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.13.0.tgz"
"version" "7.13.0"
dependencies:
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/plugin-syntax-flow" "^7.12.13"
"@babel/plugin-transform-for-of@^7.0.0":
"integrity" "sha512-IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.13.0.tgz"
"version" "7.13.0"
dependencies:
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/plugin-transform-function-name@^7.0.0":
"integrity" "sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/helper-function-name" "^7.12.13"
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/plugin-transform-literals@^7.0.0":
"integrity" "sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/plugin-transform-member-expression-literals@^7.0.0":
"integrity" "sha512-kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/plugin-transform-modules-commonjs@^7.0.0":
"integrity" "sha512-9QiOx4MEGglfYZ4XOnU79OHr6vIWUakIj9b4mioN8eQIoEh+pf5p/zEB36JpDFWA12nNMiRf7bfoRvl9Rn79Bw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.13.8.tgz"
"version" "7.13.8"
dependencies:
"@babel/helper-module-transforms" "^7.13.0"
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/helper-simple-access" "^7.12.13"
"babel-plugin-dynamic-import-node" "^2.3.3"
"@babel/plugin-transform-object-super@^7.0.0":
"integrity" "sha512-JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/helper-replace-supers" "^7.12.13"
"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.13.0":
"integrity" "sha512-Jt8k/h/mIwE2JFEOb3lURoY5C85ETcYPnbuAJ96zRBzh1XHtQZfs62ChZ6EP22QlC8c7Xqr9q+e1SU5qttwwjw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.13.0.tgz"
"version" "7.13.0"
dependencies:
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/plugin-transform-property-literals@^7.0.0":
"integrity" "sha512-nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/plugin-transform-react-display-name@^7.0.0":
"integrity" "sha512-MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/plugin-transform-react-jsx@^7.0.0":
"integrity" "sha512-jcEI2UqIcpCqB5U5DRxIl0tQEProI2gcu+g8VTIqxLO5Iidojb4d77q+fwGseCvd8af/lJ9masp4QWzBXFE2xA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.13.12.tgz"
"version" "7.13.12"
dependencies:
"@babel/helper-annotate-as-pure" "^7.12.13"
"@babel/helper-module-imports" "^7.13.12"
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/plugin-syntax-jsx" "^7.12.13"
"@babel/types" "^7.13.12"
"@babel/plugin-transform-shorthand-properties@^7.0.0":
"integrity" "sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/plugin-transform-spread@^7.0.0":
"integrity" "sha512-V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.13.0.tgz"
"version" "7.13.0"
dependencies:
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/helper-skip-transparent-expression-wrappers" "^7.12.1"
"@babel/plugin-transform-template-literals@^7.0.0":
"integrity" "sha512-d67umW6nlfmr1iehCcBv69eSUSySk1EsIS8aTDX4Xo9qajAh6mYtcl4kJrBkGXuxZPEgVr7RVfAvNW6YQkd4Mw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.13.0.tgz"
"version" "7.13.0"
dependencies:
"@babel/helper-plugin-utils" "^7.13.0"
"@babel/runtime@^7.0.0":
"integrity" "sha512-4QPkjJq6Ns3V/RgpEahRk+AGfL0eO6RHHtTWoNNr5mO49G6B5+X6d6THgWEAvTrznU5xYpbAlVKRYcsCgh/Akw=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.10.tgz"
"version" "7.13.10"
dependencies:
"regenerator-runtime" "^0.13.4"
"@babel/template@^7.12.13":
"integrity" "sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA=="
"resolved" "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/code-frame" "^7.12.13"
"@babel/parser" "^7.12.13"
"@babel/types" "^7.12.13"
"@babel/traverse@^7.0.0", "@babel/[email protected]":
"integrity" "sha512-3Zb4w7eE/OslI0fTp8c7b286/cQps3+vdLW3UcwC8VSJC6GbKn55aeVVu2QJNuCDoeKyptLOFrPq8WqZZBodyA=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/code-frame" "^7.12.13"
"@babel/generator" "^7.12.13"
"@babel/helper-function-name" "^7.12.13"
"@babel/helper-split-export-declaration" "^7.12.13"
"@babel/parser" "^7.12.13"
"@babel/types" "^7.12.13"
"debug" "^4.1.0"
"globals" "^11.1.0"
"lodash" "^4.17.19"
"@babel/traverse@^7.13.0":
"integrity" "sha512-CblEcwmXKR6eP43oQGG++0QMTtCjAsa3frUuzHoiIJWpaIIi8dwMyEFUJoXRLxagGqCK+jALRwIO+o3R9p/uUg=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.13.13.tgz"
"version" "7.13.13"
dependencies:
"@babel/code-frame" "^7.12.13"
"@babel/generator" "^7.13.9"
"@babel/helper-function-name" "^7.12.13"
"@babel/helper-split-export-declaration" "^7.12.13"
"@babel/parser" "^7.13.13"
"@babel/types" "^7.13.13"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/traverse@^7.13.13":
"integrity" "sha512-CblEcwmXKR6eP43oQGG++0QMTtCjAsa3frUuzHoiIJWpaIIi8dwMyEFUJoXRLxagGqCK+jALRwIO+o3R9p/uUg=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.13.13.tgz"
"version" "7.13.13"
dependencies:
"@babel/code-frame" "^7.12.13"
"@babel/generator" "^7.13.9"
"@babel/helper-function-name" "^7.12.13"
"@babel/helper-split-export-declaration" "^7.12.13"
"@babel/parser" "^7.13.13"
"@babel/types" "^7.13.13"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.0.0", "@babel/types@^7.12.1", "@babel/types@^7.12.13", "@babel/[email protected]":
"integrity" "sha512-oKrdZTld2im1z8bDwTOQvUbxKwE+854zc16qWZQlcTqMN00pWxHQ4ZeOq0yDMnisOpRykH2/5Qqcrk/OlbAjiQ=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/helper-validator-identifier" "^7.12.11"
"lodash" "^4.17.19"
"to-fast-properties" "^2.0.0"
"@babel/types@^7.13.0", "@babel/types@^7.13.13":
"integrity" "sha512-A2aa3QTkWoyqsZZFl56MLUsfmh7O0gN41IPvXAE/++8ojpbz12SszD7JEGYVdn4f9Kt4amIei07swF1h4AqmmQ=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.13.14.tgz"
"version" "7.13.14"
dependencies:
"@babel/helper-validator-identifier" "^7.12.11"
"lodash" "^4.17.19"
"to-fast-properties" "^2.0.0"
"@babel/types@^7.13.12", "@babel/types@^7.13.13":
"integrity" "sha512-A2aa3QTkWoyqsZZFl56MLUsfmh7O0gN41IPvXAE/++8ojpbz12SszD7JEGYVdn4f9Kt4amIei07swF1h4AqmmQ=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.13.14.tgz"
"version" "7.13.14"
dependencies:
"@babel/helper-validator-identifier" "^7.12.11"
"lodash" "^4.17.19"
"to-fast-properties" "^2.0.0"
"@babel/types@^7.13.13", "@babel/types@^7.13.14":
"integrity" "sha512-A2aa3QTkWoyqsZZFl56MLUsfmh7O0gN41IPvXAE/++8ojpbz12SszD7JEGYVdn4f9Kt4amIei07swF1h4AqmmQ=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.13.14.tgz"
"version" "7.13.14"
dependencies:
"@babel/helper-validator-identifier" "^7.12.11"
"lodash" "^4.17.19"
"to-fast-properties" "^2.0.0"
"@commitlint/cli@^12.0.1":
"integrity" "sha512-V+cMYNHJOr40XT9Kvz3Vrz1Eh7QE1rjQrUbifawDAqcOrBJFuoXwU2SAcRtYFCSqFy9EhbreQGhZFs8dYb90KA=="
"resolved" "https://registry.npmjs.org/@commitlint/cli/-/cli-12.0.1.tgz"
"version" "12.0.1"
dependencies:
"@commitlint/format" "^12.0.1"
"@commitlint/lint" "^12.0.1"
"@commitlint/load" "^12.0.1"
"@commitlint/read" "^12.0.1"
"@commitlint/types" "^12.0.1"
"get-stdin" "8.0.0"
"lodash" "^4.17.19"
"resolve-from" "5.0.0"
"resolve-global" "1.0.0"
"yargs" "^16.2.0"
"@commitlint/config-conventional@^12.0.1":
"integrity" "sha512-1ZhB135lh47zVmf1orwcjxuKuam11fJIH/bdVxW9XiQv8XPwC6iIp19knfl8FcOT78AVBnes1z6EVxgUeP2/4Q=="
"resolved" "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-12.0.1.tgz"
"version" "12.0.1"
dependencies:
"conventional-changelog-conventionalcommits" "^4.3.1"
"@commitlint/ensure@^12.0.1":
"integrity" "sha512-XdBq+q1YBBDxWIAEjE3Y1YMbzhUnUuSLAEWD8SU1xsvEpQXWRYwDlMBRkjO7funNWTdL0ZQSkZDzme70imYjbw=="
"resolved" "https://registry.npmjs.org/@commitlint/ensure/-/ensure-12.0.1.tgz"
"version" "12.0.1"
dependencies:
"@commitlint/types" "^12.0.1"
"lodash" "^4.17.19"
"@commitlint/execute-rule@^12.0.1":
"integrity" "sha512-JzyweYfZlFLtXpgP+btzSY3YAkGPg61TqUSYQqBr4+5IaVf1FruMm5v4D5eLu9dAJuNKUfHbM3AEfuEPiZ79pg=="
"resolved" "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-12.0.1.tgz"
"version" "12.0.1"
"@commitlint/format@^12.0.1":
"integrity" "sha512-rF79ipAxR8yFzPzG5tRoEZ//MRkyxCXj4JhpEjtdaCMBAXMssI8uazn3e5D8z4UFgSDe9qOnL0OmQvql7HTMoA=="
"resolved" "https://registry.npmjs.org/@commitlint/format/-/format-12.0.1.tgz"
"version" "12.0.1"
dependencies:
"@commitlint/types" "^12.0.1"
"chalk" "^4.0.0"
"@commitlint/is-ignored@^12.0.1":
"integrity" "sha512-AplfLn5mX/kWTIiSolcOhTYcgphuGLX8FUr+HmyHBEqUkO36jt0z9caysH47fqU71ePtH63v1DWm+RYQ5RPDjg=="
"resolved" "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-12.0.1.tgz"
"version" "12.0.1"
dependencies:
"@commitlint/types" "^12.0.1"
"semver" "7.3.4"
"@commitlint/lint@^12.0.1":
"integrity" "sha512-1lKyRCq4ahJrY+Xxo8LsqCbALeJkodtEfpmYHeA5HpPMnK7lRSplLqOLcTCjoPfd4vO+gl6aDEZN+ow3YGQBOg=="
"resolved" "https://registry.npmjs.org/@commitlint/lint/-/lint-12.0.1.tgz"
"version" "12.0.1"
dependencies:
"@commitlint/is-ignored" "^12.0.1"
"@commitlint/parse" "^12.0.1"
"@commitlint/rules" "^12.0.1"
"@commitlint/types" "^12.0.1"
"@commitlint/load@^12.0.1":
"integrity" "sha512-dX8KdCWn7w0bTkkk3zKQpe9X8vsTRa5EM+1ffF313wCX9b6tGa9vujhEHCkSzKAbbE2tFV64CHZygE7rtlHdIA=="
"resolved" "https://registry.npmjs.org/@commitlint/load/-/load-12.0.1.tgz"
"version" "12.0.1"
dependencies:
"@commitlint/execute-rule" "^12.0.1"
"@commitlint/resolve-extends" "^12.0.1"
"@commitlint/types" "^12.0.1"
"chalk" "^4.0.0"
"cosmiconfig" "^7.0.0"
"lodash" "^4.17.19"
"resolve-from" "^5.0.0"
"@commitlint/message@^12.0.1":
"integrity" "sha512-fXuoxRC+NT1wEQi6p8oHfT7wvWIRgTk+udlRJnWTjmMpiYzVnMmmZfasdShirWr4TtxQtMyL+5DVgh7Y98kURw=="
"resolved" "https://registry.npmjs.org/@commitlint/message/-/message-12.0.1.tgz"
"version" "12.0.1"
"@commitlint/parse@^12.0.1":
"integrity" "sha512-7oEGASmzBnHir5jSIR7KephXrKh7rIi9a6RpH1tOT+CIENYvhe8EDtIy29qMt+RLa2LlaPF7YrAgaJRfzG0YDQ=="
"resolved" "https://registry.npmjs.org/@commitlint/parse/-/parse-12.0.1.tgz"
"version" "12.0.1"
dependencies:
"@commitlint/types" "^12.0.1"
"conventional-changelog-angular" "^5.0.11"
"conventional-commits-parser" "^3.0.0"
"@commitlint/read@^12.0.1":
"integrity" "sha512-baa0YeD4QOctEuthLpExQSi9xPiw0kDPfUVHqp8I88iuIXJECeS8S1+1GBiz89e8dLN9zmEE+sN9vtJHdAp9YA=="
"resolved" "https://registry.npmjs.org/@commitlint/read/-/read-12.0.1.tgz"
"version" "12.0.1"
dependencies:
"@commitlint/top-level" "^12.0.1"
"@commitlint/types" "^12.0.1"
"fs-extra" "^9.0.0"
"git-raw-commits" "^2.0.0"
"@commitlint/resolve-extends@^12.0.1":
"integrity" "sha512-Mvg0GDi/68Cqw893ha8uhxE8myHfPmiSSSi7d1x4VJNR4hoS37lBdX89kyx4i9NPmLfviY2cUJKTyK8ZrFznZw=="
"resolved" "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-12.0.1.tgz"
"version" "12.0.1"
dependencies:
"import-fresh" "^3.0.0"
"lodash" "^4.17.19"
"resolve-from" "^5.0.0"
"resolve-global" "^1.0.0"
"@commitlint/rules@^12.0.1":
"integrity" "sha512-A5O0ubNGugZR9WWxk5IVOLo07lpdUwhG5WkAW2lYpgZ7Z/2U4PLob9b4Ih1eHbQu+gnVeFr91k7F0DrpM7B8EQ=="
"resolved" "https://registry.npmjs.org/@commitlint/rules/-/rules-12.0.1.tgz"
"version" "12.0.1"
dependencies:
"@commitlint/ensure" "^12.0.1"
"@commitlint/message" "^12.0.1"
"@commitlint/to-lines" "^12.0.1"
"@commitlint/types" "^12.0.1"
"@commitlint/to-lines@^12.0.1":
"integrity" "sha512-XwcJ1jY7x2fhudzbGMpNQkTSMVrxWrI8bRMbVe3Abuu7RfYpFf7VXAlhtnLfxBoagaK7RxjC2+eRidp/3txQBg=="
"resolved" "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-12.0.1.tgz"
"version" "12.0.1"
"@commitlint/top-level@^12.0.1":
"integrity" "sha512-rHdgt7U24GEau2/9i2vEAbksxkBRiVjHj5ECFL5dd0AJOIvaK++vMg4EF/ME0X/1yd9qVTHTNOl2Q4tTFK7VBQ=="
"resolved" "https://registry.npmjs.org/@commitlint/top-level/-/top-level-12.0.1.tgz"
"version" "12.0.1"
dependencies:
"find-up" "^5.0.0"
"@commitlint/types@^12.0.1":
"integrity" "sha512-FsNDMV0W7D19/ZbR412klpqAilXASx75Neqh7jPtK278IEwdukOg3vth1r5kTm+BjDScM7wMUEOwIW3NNfAtwg=="
"resolved" "https://registry.npmjs.org/@commitlint/types/-/types-12.0.1.tgz"
"version" "12.0.1"
dependencies:
"chalk" "^4.0.0"
"@endemolshinegroup/[email protected]":
"integrity" "sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA=="
"resolved" "https://registry.npmjs.org/@endemolshinegroup/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-3.0.2.tgz"
"version" "3.0.2"
dependencies:
"lodash.get" "^4"
"make-error" "^1"
"ts-node" "^9"
"tslib" "^2"
"@eslint/eslintrc@^0.4.0":
"integrity" "sha512-2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog=="
"resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.0.tgz"
"version" "0.4.0"
dependencies:
"ajv" "^6.12.4"
"debug" "^4.1.1"
"espree" "^7.3.0"
"globals" "^12.1.0"
"ignore" "^4.0.6"
"import-fresh" "^3.2.1"
"js-yaml" "^3.13.1"
"minimatch" "^3.0.4"
"strip-json-comments" "^3.1.1"
"@ethersproject/address@^5.1.0":
"integrity" "sha512-rfWQR12eHn2cpstCFS4RF7oGjfbkZb0oqep+BfrT+gWEGWG2IowJvIsacPOvzyS1jhNF4MQ4BS59B04Mbovteg=="
"resolved" "https://registry.npmjs.org/@ethersproject/address/-/address-5.1.0.tgz"
"version" "5.1.0"
dependencies:
"@ethersproject/bignumber" "^5.1.0"
"@ethersproject/bytes" "^5.1.0"
"@ethersproject/keccak256" "^5.1.0"
"@ethersproject/logger" "^5.1.0"
"@ethersproject/rlp" "^5.1.0"
"@ethersproject/bignumber@^5.1.0":
"integrity" "sha512-wUvQlhTjPjFXIdLPOuTrFeQmSa6Wvls1bGXQNQWvB/SEn1NsTCE8PmumIEZxmOPjSHl1eV2uyHP5jBm5Cgj92Q=="
"resolved" "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.1.0.tgz"
"version" "5.1.0"
dependencies:
"@ethersproject/bytes" "^5.1.0"
"@ethersproject/logger" "^5.1.0"
"bn.js" "^4.4.0"
"@ethersproject/bytes@^5.1.0":
"integrity" "sha512-sGTxb+LVjFxJcJeUswAIK6ncgOrh3D8c192iEJd7mLr95V6du119rRfYT/b87WPkZ5I3gRBUYIYXtdgCWACe8g=="
"resolved" "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.1.0.tgz"
"version" "5.1.0"
dependencies:
"@ethersproject/logger" "^5.1.0"
"@ethersproject/keccak256@^5.1.0":
"integrity" "sha512-vrTB1W6AEYoadww5c9UyVJ2YcSiyIUTNDRccZIgwTmFFoSHwBtcvG1hqy9RzJ1T0bMdATbM9Hfx2mJ6H0i7Hig=="
"resolved" "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.1.0.tgz"
"version" "5.1.0"
dependencies:
"@ethersproject/bytes" "^5.1.0"
"js-sha3" "0.5.7"
"@ethersproject/logger@^5.1.0":
"integrity" "sha512-wtUaD1lBX10HBXjjKV9VHCBnTdUaKQnQ2XSET1ezglqLdPdllNOIlLfhyCRqXm5xwcjExVI5ETokOYfjPtaAlw=="
"resolved" "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.1.0.tgz"
"version" "5.1.0"
"@ethersproject/rlp@^5.1.0":
"integrity" "sha512-vDTyHIwNPrecy55gKGZ47eJZhBm8LLBxihzi5ou+zrSvYTpkSTWRcKUlXFDFQVwfWB+P5PGyERAdiDEI76clxw=="
"resolved" "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.1.0.tgz"
"version" "5.1.0"
dependencies:
"@ethersproject/bytes" "^5.1.0"
"@ethersproject/logger" "^5.1.0"
"@graphql-codegen/cli@^1.21.3":
"integrity" "sha512-jwg0mKhseg0QI4/T4IQcttTBCZgnahiTWqnYWIK+E8nrbXCE9o2hxvaYin/Kq9+5oFtxDePED56cjVs/ESRw6g=="
"resolved" "https://registry.npmjs.org/@graphql-codegen/cli/-/cli-1.21.3.tgz"
"version" "1.21.3"
dependencies:
"@graphql-codegen/core" "1.17.9"
"@graphql-codegen/plugin-helpers" "^1.18.4"
"@graphql-tools/apollo-engine-loader" "^6"
"@graphql-tools/code-file-loader" "^6"
"@graphql-tools/git-loader" "^6"
"@graphql-tools/github-loader" "^6"
"@graphql-tools/graphql-file-loader" "^6"
"@graphql-tools/json-file-loader" "^6"
"@graphql-tools/load" "^6"
"@graphql-tools/prisma-loader" "^6"
"@graphql-tools/url-loader" "^6"
"@graphql-tools/utils" "^7.0.0"
"ansi-escapes" "^4.3.1"
"chalk" "^4.1.0"
"change-case-all" "1.0.12"
"chokidar" "^3.4.3"
"common-tags" "^1.8.0"
"cosmiconfig" "^7.0.0"
"debounce" "^1.2.0"
"dependency-graph" "^0.11.0"
"detect-indent" "^6.0.0"
"glob" "^7.1.6"
"graphql-config" "^3.2.0"
"indent-string" "^4.0.0"
"inquirer" "^7.3.3"
"is-glob" "^4.0.1"
"json-to-pretty-yaml" "^1.2.2"
"latest-version" "5.1.0"
"listr" "^0.14.3"
"listr-update-renderer" "^0.5.0"
"log-symbols" "^4.0.0"
"minimatch" "^3.0.4"
"mkdirp" "^1.0.4"
"string-env-interpolation" "^1.0.1"
"ts-log" "^2.2.3"
"tslib" "~2.1.0"
"valid-url" "^1.0.9"
"wrap-ansi" "^7.0.0"
"yaml" "^1.10.0"
"yargs" "^16.1.1"
"@graphql-codegen/[email protected]":
"integrity" "sha512-7nwy+bMWqb0iYJ2DKxA9UiE16meeJ2Ch2XWS/N/ZnA0snTR+GZ20USI8z6YqP1Fuist7LvGO1MbitO2qBT8raA=="
"resolved" "https://registry.npmjs.org/@graphql-codegen/core/-/core-1.17.9.tgz"
"version" "1.17.9"
dependencies:
"@graphql-codegen/plugin-helpers" "^1.18.2"
"@graphql-tools/merge" "^6"
"@graphql-tools/utils" "^6"
"tslib" "~2.0.1"
"@graphql-codegen/plugin-helpers@^1.18.2", "@graphql-codegen/plugin-helpers@^1.18.3", "@graphql-codegen/plugin-helpers@^1.18.4":
"integrity" "sha512-dpfhUmn9GOS8ByoOPIN3V4Nn9HX7sl9NR7Hf26TgN6Clg7cQvkT6XjHdS2e56Q3kWrxZT1zJ1sEa67D3tj9ZtQ=="
"resolved" "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-1.18.4.tgz"
"version" "1.18.4"
dependencies:
"@graphql-tools/utils" "^7.0.0"
"common-tags" "1.8.0"
"import-from" "3.0.0"
"lodash" "~4.17.20"
"tslib" "~2.1.0"
"@graphql-codegen/typescript-operations@^1.17.11":
"integrity" "sha512-HStWj3mUe+0ir2J0jqgjegrvcO1DIe2gzsoBBo9RHIYwyaxedUivxXvWY9XBfKpHv6sLa/ST1iYGeedrJELPtw=="
"resolved" "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-1.17.15.tgz"
"version" "1.17.15"
dependencies:
"@graphql-codegen/plugin-helpers" "^1.18.3"
"@graphql-codegen/typescript" "^1.21.1"
"@graphql-codegen/visitor-plugin-common" "^1.19.0"
"auto-bind" "~4.0.0"
"tslib" "~2.1.0"
"@graphql-codegen/typescript@^1.17.11", "@graphql-codegen/typescript@^1.21.1":
"integrity" "sha512-JF6Vsu5HSv3dAoS2ca3PFLUN0qVxotex/+BgWw/6SKhtd83MUPnzJ/RU3lACg4vuNTCWeQSeGvg8x5qrw9Go9w=="
"resolved" "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-1.21.1.tgz"
"version" "1.21.1"
dependencies:
"@graphql-codegen/plugin-helpers" "^1.18.3"
"@graphql-codegen/visitor-plugin-common" "^1.19.0"
"auto-bind" "~4.0.0"
"tslib" "~2.1.0"
"@graphql-codegen/visitor-plugin-common@^1.19.0":
"integrity" "sha512-MJZXe5vXxV6PLOgHhQoz93gnjzJtbnVQXQKqVEcbyB9W8ImoKuTHsEf/eJ6yCL79f7X/2dnOOM84d5Osh1eaKg=="
"resolved" "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-1.19.1.tgz"
"version" "1.19.1"
dependencies:
"@graphql-codegen/plugin-helpers" "^1.18.4"
"@graphql-tools/optimize" "^1.0.1"
"@graphql-tools/relay-operation-optimizer" "^6"
"array.prototype.flatmap" "^1.2.4"
"auto-bind" "~4.0.0"
"change-case-all" "1.0.12"
"dependency-graph" "^0.11.0"
"graphql-tag" "^2.11.0"
"parse-filepath" "^1.0.2"
"tslib" "~2.1.0"
"@graphql-tools/apollo-engine-loader@^6":
"integrity" "sha512-CE4uef6PyxtSG+7OnLklIr2BZZDgjO89ZXK47EKdY7jQy/BQD/9o+8SxPsgiBc+2NsDJH2I6P/nqoaJMOEat6g=="
"resolved" "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-6.2.5.tgz"
"version" "6.2.5"
dependencies:
"@graphql-tools/utils" "^7.0.0"
"cross-fetch" "3.0.6"
"tslib" "~2.0.1"
"@graphql-tools/batch-execute@^7.1.0":
"integrity" "sha512-Yb4QRpHZqDk24+T4K3ARk/KFU26Dyl30XcbYeVvIrgIKcmeON/p3DfSeiB0+MaxYlsv+liQKvlxNbeC2hD31pA=="
"resolved" "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-7.1.0.tgz"
"version" "7.1.0"
dependencies:
"@graphql-tools/utils" "^7.7.0"
"dataloader" "2.0.0"
"is-promise" "4.0.0"
"tslib" "~2.1.0"
"@graphql-tools/code-file-loader@^6":
"integrity" "sha512-ZJimcm2ig+avgsEOWWVvAaxZrXXhiiSZyYYOJi0hk9wh5BxZcLUNKkTp6EFnZE/jmGUwuos3pIjUD3Hwi3Bwhg=="
"resolved" "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-6.3.1.tgz"
"version" "6.3.1"
dependencies:
"@graphql-tools/graphql-tag-pluck" "^6.5.1"
"@graphql-tools/utils" "^7.0.0"
"tslib" "~2.1.0"
"@graphql-tools/delegate@^7.0.1", "@graphql-tools/delegate@^7.0.7":
"integrity" "sha512-+uV0KZPI070sEykf3uxy+AhirHOqZnqbVqTqcfhH8/97+vdoLPE5oVceCTvMQsC7bDapbcbNiwcpYd8T6OQ4KQ=="
"resolved" "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-7.1.1.tgz"
"version" "7.1.1"
dependencies:
"@ardatan/aggregate-error" "0.0.6"
"@graphql-tools/batch-execute" "^7.1.0"
"@graphql-tools/schema" "^7.0.0"
"@graphql-tools/utils" "^7.7.1"
"dataloader" "2.0.0"
"is-promise" "4.0.0"
"tslib" "~2.1.0"
"@graphql-tools/git-loader@^6":
"integrity" "sha512-ooQTt2CaG47vEYPP3CPD+nbA0F+FYQXfzrB1Y1ABN9K3d3O2RK3g8qwslzZaI8VJQthvKwt0A95ZeE4XxteYfw=="
"resolved" "https://registry.npmjs.org/@graphql-tools/git-loader/-/git-loader-6.2.6.tgz"
"version" "6.2.6"
dependencies:
"@graphql-tools/graphql-tag-pluck" "^6.2.6"
"@graphql-tools/utils" "^7.0.0"
"tslib" "~2.1.0"
"@graphql-tools/github-loader@^6":
"integrity" "sha512-DLuQmYeNNdPo8oWus8EePxWCfCAyUXPZ/p1PWqjrX/NGPyH2ZObdqtDAfRHztljt0F/qkBHbGHCEk2TKbRZTRw=="
"resolved" "https://registry.npmjs.org/@graphql-tools/github-loader/-/github-loader-6.2.5.tgz"
"version" "6.2.5"
dependencies:
"@graphql-tools/graphql-tag-pluck" "^6.2.6"
"@graphql-tools/utils" "^7.0.0"
"cross-fetch" "3.0.6"
"tslib" "~2.0.1"
"@graphql-tools/graphql-file-loader@^6", "@graphql-tools/graphql-file-loader@^6.0.0":
"integrity" "sha512-5k2SNz0W87tDcymhEMZMkd6/vs6QawDyjQXWtqkuLTBF3vxjxPD1I4dwHoxgWPIjjANhXybvulD7E+St/7s9TQ=="
"resolved" "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-6.2.7.tgz"
"version" "6.2.7"
dependencies:
"@graphql-tools/import" "^6.2.6"
"@graphql-tools/utils" "^7.0.0"
"tslib" "~2.1.0"
"@graphql-tools/graphql-tag-pluck@^6.2.6", "@graphql-tools/graphql-tag-pluck@^6.5.1":
"integrity" "sha512-7qkm82iFmcpb8M6/yRgzjShtW6Qu2OlCSZp8uatA3J0eMl87TxyJoUmL3M3UMMOSundAK8GmoyNVFUrueueV5Q=="
"resolved" "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-6.5.1.tgz"
"version" "6.5.1"
dependencies:
"@babel/parser" "7.12.16"
"@babel/traverse" "7.12.13"
"@babel/types" "7.12.13"
"@graphql-tools/utils" "^7.0.0"
"tslib" "~2.1.0"
"@graphql-tools/import@^6.2.6":
"integrity" "sha512-zmaVhJ3UPjzJSb005Pjn2iWvH+9AYRXI4IUiTi14uPupiXppJP3s7S25Si3+DbHpFwurDF2nWRxBLiFPWudCqw=="
"resolved" "https://registry.npmjs.org/@graphql-tools/import/-/import-6.3.0.tgz"
"version" "6.3.0"
dependencies:
"resolve-from" "5.0.0"
"tslib" "~2.1.0"
"@graphql-tools/json-file-loader@^6", "@graphql-tools/json-file-loader@^6.0.0":
"integrity" "sha512-CnfwBSY5926zyb6fkDBHnlTblHnHI4hoBALFYXnrg0Ev4yWU8B04DZl/pBRUc459VNgO2x8/mxGIZj2hPJG1EA=="
"resolved" "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-6.2.6.tgz"
"version" "6.2.6"
dependencies:
"@graphql-tools/utils" "^7.0.0"
"tslib" "~2.0.1"
"@graphql-tools/load@^6", "@graphql-tools/load@^6.0.0":
"integrity" "sha512-b1qWjki1y/QvGtoqW3x8bcwget7xmMfLGsvGFWOB6m38tDbzVT3GlJViAC0nGPDks9OCoJzAdi5IYEkBaqH5GQ=="
"resolved" "https://registry.npmjs.org/@graphql-tools/load/-/load-6.2.7.tgz"
"version" "6.2.7"
dependencies:
"@graphql-tools/merge" "^6.2.9"
"@graphql-tools/utils" "^7.5.0"
"globby" "11.0.2"
"import-from" "3.0.0"
"is-glob" "4.0.1"
"p-limit" "3.1.0"
"tslib" "~2.1.0"
"unixify" "1.0.0"
"valid-url" "1.0.9"
"@graphql-tools/merge@^6", "@graphql-tools/merge@^6.0.0", "@graphql-tools/merge@^6.2.9":
"integrity" "sha512-temQABWkDTZb/qJwcIdrEbyJ5WkhaWZQeYxiuxGqZWlIOoFkYfqzfAP2qKl2Ry+ZkN+Q/Yozr1/ap//xjpwAlA=="
"resolved" "https://registry.npmjs.org/@graphql-tools/merge/-/merge-6.2.11.tgz"
"version" "6.2.11"
dependencies:
"@graphql-tools/schema" "^7.0.0"
"@graphql-tools/utils" "^7.7.0"
"tslib" "~2.1.0"
"@graphql-tools/optimize@^1.0.1":
"integrity" "sha512-cRlUNsbErYoBtzzS6zXahXeTBZGPVlPHXCpnEZ0XiK/KY/sQL96cyzak0fM/Gk6qEI9/l32MYEICjasiBQrl5w=="
"resolved" "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"tslib" "~2.0.1"
"@graphql-tools/prisma-loader@^6":
"integrity" "sha512-9V3W/kzsFBmUQqOsd96V4a4k7Didz66yh/IK89B1/rrvy9rYj+ULjEqR73x9BYZ+ww9FV8yP8LasWAJwWaqqJQ=="
"resolved" "https://registry.npmjs.org/@graphql-tools/prisma-loader/-/prisma-loader-6.3.0.tgz"
"version" "6.3.0"
dependencies:
"@graphql-tools/url-loader" "^6.8.2"
"@graphql-tools/utils" "^7.0.0"
"@types/http-proxy-agent" "^2.0.2"
"@types/js-yaml" "^4.0.0"
"@types/json-stable-stringify" "^1.0.32"
"@types/jsonwebtoken" "^8.5.0"
"chalk" "^4.1.0"
"debug" "^4.3.1"
"dotenv" "^8.2.0"
"graphql-request" "^3.3.0"
"http-proxy-agent" "^4.0.1"
"https-proxy-agent" "^5.0.0"
"isomorphic-fetch" "^3.0.0"
"js-yaml" "^4.0.0"
"json-stable-stringify" "^1.0.1"
"jsonwebtoken" "^8.5.1"
"lodash" "^4.17.20"
"replaceall" "^0.1.6"
"scuid" "^1.1.0"
"tslib" "~2.1.0"
"yaml-ast-parser" "^0.0.43"