-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
6992 lines (6060 loc) · 290 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
"-@^0.0.1":
"integrity" "sha512-3HfneK3DGAm05fpyj20sT3apkNcvPpCuccOThOPdzz8sY7GgQGe0l93XH9bt+YzibcTIgUAIMoyVJI740RtgyQ=="
"resolved" "https://registry.npmjs.org/-/-/--0.0.1.tgz"
"version" "0.0.1"
"@ampproject/remapping@^2.1.0":
"integrity" "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w=="
"resolved" "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz"
"version" "2.2.0"
dependencies:
"@jridgewell/gen-mapping" "^0.1.0"
"@jridgewell/trace-mapping" "^0.3.9"
"@apollo/client@^3.7.1":
"integrity" "sha512-xu5M/l7p9gT9Fx7nF3AQivp0XukjB7TM7tOd5wifIpI8RskYveL4I+rpTijzWrnqCPZabkbzJKH7WEAKdctt9w=="
"resolved" "https://registry.npmjs.org/@apollo/client/-/client-3.7.1.tgz"
"version" "3.7.1"
dependencies:
"@graphql-typed-document-node/core" "^3.1.1"
"@wry/context" "^0.7.0"
"@wry/equality" "^0.5.0"
"@wry/trie" "^0.3.0"
"graphql-tag" "^2.12.6"
"hoist-non-react-statics" "^3.3.2"
"optimism" "^0.16.1"
"prop-types" "^15.7.2"
"response-iterator" "^0.2.6"
"symbol-observable" "^4.0.0"
"ts-invariant" "^0.10.3"
"tslib" "^2.3.0"
"zen-observable-ts" "^1.2.5"
"@ardatan/[email protected]":
"integrity" "sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q=="
"resolved" "https://registry.npmjs.org/@ardatan/relay-compiler/-/relay-compiler-12.0.0.tgz"
"version" "12.0.0"
dependencies:
"@babel/core" "^7.14.0"
"@babel/generator" "^7.14.0"
"@babel/parser" "^7.14.0"
"@babel/runtime" "^7.0.0"
"@babel/traverse" "^7.14.0"
"@babel/types" "^7.0.0"
"babel-preset-fbjs" "^3.4.0"
"chalk" "^4.0.0"
"fb-watchman" "^2.0.0"
"fbjs" "^3.0.0"
"glob" "^7.1.1"
"immutable" "~3.7.6"
"invariant" "^2.2.4"
"nullthrows" "^1.1.1"
"relay-runtime" "12.0.0"
"signedsource" "^1.0.0"
"yargs" "^15.3.1"
"@ardatan/[email protected]":
"integrity" "sha512-xhlTqH0m31mnsG0tIP4ETgfSB6gXDaYYsUWTrlUV93fFQPI9dd8hE0Ot6MHLCtqgB32hwJAC3YZMWlXZw7AleA=="
"resolved" "https://registry.npmjs.org/@ardatan/sync-fetch/-/sync-fetch-0.0.1.tgz"
"version" "0.0.1"
dependencies:
"node-fetch" "^2.6.1"
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.18.6":
"integrity" "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/highlight" "^7.18.6"
"@babel/compat-data@^7.20.0", "@babel/compat-data@^7.20.1":
"integrity" "sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ=="
"resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.1.tgz"
"version" "7.20.1"
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.14.0":
"integrity" "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz"
"version" "7.20.2"
dependencies:
"@ampproject/remapping" "^2.1.0"
"@babel/code-frame" "^7.18.6"
"@babel/generator" "^7.20.2"
"@babel/helper-compilation-targets" "^7.20.0"
"@babel/helper-module-transforms" "^7.20.2"
"@babel/helpers" "^7.20.1"
"@babel/parser" "^7.20.2"
"@babel/template" "^7.18.10"
"@babel/traverse" "^7.20.1"
"@babel/types" "^7.20.2"
"convert-source-map" "^1.7.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.2.1"
"semver" "^6.3.0"
"@babel/generator@^7.14.0", "@babel/generator@^7.18.13", "@babel/generator@^7.20.1", "@babel/generator@^7.20.2":
"integrity" "sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.20.4.tgz"
"version" "7.20.4"
dependencies:
"@babel/types" "^7.20.2"
"@jridgewell/gen-mapping" "^0.3.2"
"jsesc" "^2.5.1"
"@babel/helper-annotate-as-pure@^7.18.6":
"integrity" "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA=="
"resolved" "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/types" "^7.18.6"
"@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.0":
"integrity" "sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz"
"version" "7.20.0"
dependencies:
"@babel/compat-data" "^7.20.0"
"@babel/helper-validator-option" "^7.18.6"
"browserslist" "^4.21.3"
"semver" "^6.3.0"
"@babel/helper-create-class-features-plugin@^7.18.6":
"integrity" "sha512-k22GoYRAHPYr9I+Gvy2ZQlAe5mGy8BqWst2wRt8cwIufWTxrsVshhIBvYNqC80N0GSFWTsqRVexOtfzlgOEDvA=="
"resolved" "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.2.tgz"
"version" "7.20.2"
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-function-name" "^7.19.0"
"@babel/helper-member-expression-to-functions" "^7.18.9"
"@babel/helper-optimise-call-expression" "^7.18.6"
"@babel/helper-replace-supers" "^7.19.1"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/helper-environment-visitor@^7.18.9":
"integrity" "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg=="
"resolved" "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz"
"version" "7.18.9"
"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0":
"integrity" "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w=="
"resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz"
"version" "7.19.0"
dependencies:
"@babel/template" "^7.18.10"
"@babel/types" "^7.19.0"
"@babel/helper-hoist-variables@^7.18.6":
"integrity" "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q=="
"resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/types" "^7.18.6"
"@babel/helper-member-expression-to-functions@^7.18.9":
"integrity" "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg=="
"resolved" "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz"
"version" "7.18.9"
dependencies:
"@babel/types" "^7.18.9"
"@babel/helper-module-imports@^7.18.6":
"integrity" "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/types" "^7.18.6"
"@babel/helper-module-transforms@^7.19.6", "@babel/helper-module-transforms@^7.20.2":
"integrity" "sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz"
"version" "7.20.2"
dependencies:
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-module-imports" "^7.18.6"
"@babel/helper-simple-access" "^7.20.2"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/helper-validator-identifier" "^7.19.1"
"@babel/template" "^7.18.10"
"@babel/traverse" "^7.20.1"
"@babel/types" "^7.20.2"
"@babel/helper-optimise-call-expression@^7.18.6":
"integrity" "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA=="
"resolved" "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/types" "^7.18.6"
"@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.8.0":
"integrity" "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz"
"version" "7.20.2"
"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.19.1":
"integrity" "sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw=="
"resolved" "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz"
"version" "7.19.1"
dependencies:
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-member-expression-to-functions" "^7.18.9"
"@babel/helper-optimise-call-expression" "^7.18.6"
"@babel/traverse" "^7.19.1"
"@babel/types" "^7.19.0"
"@babel/helper-simple-access@^7.19.4", "@babel/helper-simple-access@^7.20.2":
"integrity" "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA=="
"resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz"
"version" "7.20.2"
dependencies:
"@babel/types" "^7.20.2"
"@babel/helper-skip-transparent-expression-wrappers@^7.18.9":
"integrity" "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg=="
"resolved" "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz"
"version" "7.20.0"
dependencies:
"@babel/types" "^7.20.0"
"@babel/helper-split-export-declaration@^7.18.6":
"integrity" "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA=="
"resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/types" "^7.18.6"
"@babel/helper-string-parser@^7.19.4":
"integrity" "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw=="
"resolved" "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz"
"version" "7.19.4"
"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1":
"integrity" "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz"
"version" "7.19.1"
"@babel/helper-validator-option@^7.18.6":
"integrity" "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz"
"version" "7.18.6"
"@babel/helpers@^7.20.1":
"integrity" "sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg=="
"resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.1.tgz"
"version" "7.20.1"
dependencies:
"@babel/template" "^7.18.10"
"@babel/traverse" "^7.20.1"
"@babel/types" "^7.20.0"
"@babel/highlight@^7.18.6":
"integrity" "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-validator-identifier" "^7.18.6"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/parser@^7.14.0", "@babel/parser@^7.16.8", "@babel/parser@^7.18.10", "@babel/parser@^7.20.1", "@babel/parser@^7.20.2":
"integrity" "sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.20.3.tgz"
"version" "7.20.3"
"@babel/plugin-proposal-class-properties@^7.0.0":
"integrity" "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-create-class-features-plugin" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-proposal-object-rest-spread@^7.0.0":
"integrity" "sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.2.tgz"
"version" "7.20.2"
dependencies:
"@babel/compat-data" "^7.20.1"
"@babel/helper-compilation-targets" "^7.20.0"
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-syntax-object-rest-spread" "^7.8.3"
"@babel/plugin-transform-parameters" "^7.20.1"
"@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.18.6":
"integrity" "sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.18.6":
"integrity" "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@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-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-block-scoped-functions@^7.0.0":
"integrity" "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-block-scoping@^7.0.0":
"integrity" "sha512-y5V15+04ry69OV2wULmwhEA6jwSWXO1TwAtIwiPXcvHcoOQUqpyMVd2bDsQJMW8AurjulIyUV8kDqtjSwHy1uQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.2.tgz"
"version" "7.20.2"
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-transform-classes@^7.0.0":
"integrity" "sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.2.tgz"
"version" "7.20.2"
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
"@babel/helper-compilation-targets" "^7.20.0"
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-function-name" "^7.19.0"
"@babel/helper-optimise-call-expression" "^7.18.6"
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/helper-replace-supers" "^7.19.1"
"@babel/helper-split-export-declaration" "^7.18.6"
"globals" "^11.1.0"
"@babel/plugin-transform-computed-properties@^7.0.0":
"integrity" "sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz"
"version" "7.18.9"
dependencies:
"@babel/helper-plugin-utils" "^7.18.9"
"@babel/plugin-transform-destructuring@^7.0.0":
"integrity" "sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.2.tgz"
"version" "7.20.2"
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-transform-flow-strip-types@^7.0.0":
"integrity" "sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz"
"version" "7.19.0"
dependencies:
"@babel/helper-plugin-utils" "^7.19.0"
"@babel/plugin-syntax-flow" "^7.18.6"
"@babel/plugin-transform-for-of@^7.0.0":
"integrity" "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz"
"version" "7.18.8"
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-function-name@^7.0.0":
"integrity" "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz"
"version" "7.18.9"
dependencies:
"@babel/helper-compilation-targets" "^7.18.9"
"@babel/helper-function-name" "^7.18.9"
"@babel/helper-plugin-utils" "^7.18.9"
"@babel/plugin-transform-literals@^7.0.0":
"integrity" "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz"
"version" "7.18.9"
dependencies:
"@babel/helper-plugin-utils" "^7.18.9"
"@babel/plugin-transform-member-expression-literals@^7.0.0":
"integrity" "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-modules-commonjs@^7.0.0":
"integrity" "sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.19.6.tgz"
"version" "7.19.6"
dependencies:
"@babel/helper-module-transforms" "^7.19.6"
"@babel/helper-plugin-utils" "^7.19.0"
"@babel/helper-simple-access" "^7.19.4"
"@babel/plugin-transform-object-super@^7.0.0":
"integrity" "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/helper-replace-supers" "^7.18.6"
"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.1":
"integrity" "sha512-oZg/Fpx0YDrj13KsLyO8I/CX3Zdw7z0O9qOd95SqcoIzuqy/WTGWvePeHAnZCN54SfdyjHcb1S30gc8zlzlHcA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.3.tgz"
"version" "7.20.3"
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-transform-property-literals@^7.0.0":
"integrity" "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-react-display-name@^7.0.0":
"integrity" "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-react-jsx@^7.0.0":
"integrity" "sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.19.0.tgz"
"version" "7.19.0"
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
"@babel/helper-module-imports" "^7.18.6"
"@babel/helper-plugin-utils" "^7.19.0"
"@babel/plugin-syntax-jsx" "^7.18.6"
"@babel/types" "^7.19.0"
"@babel/plugin-transform-shorthand-properties@^7.0.0":
"integrity" "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz"
"version" "7.18.6"
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-spread@^7.0.0":
"integrity" "sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.19.0.tgz"
"version" "7.19.0"
dependencies:
"@babel/helper-plugin-utils" "^7.19.0"
"@babel/helper-skip-transparent-expression-wrappers" "^7.18.9"
"@babel/plugin-transform-template-literals@^7.0.0":
"integrity" "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz"
"version" "7.18.9"
dependencies:
"@babel/helper-plugin-utils" "^7.18.9"
"@babel/runtime-corejs3@^7.10.2":
"integrity" "sha512-j2vJGnkopRzH+ykJ8h68wrHnEUmtK//E723jjixiAl/PPf6FhqY/vYRcMVlNydRKQjQsTsYEjpx+DZMIvnGk/g=="
"resolved" "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.19.1.tgz"
"version" "7.19.1"
dependencies:
"core-js-pure" "^3.25.1"
"regenerator-runtime" "^0.13.4"
"@babel/runtime@^7.0.0", "@babel/runtime@^7.10.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.15.4", "@babel/runtime@^7.16.3", "@babel/runtime@^7.18.9", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.2", "@babel/runtime@^7.7.2":
"integrity" "sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.1.tgz"
"version" "7.20.1"
dependencies:
"regenerator-runtime" "^0.13.10"
"@babel/template@^7.15.4", "@babel/template@^7.18.10":
"integrity" "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA=="
"resolved" "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz"
"version" "7.18.10"
dependencies:
"@babel/code-frame" "^7.18.6"
"@babel/parser" "^7.18.10"
"@babel/types" "^7.18.10"
"@babel/traverse@^7.14.0", "@babel/traverse@^7.16.8", "@babel/traverse@^7.19.1", "@babel/traverse@^7.20.1":
"integrity" "sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.1.tgz"
"version" "7.20.1"
dependencies:
"@babel/code-frame" "^7.18.6"
"@babel/generator" "^7.20.1"
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-function-name" "^7.19.0"
"@babel/helper-hoist-variables" "^7.18.6"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/parser" "^7.20.1"
"@babel/types" "^7.20.0"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.0.0", "@babel/types@^7.16.8", "@babel/types@^7.18.10", "@babel/types@^7.18.13", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.20.2":
"integrity" "sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.20.2.tgz"
"version" "7.20.2"
dependencies:
"@babel/helper-string-parser" "^7.19.4"
"@babel/helper-validator-identifier" "^7.19.1"
"to-fast-properties" "^2.0.0"
"@colors/[email protected]":
"integrity" "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ=="
"resolved" "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz"
"version" "1.5.0"
"@cspotcode/source-map-support@^0.8.0":
"integrity" "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw=="
"resolved" "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz"
"version" "0.8.1"
dependencies:
"@jridgewell/trace-mapping" "0.3.9"
"@cypress/request@^2.88.10":
"integrity" "sha512-M83/wfQ1EkspjkE2lNWNV5ui2Cv7UCv1swW1DqljahbzLVWltcsexQh8jYtuS/vzFXP+HySntGM83ZXA9fn17w=="
"resolved" "https://registry.npmjs.org/@cypress/request/-/request-2.88.11.tgz"
"version" "2.88.11"
dependencies:
"aws-sign2" "~0.7.0"
"aws4" "^1.8.0"
"caseless" "~0.12.0"
"combined-stream" "~1.0.6"
"extend" "~3.0.2"
"forever-agent" "~0.6.1"
"form-data" "~2.3.2"
"http-signature" "~1.3.6"
"is-typedarray" "~1.0.0"
"isstream" "~0.1.2"
"json-stringify-safe" "~5.0.1"
"mime-types" "~2.1.19"
"performance-now" "^2.1.0"
"qs" "~6.10.3"
"safe-buffer" "^5.1.2"
"tough-cookie" "~2.5.0"
"tunnel-agent" "^0.6.0"
"uuid" "^8.3.2"
"@cypress/xvfb@^1.2.4":
"integrity" "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q=="
"resolved" "https://registry.npmjs.org/@cypress/xvfb/-/xvfb-1.2.4.tgz"
"version" "1.2.4"
dependencies:
"debug" "^3.1.0"
"lodash.once" "^4.1.1"
"@eslint/eslintrc@^1.3.2":
"integrity" "sha512-AXYd23w1S/bv3fTs3Lz0vjiYemS08jWkI3hYyS9I1ry+0f+Yjs1wm+sU0BS8qDOPrBIkp4qHYC16I8uVtpLajQ=="
"resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.2.tgz"
"version" "1.3.2"
dependencies:
"ajv" "^6.12.4"
"debug" "^4.3.2"
"espree" "^9.4.0"
"globals" "^13.15.0"
"ignore" "^5.2.0"
"import-fresh" "^3.2.1"
"js-yaml" "^4.1.0"
"minimatch" "^3.1.2"
"strip-json-comments" "^3.1.1"
"@graphql-codegen/add@^3.2.1":
"integrity" "sha512-w82H/evh8SSGoD3K6K/Oh3kqSdbuU+TgHqMYmmHFxtH692v2xhN/cu1s/TotBQ7r4mO7OQutze7dde2tZEXGEQ=="
"resolved" "https://registry.npmjs.org/@graphql-codegen/add/-/add-3.2.1.tgz"
"version" "3.2.1"
dependencies:
"@graphql-codegen/plugin-helpers" "^2.6.2"
"tslib" "~2.4.0"
"@graphql-codegen/[email protected]":
"integrity" "sha512-PJF36a1i6M7Btj1kB4PWWzBUO3u2BJzsd/6KXxRmEugcxrbaCnbTDDktopy0CZYKdqaFbXaowwbRY8Tk8DV99Q=="
"resolved" "https://registry.npmjs.org/@graphql-codegen/cli/-/cli-2.13.11.tgz"
"version" "2.13.11"
dependencies:
"@babel/generator" "^7.18.13"
"@babel/template" "^7.18.10"
"@babel/types" "^7.18.13"
"@graphql-codegen/core" "2.6.5"
"@graphql-codegen/plugin-helpers" "^2.7.2"
"@graphql-tools/apollo-engine-loader" "^7.3.6"
"@graphql-tools/code-file-loader" "^7.3.1"
"@graphql-tools/git-loader" "^7.2.1"
"@graphql-tools/github-loader" "^7.3.6"
"@graphql-tools/graphql-file-loader" "^7.5.0"
"@graphql-tools/json-file-loader" "^7.4.1"
"@graphql-tools/load" "7.8.0"
"@graphql-tools/prisma-loader" "^7.2.7"
"@graphql-tools/url-loader" "^7.13.2"
"@graphql-tools/utils" "^8.9.0"
"@whatwg-node/fetch" "^0.3.0"
"ansi-escapes" "^4.3.1"
"chalk" "^4.1.0"
"chokidar" "^3.5.2"
"cosmiconfig" "^7.0.0"
"cosmiconfig-typescript-loader" "4.1.1"
"debounce" "^1.2.0"
"detect-indent" "^6.0.0"
"graphql-config" "4.3.6"
"inquirer" "^8.0.0"
"is-glob" "^4.0.1"
"json-to-pretty-yaml" "^1.2.2"
"listr2" "^4.0.5"
"log-symbols" "^4.0.0"
"mkdirp" "^1.0.4"
"shell-quote" "^1.7.3"
"string-env-interpolation" "^1.0.1"
"ts-log" "^2.2.3"
"tslib" "^2.4.0"
"yaml" "^1.10.0"
"yargs" "^17.0.0"
"@graphql-codegen/[email protected]":
"integrity" "sha512-u4h6X1AcaN93dItnvQEtQjSTpth140Ceac2W3gUNR3IWfFGKLr9HvjNsiIteIFulcUJvLdIAVTfbnO8MUC1Twg=="
"resolved" "https://registry.npmjs.org/@graphql-codegen/client-preset/-/client-preset-1.1.3.tgz"
"version" "1.1.3"
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/template" "^7.15.4"
"@graphql-codegen/add" "^3.2.1"
"@graphql-codegen/gql-tag-operations" "1.5.6"
"@graphql-codegen/plugin-helpers" "^2.7.2"
"@graphql-codegen/typed-document-node" "^2.3.6"
"@graphql-codegen/typescript" "^2.8.1"
"@graphql-codegen/typescript-operations" "^2.5.6"
"@graphql-codegen/visitor-plugin-common" "^2.13.1"
"@graphql-tools/utils" "^8.8.0"
"@graphql-typed-document-node/core" "3.1.1"
"tslib" "~2.4.0"
"@graphql-codegen/[email protected]":
"integrity" "sha512-oSbM8vINFxcV1GUasJTDIemMpEG1t6NkBG8odQCt/3ZExCYmoviHhG9vJB89QqJeU5W06qQB6SJn/dg/gv5Aqg=="
"resolved" "https://registry.npmjs.org/@graphql-codegen/core/-/core-2.6.5.tgz"
"version" "2.6.5"
dependencies:
"@graphql-codegen/plugin-helpers" "^2.7.2"
"@graphql-tools/schema" "^9.0.0"
"@graphql-tools/utils" "9.0.0"
"tslib" "~2.4.0"
"@graphql-codegen/[email protected]":
"integrity" "sha512-SUeiBnVbV893paHud0Tr05hbZUMBeig6zcDoOw+9xoEivJUlCorOCXB3dXuUoRj+npOMH01IaFeGRbdiMm/RQg=="
"resolved" "https://registry.npmjs.org/@graphql-codegen/gql-tag-operations/-/gql-tag-operations-1.5.6.tgz"
"version" "1.5.6"
dependencies:
"@graphql-codegen/plugin-helpers" "^2.7.2"
"@graphql-codegen/visitor-plugin-common" "2.13.1"
"@graphql-tools/utils" "^8.8.0"
"auto-bind" "~4.0.0"
"tslib" "~2.4.0"
"@graphql-codegen/[email protected]":
"integrity" "sha512-083tu9rSLL0k9LrAyGt1AjGQI/O9gX3w1UliaufLc3mofDSt7iV04tT9VJRuk4IoBvyPZ/8YCs5zIpmt/GexPA=="
"resolved" "https://registry.npmjs.org/@graphql-codegen/introspection/-/introspection-2.2.1.tgz"
"version" "2.2.1"
dependencies:
"@graphql-codegen/plugin-helpers" "^2.6.2"
"@graphql-codegen/visitor-plugin-common" "^2.12.1"
"tslib" "~2.4.0"
"@graphql-codegen/plugin-helpers@^2.6.2", "@graphql-codegen/plugin-helpers@^2.7.2":
"integrity" "sha512-kln2AZ12uii6U59OQXdjLk5nOlh1pHis1R98cDZGFnfaiAbX9V3fxcZ1MMJkB7qFUymTALzyjZoXXdyVmPMfRg=="
"resolved" "https://registry.npmjs.org/@graphql-codegen/plugin-helpers/-/plugin-helpers-2.7.2.tgz"
"version" "2.7.2"
dependencies:
"@graphql-tools/utils" "^8.8.0"
"change-case-all" "1.0.14"
"common-tags" "1.8.2"
"import-from" "4.0.0"
"lodash" "~4.17.0"
"tslib" "~2.4.0"
"@graphql-codegen/schema-ast@^2.5.1":
"integrity" "sha512-tewa5DEKbglWn7kYyVBkh3J8YQ5ALqAMVmZwiVFIGOao5u66nd+e4HuFqp0u+Jpz4SJGGi0ap/oFrEvlqLjd2A=="
"resolved" "https://registry.npmjs.org/@graphql-codegen/schema-ast/-/schema-ast-2.5.1.tgz"
"version" "2.5.1"
dependencies:
"@graphql-codegen/plugin-helpers" "^2.6.2"
"@graphql-tools/utils" "^8.8.0"
"tslib" "~2.4.0"
"@graphql-codegen/typed-document-node@^2.3.6":
"integrity" "sha512-uJqBNj9z/5iIUgLwXsyWmnBaCzRtK+OiZsknTQmjzx/BzKTXK5lrbn06n4KK690wqkelpdZplTtww34ExmHG9Q=="
"resolved" "https://registry.npmjs.org/@graphql-codegen/typed-document-node/-/typed-document-node-2.3.6.tgz"
"version" "2.3.6"
dependencies:
"@graphql-codegen/plugin-helpers" "^2.7.2"
"@graphql-codegen/visitor-plugin-common" "2.13.1"
"auto-bind" "~4.0.0"
"change-case-all" "1.0.14"
"tslib" "~2.4.0"
"@graphql-codegen/typescript-operations@^2.5.6":
"integrity" "sha512-7WqOsVMTUXf+tdt0jGOBuQINLYjPIGlcsnkzXQSPJ7rSGVj99VobVuwgmAeFmJctZ3lgwx3gjPZ0dyCIOBc2/A=="
"resolved" "https://registry.npmjs.org/@graphql-codegen/typescript-operations/-/typescript-operations-2.5.6.tgz"
"version" "2.5.6"
dependencies:
"@graphql-codegen/plugin-helpers" "^2.7.2"
"@graphql-codegen/typescript" "^2.8.1"
"@graphql-codegen/visitor-plugin-common" "2.13.1"
"auto-bind" "~4.0.0"
"tslib" "~2.4.0"
"@graphql-codegen/typescript-react-apollo@^3.3.6":
"integrity" "sha512-W4xBQ54pdIyXGefYVAsfOB/fIlcony5ZlKWpwxbP5J+Keh2cNNTOxs1Tdib0UFFP4tgqnQY4S3e+QyG9fuv/iQ=="
"resolved" "https://registry.npmjs.org/@graphql-codegen/typescript-react-apollo/-/typescript-react-apollo-3.3.6.tgz"
"version" "3.3.6"
dependencies:
"@graphql-codegen/plugin-helpers" "^2.7.2"
"@graphql-codegen/visitor-plugin-common" "2.13.1"
"auto-bind" "~4.0.0"
"change-case-all" "1.0.14"
"tslib" "~2.4.0"
"@graphql-codegen/typescript@^2.8.1":
"integrity" "sha512-kweV1DOOH2blvMheVL55TT0s9bxkmF/zijN9mdk9pRD20i/rI/46qbh8fNKqy/PV12vZOmZGNL6tigdghG2bqg=="
"resolved" "https://registry.npmjs.org/@graphql-codegen/typescript/-/typescript-2.8.1.tgz"
"version" "2.8.1"
dependencies:
"@graphql-codegen/plugin-helpers" "^2.7.2"
"@graphql-codegen/schema-ast" "^2.5.1"
"@graphql-codegen/visitor-plugin-common" "2.13.1"
"auto-bind" "~4.0.0"
"tslib" "~2.4.0"
"@graphql-codegen/visitor-plugin-common@^2.12.1", "@graphql-codegen/visitor-plugin-common@^2.13.1", "@graphql-codegen/[email protected]":
"integrity" "sha512-mD9ufZhDGhyrSaWQGrU1Q1c5f01TeWtSWy/cDwXYjJcHIj1Y/DG2x0tOflEfCvh5WcnmHNIw4lzDsg1W7iFJEg=="
"resolved" "https://registry.npmjs.org/@graphql-codegen/visitor-plugin-common/-/visitor-plugin-common-2.13.1.tgz"
"version" "2.13.1"
dependencies:
"@graphql-codegen/plugin-helpers" "^2.7.2"
"@graphql-tools/optimize" "^1.3.0"
"@graphql-tools/relay-operation-optimizer" "^6.5.0"
"@graphql-tools/utils" "^8.8.0"
"auto-bind" "~4.0.0"
"change-case-all" "1.0.14"
"dependency-graph" "^0.11.0"
"graphql-tag" "^2.11.0"
"parse-filepath" "^1.0.2"
"tslib" "~2.4.0"
"@graphql-tools/apollo-engine-loader@^7.3.6":
"integrity" "sha512-Qd1juunK4kH3xgF1aYJIcy8vD/f36Nm713r3ZaY2OKxc1+8d9PIYUlhIvcVUP1SzVxNWLbZm+q918QWFmI9p8A=="
"resolved" "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-7.3.18.tgz"
"version" "7.3.18"
dependencies:
"@ardatan/sync-fetch" "0.0.1"
"@graphql-tools/utils" "9.1.0"
"@whatwg-node/fetch" "^0.5.0"
"tslib" "^2.4.0"
"@graphql-tools/[email protected]":
"integrity" "sha512-TWvTSJOG38y5GzKO8TLkURT0XJrQyCCwgCq/kr3YQHkw8BLwLbj3N6Pzp88oMJwAMfYOVCWoN4wU6DigUbOrAw=="
"resolved" "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.5.11.tgz"
"version" "8.5.11"
dependencies:
"@graphql-tools/utils" "9.1.0"
"dataloader" "2.1.0"
"tslib" "^2.4.0"
"value-or-promise" "1.0.11"
"@graphql-tools/code-file-loader@^7.3.1":
"integrity" "sha512-OMngFSlxthssPFl/VJG3qISXyqjuNF/3fqXFXL6wsCSTve3t13X8Y0oWr3s20fMnJhZNHq0CVtDZutmSUPX7Xw=="
"resolved" "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-7.3.11.tgz"
"version" "7.3.11"
dependencies:
"@graphql-tools/graphql-tag-pluck" "7.3.11"
"@graphql-tools/utils" "9.1.0"
"globby" "^11.0.3"
"tslib" "^2.4.0"
"unixify" "^1.0.0"
"@graphql-tools/[email protected]":
"integrity" "sha512-55BTS/EDr/tt+fifY5pM8HwF9fYZo0ukv90Udan1mWnyQTZpBTRhg0MUKnWRl9vcaPkDZIkfJaG2sraFM5gZyw=="
"resolved" "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-9.0.15.tgz"
"version" "9.0.15"
dependencies:
"@graphql-tools/batch-execute" "8.5.11"
"@graphql-tools/executor" "0.0.7"
"@graphql-tools/schema" "9.0.9"
"@graphql-tools/utils" "9.1.0"
"dataloader" "2.1.0"
"tslib" "~2.4.0"
"value-or-promise" "1.0.11"
"@graphql-tools/[email protected]":
"integrity" "sha512-VydPeunrAihvAHAnIFQynSVwtmciMUmkMgW/CMqZODjeOPqCkWuu1CXATnqU/i3tjf9Z3iLiYheCDKfJpOcEFw=="
"resolved" "https://registry.npmjs.org/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-0.0.2.tgz"
"version" "0.0.2"
dependencies:
"@graphql-tools/utils" "9.1.0"
"@repeaterjs/repeater" "3.0.4"
"@types/ws" "^8.0.0"
"graphql-ws" "5.11.2"
"isomorphic-ws" "5.0.0"
"tslib" "^2.4.0"
"ws" "8.11.0"
"@graphql-tools/[email protected]":
"integrity" "sha512-++ezIUeCcDc03jQpGnmVzw32P1aJSKH0FFXY/4zWnwdgCr2WdBBQCnYjptV1rjd5mohW2iIwRYc+HRw+TZzfXg=="
"resolved" "https://registry.npmjs.org/@graphql-tools/executor-http/-/executor-http-0.0.2.tgz"
"version" "0.0.2"
dependencies:
"@graphql-tools/utils" "9.1.0"
"@repeaterjs/repeater" "3.0.4"
"@whatwg-node/fetch" "0.5.1"
"dset" "3.1.2"
"extract-files" "^11.0.0"
"meros" "1.2.1"
"tslib" "^2.4.0"
"value-or-promise" "1.0.11"
"@graphql-tools/[email protected]":
"integrity" "sha512-ntIhYyK+keFk0LjQfH3/DHJRQufe1hH0ei9PXgds94Zg2GEjk49zxytxPfFC+hkqLXTAz8mGVj8MsuhDdEBtzw=="
"resolved" "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-0.0.2.tgz"
"version" "0.0.2"
dependencies:
"@graphql-tools/utils" "9.1.0"
"@types/ws" "^8.0.0"
"isomorphic-ws" "5.0.0"
"tslib" "^2.4.0"
"ws" "8.11.0"
"@graphql-tools/[email protected]":
"integrity" "sha512-NfTru2DjgvuRF1PlYBHFhfsUwNiNBsby8LPlvPtB5duizbw0rQW14h1RM2IfBowR0wH42NRAJZWEW8Nbvlf0Dg=="
"resolved" "https://registry.npmjs.org/@graphql-tools/executor/-/executor-0.0.7.tgz"
"version" "0.0.7"
dependencies:
"@graphql-tools/utils" "9.1.0"
"@graphql-typed-document-node/core" "3.1.1"
"@repeaterjs/repeater" "3.0.4"
"tslib" "^2.4.0"
"value-or-promise" "1.0.11"
"@graphql-tools/git-loader@^7.2.1":
"integrity" "sha512-a/uL8PAgMcXV7wY3LjMXgTcrWt2iGpcYTRHVMN4QgwW9PTAOPcYjxZ9BfNPTEDZt/zk0Gd8YxgtCrg8ui+bLCg=="
"resolved" "https://registry.npmjs.org/@graphql-tools/git-loader/-/git-loader-7.2.11.tgz"
"version" "7.2.11"
dependencies:
"@graphql-tools/graphql-tag-pluck" "7.3.11"
"@graphql-tools/utils" "9.1.0"
"is-glob" "4.0.3"
"micromatch" "^4.0.4"
"tslib" "^2.4.0"
"unixify" "^1.0.0"
"@graphql-tools/github-loader@^7.3.6":
"integrity" "sha512-xQ7L+CWuA6vMCNDfXodCPCDFfoRL+LtFKqxhpA3wU8kVhWOm+QP3sJeVrRj2FAoIKHxcoUYsT4QflqKFj/vsQA=="
"resolved" "https://registry.npmjs.org/@graphql-tools/github-loader/-/github-loader-7.3.18.tgz"
"version" "7.3.18"
dependencies:
"@ardatan/sync-fetch" "0.0.1"
"@graphql-tools/graphql-tag-pluck" "7.3.11"
"@graphql-tools/utils" "9.1.0"
"@whatwg-node/fetch" "^0.5.0"
"tslib" "^2.4.0"
"@graphql-tools/graphql-file-loader@^7.3.7", "@graphql-tools/graphql-file-loader@^7.5.0":
"integrity" "sha512-G7/jO0v4sdKik0hyKo1XTXdJoOy6uU6enVvaiK07cVLXjf4+N08orP2ZeiRw6IUxYErPvZgOHJKAZZaeSjIF2A=="
"resolved" "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.5.10.tgz"
"version" "7.5.10"
dependencies:
"@graphql-tools/import" "6.7.11"
"@graphql-tools/utils" "9.1.0"
"globby" "^11.0.3"
"tslib" "^2.4.0"
"unixify" "^1.0.0"
"@graphql-tools/[email protected]":
"integrity" "sha512-BU7ArN8+tv0KG3I4cuMF7MOpaVVOuqF6tnAmMjFqTrYOOJaQeTzweSvy6qtdkHA/sFZuttLa7BHxvJv4B4xS9w=="
"resolved" "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-7.3.11.tgz"
"version" "7.3.11"
dependencies:
"@babel/parser" "^7.16.8"
"@babel/traverse" "^7.16.8"
"@babel/types" "^7.16.8"
"@graphql-tools/utils" "9.1.0"
"tslib" "^2.4.0"
"@graphql-tools/[email protected]":
"integrity" "sha512-hd3HqNE5JLnOwPcr48vnTShldzRr5sRqrxqj9ouzEnqXUC1Pu/tMqp7p3K8ZPeaMw9h8aiUBBhvNM2sbSW51dQ=="
"resolved" "https://registry.npmjs.org/@graphql-tools/import/-/import-6.7.11.tgz"
"version" "6.7.11"
dependencies:
"@graphql-tools/utils" "9.1.0"
"resolve-from" "5.0.0"
"tslib" "^2.4.0"
"@graphql-tools/json-file-loader@^7.3.7", "@graphql-tools/json-file-loader@^7.4.1":
"integrity" "sha512-uxWpbI0sT9i3bUX50joJKMafI7Gnb7W62B8om/qaCkQUjN1UmJmAea+z0afEoko/SsTYbBlWiu8Kw1M0UuzyHQ=="
"resolved" "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-7.4.11.tgz"
"version" "7.4.11"
dependencies:
"@graphql-tools/utils" "9.1.0"
"globby" "^11.0.3"
"tslib" "^2.4.0"
"unixify" "^1.0.0"
"@graphql-tools/load@^7.5.5", "@graphql-tools/[email protected]":
"integrity" "sha512-l4FGgqMW0VOqo+NMYizwV8Zh+KtvVqOf93uaLo9wJ3sS3y/egPCgxPMDJJ/ufQZG3oZ/0oWeKt68qop3jY0yZg=="
"resolved" "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.0.tgz"
"version" "7.8.0"
dependencies:
"@graphql-tools/schema" "9.0.4"
"@graphql-tools/utils" "8.12.0"
"p-limit" "3.1.0"
"tslib" "^2.4.0"
"@graphql-tools/merge@^8.2.6", "@graphql-tools/[email protected]":
"integrity" "sha512-IpZh8r8e8FycXaUv04xe5HQH9siD1tkS8MvaO8Wb2FaPXv15XSYP+Wsb2MUStpIqGfQxa6xY/+eEuxv+VqwXyg=="
"resolved" "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.11.tgz"
"version" "8.3.11"
dependencies:
"@graphql-tools/utils" "9.1.0"
"tslib" "^2.4.0"
"@graphql-tools/[email protected]":
"integrity" "sha512-uUBokxXi89bj08P+iCvQk3Vew4vcfL5ZM6NTylWi8PIpoq4r5nJ625bRuN8h2uubEdRiH8ntN9M4xkd/j7AybQ=="
"resolved" "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.6.tgz"
"version" "8.3.6"
dependencies:
"@graphql-tools/utils" "8.12.0"
"tslib" "^2.4.0"
"@graphql-tools/optimize@^1.3.0":
"integrity" "sha512-5j5CZSRGWVobt4bgRRg7zhjPiSimk+/zIuColih8E8DxuFOaJ+t0qu7eZS5KXWBkjcd4BPNuhUPpNlEmHPqVRQ=="
"resolved" "https://registry.npmjs.org/@graphql-tools/optimize/-/optimize-1.3.1.tgz"
"version" "1.3.1"
dependencies:
"tslib" "^2.4.0"
"@graphql-tools/prisma-loader@^7.2.7":
"integrity" "sha512-0yPFnGKF0qdql4IgUKpAKedQ7ou803oZdjJoopeL2IHiE8nV/rlskp+r/zb+7W6awtwNuvPR5joqM2L0HZa5mQ=="
"resolved" "https://registry.npmjs.org/@graphql-tools/prisma-loader/-/prisma-loader-7.2.34.tgz"
"version" "7.2.34"
dependencies:
"@graphql-tools/url-loader" "7.16.14"
"@graphql-tools/utils" "9.1.0"
"@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" "^16.0.0"
"graphql-request" "^5.0.0"
"http-proxy-agent" "^5.0.0"
"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"
"scuid" "^1.1.0"
"tslib" "^2.4.0"
"yaml-ast-parser" "^0.0.43"
"@graphql-tools/relay-operation-optimizer@^6.5.0":
"integrity" "sha512-afIcawEBYnLN/A0oGIi4wKPCSduhYcTkNCbplnFpfm0NSpQ6CfMs30rJwUrsKhkRmTi7wIpOhFk8i1Xe46LT0w=="
"resolved" "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-6.5.11.tgz"
"version" "6.5.11"
dependencies:
"@ardatan/relay-compiler" "12.0.0"
"@graphql-tools/utils" "9.1.0"
"tslib" "^2.4.0"
"@graphql-tools/schema@^9.0.0", "@graphql-tools/[email protected]":
"integrity" "sha512-hwg8trUytO5ayQ8bzL3+sAyXcu2rhKt5pLXpLO0/TMTN2nXd3DBO4mqx+Ra4Er2mE/msInGQ5EmZbxVBPv+hSg=="
"resolved" "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.9.tgz"
"version" "9.0.9"
dependencies:
"@graphql-tools/merge" "8.3.11"
"@graphql-tools/utils" "9.1.0"
"tslib" "^2.4.0"
"value-or-promise" "1.0.11"
"@graphql-tools/[email protected]":
"integrity" "sha512-B/b8ukjs18fq+/s7p97P8L1VMrwapYc3N2KvdG/uNThSazRRn8GsBK0Nr+FH+mVKiUfb4Dno79e3SumZVoHuOQ=="
"resolved" "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.4.tgz"
"version" "9.0.4"
dependencies: