-
Notifications
You must be signed in to change notification settings - Fork 1
/
package-lock.json
6137 lines (6137 loc) · 245 KB
/
package-lock.json
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
{
"name": "kusama-transfers",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "kusama-transfers",
"dependencies": {
"@subsquid/archive-registry": "2.1.2",
"@subsquid/graphql-server": "3.3.0",
"@subsquid/ss58": "0.1.3",
"@subsquid/substrate-processor": "2.2.0",
"@subsquid/typeorm-migration": "0.1.4",
"@subsquid/typeorm-store": "0.2.0",
"dotenv": "^16.0.0",
"pg": "8.9.0",
"typeorm": "0.3.11"
},
"devDependencies": {
"@subsquid/substrate-metadata-explorer": "1.0.9",
"@subsquid/substrate-typegen": "2.1.0",
"@subsquid/typeorm-codegen": "0.3.1",
"@types/node": "18.11.18",
"typescript": "4.9.5"
},
"engines": {
"node": ">=16"
}
},
"node_modules/@apollo/protobufjs": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/@apollo/protobufjs/-/protobufjs-1.2.4.tgz",
"integrity": "sha512-npVJ9NVU/pynj+SCU+fambvTneJDyCnif738DnZ7pCxdDtzeEz7WkpSIq5wNUmWm5Td55N+S2xfqZ+WP4hDLng==",
"hasInstallScript": true,
"dependencies": {
"@protobufjs/aspromise": "^1.1.2",
"@protobufjs/base64": "^1.1.2",
"@protobufjs/codegen": "^2.0.4",
"@protobufjs/eventemitter": "^1.1.0",
"@protobufjs/fetch": "^1.1.0",
"@protobufjs/float": "^1.0.2",
"@protobufjs/inquire": "^1.1.0",
"@protobufjs/path": "^1.1.2",
"@protobufjs/pool": "^1.1.0",
"@protobufjs/utf8": "^1.1.0",
"@types/long": "^4.0.0",
"@types/node": "^10.1.0",
"long": "^4.0.0"
},
"bin": {
"apollo-pbjs": "bin/pbjs",
"apollo-pbts": "bin/pbts"
}
},
"node_modules/@apollo/protobufjs/node_modules/@types/node": {
"version": "10.17.60",
"resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz",
"integrity": "sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw=="
},
"node_modules/@apollo/utils.dropunuseddefinitions": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@apollo/utils.dropunuseddefinitions/-/utils.dropunuseddefinitions-1.1.0.tgz",
"integrity": "sha512-jU1XjMr6ec9pPoL+BFWzEPW7VHHulVdGKMkPAMiCigpVIT11VmCbnij0bWob8uS3ODJ65tZLYKAh/55vLw2rbg==",
"engines": {
"node": ">=12.13.0"
},
"peerDependencies": {
"graphql": "14.x || 15.x || 16.x"
}
},
"node_modules/@apollo/utils.keyvadapter": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@apollo/utils.keyvadapter/-/utils.keyvadapter-1.1.2.tgz",
"integrity": "sha512-vPC5e97uwHuZ2iMHVrEeRsV4dLw0lNx2UY9APhb7StC/RMR3BdnuPwS/+5yR9tUF5IUut+iJZocHkS4y6mR9aA==",
"dependencies": {
"@apollo/utils.keyvaluecache": "^1.0.1",
"dataloader": "^2.1.0",
"keyv": "^4.4.0"
}
},
"node_modules/@apollo/utils.keyvaluecache": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@apollo/utils.keyvaluecache/-/utils.keyvaluecache-1.0.1.tgz",
"integrity": "sha512-nLgYLomqjVimEzQ4cdvVQkcryi970NDvcRVPfd0OPeXhBfda38WjBq+WhQFk+czSHrmrSp34YHBxpat0EtiowA==",
"dependencies": {
"@apollo/utils.logger": "^1.0.0",
"lru-cache": "^7.10.1"
}
},
"node_modules/@apollo/utils.logger": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@apollo/utils.logger/-/utils.logger-1.0.0.tgz",
"integrity": "sha512-dx9XrjyisD2pOa+KsB5RcDbWIAdgC91gJfeyLCgy0ctJMjQe7yZK5kdWaWlaOoCeX0z6YI9iYlg7vMPyMpQF3Q=="
},
"node_modules/@apollo/utils.printwithreducedwhitespace": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@apollo/utils.printwithreducedwhitespace/-/utils.printwithreducedwhitespace-1.1.0.tgz",
"integrity": "sha512-GfFSkAv3n1toDZ4V6u2d7L4xMwLA+lv+6hqXicMN9KELSJ9yy9RzuEXaX73c/Ry+GzRsBy/fdSUGayGqdHfT2Q==",
"engines": {
"node": ">=12.13.0"
},
"peerDependencies": {
"graphql": "14.x || 15.x || 16.x"
}
},
"node_modules/@apollo/utils.removealiases": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@apollo/utils.removealiases/-/utils.removealiases-1.0.0.tgz",
"integrity": "sha512-6cM8sEOJW2LaGjL/0vHV0GtRaSekrPQR4DiywaApQlL9EdROASZU5PsQibe2MWeZCOhNrPRuHh4wDMwPsWTn8A==",
"engines": {
"node": ">=12.13.0"
},
"peerDependencies": {
"graphql": "14.x || 15.x || 16.x"
}
},
"node_modules/@apollo/utils.sortast": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@apollo/utils.sortast/-/utils.sortast-1.1.0.tgz",
"integrity": "sha512-VPlTsmUnOwzPK5yGZENN069y6uUHgeiSlpEhRnLFYwYNoJHsuJq2vXVwIaSmts015WTPa2fpz1inkLYByeuRQA==",
"dependencies": {
"lodash.sortby": "^4.7.0"
},
"engines": {
"node": ">=12.13.0"
},
"peerDependencies": {
"graphql": "14.x || 15.x || 16.x"
}
},
"node_modules/@apollo/utils.stripsensitiveliterals": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@apollo/utils.stripsensitiveliterals/-/utils.stripsensitiveliterals-1.2.0.tgz",
"integrity": "sha512-E41rDUzkz/cdikM5147d8nfCFVKovXxKBcjvLEQ7bjZm/cg9zEcXvS6vFY8ugTubI3fn6zoqo0CyU8zT+BGP9w==",
"engines": {
"node": ">=12.13.0"
},
"peerDependencies": {
"graphql": "14.x || 15.x || 16.x"
}
},
"node_modules/@apollo/utils.usagereporting": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@apollo/utils.usagereporting/-/utils.usagereporting-1.0.0.tgz",
"integrity": "sha512-5PL7hJMkTPmdo3oxPtigRrIyPxDk/ddrUryHPDaezL1lSFExpNzsDd2f1j0XJoHOg350GRd3LyD64caLA2PU1w==",
"dependencies": {
"@apollo/utils.dropunuseddefinitions": "^1.1.0",
"@apollo/utils.printwithreducedwhitespace": "^1.1.0",
"@apollo/utils.removealiases": "1.0.0",
"@apollo/utils.sortast": "^1.1.0",
"@apollo/utils.stripsensitiveliterals": "^1.2.0",
"apollo-reporting-protobuf": "^3.3.1"
},
"engines": {
"node": ">=12.13.0"
},
"peerDependencies": {
"graphql": "14.x || 15.x || 16.x"
}
},
"node_modules/@apollographql/apollo-tools": {
"version": "0.5.4",
"resolved": "https://registry.npmjs.org/@apollographql/apollo-tools/-/apollo-tools-0.5.4.tgz",
"integrity": "sha512-shM3q7rUbNyXVVRkQJQseXv6bnYM3BUma/eZhwXR4xsuM+bqWnJKvW7SAfRjP7LuSCocrexa5AXhjjawNHrIlw==",
"engines": {
"node": ">=8",
"npm": ">=6"
},
"peerDependencies": {
"graphql": "^14.2.1 || ^15.0.0 || ^16.0.0"
}
},
"node_modules/@apollographql/graphql-playground-html": {
"version": "1.6.29",
"resolved": "https://registry.npmjs.org/@apollographql/graphql-playground-html/-/graphql-playground-html-1.6.29.tgz",
"integrity": "sha512-xCcXpoz52rI4ksJSdOCxeOCn2DLocxwHf9dVT/Q90Pte1LX+LY+91SFtJF3KXVHH8kEin+g1KKCQPKBjZJfWNA==",
"dependencies": {
"xss": "^1.0.8"
}
},
"node_modules/@exodus/schemasafe": {
"version": "1.0.0-rc.9",
"resolved": "https://registry.npmjs.org/@exodus/schemasafe/-/schemasafe-1.0.0-rc.9.tgz",
"integrity": "sha512-dGGHpb61hLwifAu7sotuHFDBw6GTdpG8aKC0fsK17EuTzMRvUrH7lEAr6LTJ+sx3AZYed9yZ77rltVDHyg2hRg==",
"dev": true
},
"node_modules/@graphql-tools/merge": {
"version": "8.3.6",
"resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.6.tgz",
"integrity": "sha512-uUBokxXi89bj08P+iCvQk3Vew4vcfL5ZM6NTylWi8PIpoq4r5nJ625bRuN8h2uubEdRiH8ntN9M4xkd/j7AybQ==",
"dependencies": {
"@graphql-tools/utils": "8.12.0",
"tslib": "^2.4.0"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
}
},
"node_modules/@graphql-tools/mock": {
"version": "8.7.6",
"resolved": "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.7.6.tgz",
"integrity": "sha512-cQGPyY6dF4x28552zjAg9En2WWVury62u1/xzipCNUSCdKRVOsAupTNBcAGdMjsKPLcGzzk1cPA8dP0DUfNqzg==",
"dependencies": {
"@graphql-tools/schema": "9.0.4",
"@graphql-tools/utils": "8.12.0",
"fast-json-stable-stringify": "^2.1.0",
"tslib": "^2.4.0"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
}
},
"node_modules/@graphql-tools/mock/node_modules/@graphql-tools/schema": {
"version": "9.0.4",
"resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.4.tgz",
"integrity": "sha512-B/b8ukjs18fq+/s7p97P8L1VMrwapYc3N2KvdG/uNThSazRRn8GsBK0Nr+FH+mVKiUfb4Dno79e3SumZVoHuOQ==",
"dependencies": {
"@graphql-tools/merge": "8.3.6",
"@graphql-tools/utils": "8.12.0",
"tslib": "^2.4.0",
"value-or-promise": "1.0.11"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
}
},
"node_modules/@graphql-tools/schema": {
"version": "8.5.1",
"resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-8.5.1.tgz",
"integrity": "sha512-0Esilsh0P/qYcB5DKQpiKeQs/jevzIadNTaT0jeWklPMwNbT7yMX4EqZany7mbeRRlSRwMzNzL5olyFdffHBZg==",
"dependencies": {
"@graphql-tools/merge": "8.3.1",
"@graphql-tools/utils": "8.9.0",
"tslib": "^2.4.0",
"value-or-promise": "1.0.11"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
}
},
"node_modules/@graphql-tools/schema/node_modules/@graphql-tools/merge": {
"version": "8.3.1",
"resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.1.tgz",
"integrity": "sha512-BMm99mqdNZbEYeTPK3it9r9S6rsZsQKtlqJsSBknAclXq2pGEfOxjcIZi+kBSkHZKPKCRrYDd5vY0+rUmIHVLg==",
"dependencies": {
"@graphql-tools/utils": "8.9.0",
"tslib": "^2.4.0"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
}
},
"node_modules/@graphql-tools/schema/node_modules/@graphql-tools/utils": {
"version": "8.9.0",
"resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.9.0.tgz",
"integrity": "sha512-pjJIWH0XOVnYGXCqej8g/u/tsfV4LvLlj0eATKQu5zwnxd/TiTHq7Cg313qUPTFFHZ3PP5wJ15chYVtLDwaymg==",
"dependencies": {
"tslib": "^2.4.0"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
}
},
"node_modules/@graphql-tools/utils": {
"version": "8.12.0",
"resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-8.12.0.tgz",
"integrity": "sha512-TeO+MJWGXjUTS52qfK4R8HiPoF/R7X+qmgtOYd8DTH0l6b+5Y/tlg5aGeUJefqImRq7nvi93Ms40k/Uz4D5CWw==",
"dependencies": {
"tslib": "^2.4.0"
},
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
}
},
"node_modules/@ioredis/commands": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@ioredis/commands/-/commands-1.2.0.tgz",
"integrity": "sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg=="
},
"node_modules/@josephg/resolvable": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@josephg/resolvable/-/resolvable-1.0.1.tgz",
"integrity": "sha512-CtzORUwWTTOTqfVtHaKRJ0I1kNQd1bpn3sUh8I3nJDVY+5/M/Oe1DnEWzPQvqq/xPIIkzzzIP7mfCoAjFRvDhg=="
},
"node_modules/@keyv/redis": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@keyv/redis/-/redis-2.5.1.tgz",
"integrity": "sha512-DhmMNVYqObPQy23NLYNPZy9do3XSgNmqyTKjwSLWpinD/n0aW64k0hkCfyS1/JH+9zz0mxLTQMtHIgadaZAmDA==",
"dependencies": {
"ioredis": "^5.2.3"
},
"engines": {
"node": ">= 12"
}
},
"node_modules/@protobufjs/aspromise": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
"integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ=="
},
"node_modules/@protobufjs/base64": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz",
"integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg=="
},
"node_modules/@protobufjs/codegen": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz",
"integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg=="
},
"node_modules/@protobufjs/eventemitter": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz",
"integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q=="
},
"node_modules/@protobufjs/fetch": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz",
"integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==",
"dependencies": {
"@protobufjs/aspromise": "^1.1.1",
"@protobufjs/inquire": "^1.1.0"
}
},
"node_modules/@protobufjs/float": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz",
"integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ=="
},
"node_modules/@protobufjs/inquire": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz",
"integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q=="
},
"node_modules/@protobufjs/path": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz",
"integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA=="
},
"node_modules/@protobufjs/pool": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz",
"integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw=="
},
"node_modules/@protobufjs/utf8": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz",
"integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw=="
},
"node_modules/@sqltools/formatter": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/@sqltools/formatter/-/formatter-1.2.3.tgz",
"integrity": "sha512-O3uyB/JbkAEMZaP3YqyHH7TMnex7tWyCbCI4EfJdOCoN6HIhqdJBWTM6aCCiWQ/5f5wxjgU735QAIpJbjDvmzg=="
},
"node_modules/@subsquid/archive-registry": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/@subsquid/archive-registry/-/archive-registry-2.1.2.tgz",
"integrity": "sha512-xbzLoLvDgTpPoPkZ9S3brq1WtWgb5mrlZGUi2AdHUhzArrNE5uirYZD92yGfZFbomI0rsg66ZxWQR3eBfDX+Xw==",
"dependencies": {
"@subsquid/util-internal": "^1.0.0",
"commander": "^10.0.0",
"node-abort-controller": "^2",
"node-fetch": "^2"
},
"bin": {
"squid-archive-registry": "bin/run"
}
},
"node_modules/@subsquid/archive-registry/node_modules/commander": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-10.0.0.tgz",
"integrity": "sha512-zS5PnTI22FIRM6ylNW8G4Ap0IEOyk62fhLSD0+uHRT9McRCLGpkVNvao4bjimpK/GShynyQkFFxHhwMcETmduA==",
"engines": {
"node": ">=14"
}
},
"node_modules/@subsquid/graphiql-console": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/@subsquid/graphiql-console/-/graphiql-console-0.3.0.tgz",
"integrity": "sha512-C89mus6IXnNi0xMQrZqUFBZwLj8tbuq9lye8Gq/lHmmERAUpi6UsWEyLdJLx2mneZzF3JtY8eNiiZ16jmjtvfw=="
},
"node_modules/@subsquid/graphql-server": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@subsquid/graphql-server/-/graphql-server-3.3.0.tgz",
"integrity": "sha512-0wTCO01dP7a5KKere4/E1zIUnJl4hTh0/1OkB4TJ2bUhNGtxLw+ONlCHb6ow6sY17jf/gnbdAlBhwkd43XpO0w==",
"dependencies": {
"@apollo/utils.keyvadapter": "~1.1.2",
"@apollo/utils.keyvaluecache": "~1.0.1",
"@graphql-tools/merge": "^8",
"@graphql-tools/schema": "^8",
"@graphql-tools/utils": "^8",
"@keyv/redis": "~2.5.1",
"@subsquid/logger": "^0.3.0",
"@subsquid/openreader": "^3.1.5",
"@subsquid/typeorm-config": "^2.0.0",
"@subsquid/util-internal": "^1.0.0",
"@subsquid/util-internal-commander": "^0.0.1",
"@subsquid/util-internal-http-server": "^0.1.0",
"apollo-server-core": "^3.9.0",
"apollo-server-express": "^3.9.0",
"apollo-server-plugin-response-cache": "~3.7.0",
"commander": "^9.3.0",
"dotenv": "^10.0.0",
"express": "^4.18.1",
"graphql": "^15.8.0",
"graphql-ws": "^5.9.1",
"keyv": "~4.5.0",
"pg": "^8.7.3",
"ws": "^8.8.1"
},
"bin": {
"squid-graphql-server": "bin/run.js"
},
"peerDependencies": {
"@subsquid/big-decimal": "^0.0.0",
"class-validator": "^0.13.2",
"type-graphql": "^1.2.0-rc.1",
"typeorm": "^0.3.6"
},
"peerDependenciesMeta": {
"@subsquid/big-decimal": {
"optional": true
},
"class-validator": {
"optional": true
},
"type-graphql": {
"optional": true
},
"typeorm": {
"optional": true
}
}
},
"node_modules/@subsquid/graphql-server/node_modules/dotenv": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz",
"integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==",
"engines": {
"node": ">=10"
}
},
"node_modules/@subsquid/logger": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/@subsquid/logger/-/logger-0.3.0.tgz",
"integrity": "sha512-uflVPTey/6p/KCIpdzP2/Q1RRd3Ec4iLPjqdSFSmFPtai3IDEOQv5dXzUeiDRwa/63Q9tmzsLeKgdW8TDw5c7Q==",
"dependencies": {
"@subsquid/util-internal-hex": "^0.0.1",
"@subsquid/util-internal-json": "^0.2.0",
"supports-color": "^8.1.1"
}
},
"node_modules/@subsquid/openreader": {
"version": "3.1.6",
"resolved": "https://registry.npmjs.org/@subsquid/openreader/-/openreader-3.1.6.tgz",
"integrity": "sha512-oK8boMR8kNwe2qXnlT4ocsNjZUW3UfIaiat8dLawr1hLfxAEgQ0PYieejueOvv4sy2msv5BPCARAYKzni2gQvw==",
"dependencies": {
"@graphql-tools/merge": "^8",
"@subsquid/graphiql-console": "^0.3.0",
"@subsquid/logger": "^0.3.0",
"@subsquid/util-internal": "^1.0.0",
"@subsquid/util-internal-commander": "^0.0.1",
"@subsquid/util-internal-hex": "^0.0.1",
"@subsquid/util-internal-http-server": "^0.1.0",
"@subsquid/util-naming": "^0.0.1",
"apollo-server-core": "^3.9.0",
"apollo-server-express": "^3.9.0",
"commander": "^9.3.0",
"deep-equal": "^2.0.5",
"express": "^4.18.1",
"graphql": "^15.8.0",
"graphql-parse-resolve-info": "^4.12.3",
"graphql-ws": "^5.9.1",
"pg": "^8.7.3",
"ws": "^8.8.1"
},
"bin": {
"openreader": "bin/main.js"
},
"peerDependencies": {
"@subsquid/big-decimal": "^0.0.0"
},
"peerDependenciesMeta": {
"@subsquid/big-decimal": {
"optional": true
}
}
},
"node_modules/@subsquid/rpc-client": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@subsquid/rpc-client/-/rpc-client-1.0.2.tgz",
"integrity": "sha512-/z4cG3+yvRHkE0DZUyhTcyTvFPMo+DddEmh1eMXu2iFKHzE3XZqO0em04a3BL9HxF0FNXyi7XslGWWLsiKnm3Q==",
"dependencies": {
"@subsquid/util-timeout": "^0.0.0",
"websocket": "^1.0.34"
}
},
"node_modules/@subsquid/scale-codec": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@subsquid/scale-codec/-/scale-codec-1.1.0.tgz",
"integrity": "sha512-QaNh4PZoglmfO9L03q7XJ8zcDcvXwVTzXzlWPGvnqAEagGsGBJqAopzyqMAAIytd56gfLKSQkvtKJkWEzNtkuw==",
"dependencies": {
"@subsquid/util-internal-hex": "^0.0.1",
"@subsquid/util-internal-json": "^0.2.0"
}
},
"node_modules/@subsquid/ss58": {
"version": "0.1.3",
"resolved": "https://registry.npmjs.org/@subsquid/ss58/-/ss58-0.1.3.tgz",
"integrity": "sha512-IvBTj/toP/yrcQmaYOI6GZXjmmGo7V4autsxiWHpXbUsalMEh7QFu3orv3dc/N6ctQGeozbKlU+rgW0pKEjZ7Q==",
"dependencies": {
"@subsquid/ss58-codec": "^0.1.1"
}
},
"node_modules/@subsquid/ss58-codec": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/@subsquid/ss58-codec/-/ss58-codec-0.1.1.tgz",
"integrity": "sha512-QWlapl7Yo+q1Mm2ovPZrOLBZCeKfGyDHb2vNTtb4iDt3UTi9CSA0OPokVCzqalFAjSL8GIO9nLVFGZT4uvCTAw==",
"dependencies": {
"base-x": "^3.0.9",
"blake2b": "^2.1.4"
}
},
"node_modules/@subsquid/substrate-metadata": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@subsquid/substrate-metadata/-/substrate-metadata-2.2.0.tgz",
"integrity": "sha512-K2G3c9RUCBtf5Q+7o4uXFQFacPmC3SvYbad0BoExHR+VmPFUl3AR8WTBeAG4brKpxUe2F2Cp4TVKjKKZ4Gfzuw==",
"dependencies": {
"@subsquid/scale-codec": "^1.1.0",
"@subsquid/util-internal": "^1.0.0",
"@subsquid/util-naming": "^0.0.1"
}
},
"node_modules/@subsquid/substrate-metadata-explorer": {
"version": "1.0.9",
"resolved": "https://registry.npmjs.org/@subsquid/substrate-metadata-explorer/-/substrate-metadata-explorer-1.0.9.tgz",
"integrity": "sha512-5GwdPsDUzEyIYdoo+E56C8wuyR7oHSzUY6WQJfLK1XrZ54Gk8K8LpWtAgtifnRLAknXIAgXq4lXLfhTKhrf2hA==",
"dev": true,
"dependencies": {
"@subsquid/logger": "^0.3.0",
"@subsquid/rpc-client": "^1.0.2",
"@subsquid/util-internal": "^1.0.0",
"@subsquid/util-internal-gql-request": "^0.1.1",
"@subsquid/util-internal-read-lines": "^0.0.1",
"ajv": "^8.11.0",
"commander": "^9.3.0"
},
"bin": {
"squid-substrate-metadata-explorer": "bin/run.js"
}
},
"node_modules/@subsquid/substrate-processor": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@subsquid/substrate-processor/-/substrate-processor-2.2.0.tgz",
"integrity": "sha512-7SW2w3vXfoT1zp0oerwm5eDe5SD6kVq5wbUx3SB3O1oqcJtgTw+hJykX1HPzIjXmQQmN8Wt+UdtxzD9gJ1YvHA==",
"dependencies": {
"@subsquid/logger": "^0.3.0",
"@subsquid/rpc-client": "^1.0.2",
"@subsquid/scale-codec": "^1.1.0",
"@subsquid/substrate-metadata": "^2.1.2",
"@subsquid/typeorm-config": "^2.0.0",
"@subsquid/util-internal": "^1.0.0",
"@subsquid/util-internal-binary-heap": "^0.0.0",
"@subsquid/util-internal-code-printer": "^0.1.0",
"@subsquid/util-internal-counters": "^0.0.1",
"@subsquid/util-internal-gql-request": "^0.1.1",
"@subsquid/util-internal-hex": "^0.0.1",
"@subsquid/util-internal-prometheus-server": "^0.0.2",
"@subsquid/util-xxhash": "^0.1.1",
"blake2b": "^2.1.4",
"prom-client": "^14.0.1"
},
"peerDependencies": {
"@subsquid/typeorm-store": "^0.2.0"
},
"peerDependenciesMeta": {
"@subsquid/typeorm-store": {
"optional": true
}
}
},
"node_modules/@subsquid/substrate-typegen": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@subsquid/substrate-typegen/-/substrate-typegen-2.1.0.tgz",
"integrity": "sha512-NSwvQy7kUC8Sb6DZMFBEm+bqZb+e4neyayrCQ6AzCyofQIdiN4m4kC+/uoewZVIjm0Hds+JBzsXnltFw6BzX3w==",
"dev": true,
"dependencies": {
"@subsquid/logger": "^0.3.0",
"@subsquid/scale-codec": "^1.1.0",
"@subsquid/substrate-metadata": "^2.2.0",
"@subsquid/substrate-metadata-explorer": "^1.0.9",
"@subsquid/util-internal": "^1.0.0",
"@subsquid/util-internal-code-printer": "^0.1.0",
"@subsquid/util-internal-config": "^1.0.0",
"@subsquid/util-internal-gql-request": "^0.1.1",
"@subsquid/util-internal-read-lines": "^0.0.1",
"@subsquid/util-naming": "^0.0.1",
"commander": "^9.3.0"
},
"bin": {
"squid-substrate-typegen": "bin/run.js"
}
},
"node_modules/@subsquid/typeorm-codegen": {
"version": "0.3.1",
"resolved": "https://registry.npmjs.org/@subsquid/typeorm-codegen/-/typeorm-codegen-0.3.1.tgz",
"integrity": "sha512-oNyKeFkSE9w4lIr1yOUAyVcSAZ694bCni16YH3TJEQnIFs6ANGAvLX/GuSUpcmhW1MN44UhV2jy75l6Oz5ghMA==",
"dev": true,
"dependencies": {
"@subsquid/openreader": "^3.1.4",
"@subsquid/util-internal": "^1.0.0",
"@subsquid/util-internal-code-printer": "^0.1.0",
"@subsquid/util-naming": "^0.0.1",
"commander": "^9.3.0"
},
"bin": {
"squid-typeorm-codegen": "bin/run.js"
}
},
"node_modules/@subsquid/typeorm-config": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@subsquid/typeorm-config/-/typeorm-config-2.0.0.tgz",
"integrity": "sha512-TJ/ksxTLTEHqY6NiYM5S9JXFdUEROTjTY+PKQv3ixoQuuidNzIGRwwGvzMnSKNl9s1V5ADcwWIEbmcPBZjHURg==",
"dependencies": {
"@subsquid/util-naming": "^0.0.1"
},
"peerDependencies": {
"typeorm": "^0.3.6"
},
"peerDependenciesMeta": {
"typeorm": {
"optional": true
}
}
},
"node_modules/@subsquid/typeorm-migration": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/@subsquid/typeorm-migration/-/typeorm-migration-0.1.4.tgz",
"integrity": "sha512-x2VCODuomJrxCPQFJipQ3//0BsrK+dx4lJbr7nPPbh7zULo17pQ0gByD5H849fua3bLDzRzQHm1kCC+IgTj2lg==",
"dependencies": {
"@subsquid/typeorm-config": "^2.0.0",
"@subsquid/util-internal": "^1.0.0",
"@subsquid/util-internal-code-printer": "^0.1.0",
"commander": "^9.3.0",
"dotenv": "^10.0.0"
},
"bin": {
"squid-typeorm-migration": "bin/squid-typeorm-migration",
"squid-typeorm-migration-apply": "bin/squid-typeorm-migration-apply",
"squid-typeorm-migration-create": "bin/squid-typeorm-migration-create",
"squid-typeorm-migration-generate": "bin/squid-typeorm-migration-generate",
"squid-typeorm-migration-revert": "bin/squid-typeorm-migration-revert"
},
"peerDependencies": {
"typeorm": "^0.3.6"
}
},
"node_modules/@subsquid/typeorm-migration/node_modules/dotenv": {
"version": "10.0.0",
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz",
"integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==",
"engines": {
"node": ">=10"
}
},
"node_modules/@subsquid/typeorm-store": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@subsquid/typeorm-store/-/typeorm-store-0.2.0.tgz",
"integrity": "sha512-BjcruvsXlZ/72S8AsDr1Ahq/xfQGGrnPIuUKhFKwkJ29+RsUjechBJhxzF4viK8MkpxxdQQZpgy4PxQZOUd6lw==",
"dependencies": {
"@subsquid/typeorm-config": "^2.0.0",
"@subsquid/util-internal": "^1.0.0"
},
"peerDependencies": {
"typeorm": "^0.3.6"
}
},
"node_modules/@subsquid/util-internal": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal/-/util-internal-1.0.0.tgz",
"integrity": "sha512-uiGA6LwrgqZzg/1M8CL4CQdZ5k8yZmR1fEor6wGOf366RyL5tyXCETrhI5xsX/AXCO+nPAtahemOqqJKTAAbkQ=="
},
"node_modules/@subsquid/util-internal-binary-heap": {
"version": "0.0.0",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-binary-heap/-/util-internal-binary-heap-0.0.0.tgz",
"integrity": "sha512-eVtdf442+L10G4lgSHCcxgNzYEcrdZ3WKy7Y7CGkhKLJhKuOlgDtEwklZmh1/lM+37AQn9XnX/VpxTaJ2vA2sg=="
},
"node_modules/@subsquid/util-internal-code-printer": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-code-printer/-/util-internal-code-printer-0.1.0.tgz",
"integrity": "sha512-qVlW3cvEo64gbjxLCBRu95eDORKDZmSxGpILbtNWq34Gg8fChSsnvdyL2rN9vIU/sMZtcPhL52RdDJI0lVWv9Q=="
},
"node_modules/@subsquid/util-internal-commander": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-commander/-/util-internal-commander-0.0.1.tgz",
"integrity": "sha512-WLNQ6rVHRZXar/iyUQfuKK98ecMCNOIzzFlKtgTgo98TkLK9QY8VFfhQBtqXLBn1mDsIlZ+zcnlqeHo680hrfA==",
"peerDependencies": {
"commander": "^9.3.0"
}
},
"node_modules/@subsquid/util-internal-config": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-config/-/util-internal-config-1.0.0.tgz",
"integrity": "sha512-VfqyTl3ZOdl/4JJufdTAwq1IqF4E/VNB60ZT9bL2+1tlz/UMyvY/9yPMmYq75uDmvI37iZxf3AZnqHC2Uug7kQ==",
"dev": true,
"dependencies": {
"@exodus/schemasafe": "^1.0.0-rc.9",
"jsonc-parser": "^3.2.0"
}
},
"node_modules/@subsquid/util-internal-counters": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-counters/-/util-internal-counters-0.0.1.tgz",
"integrity": "sha512-cZOrsBWGDSV+0JuWBesGLxIXaXMG2aclNVsOnfZ3jV1ACXepLF8fM/U1ilaBBXIYxPjEeGoWNCcj0LRSQt6yFQ=="
},
"node_modules/@subsquid/util-internal-gql-request": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-gql-request/-/util-internal-gql-request-0.1.1.tgz",
"integrity": "sha512-KBCtokrwi7jjEqucUhHm/x4hmZvmJjxkEoYEhPCLwPirzOCtcNWjmsgaE41hGfbd8VnTeo2cji9cjGjSvwGvkw==",
"dependencies": {
"node-fetch": "^2.6.7"
}
},
"node_modules/@subsquid/util-internal-hex": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-hex/-/util-internal-hex-0.0.1.tgz",
"integrity": "sha512-sNok0jQV6+OpAl3QKaH2VFh8PKZyZ6XHZhZ71LeirOhgfVprKFmEvFG9yQIp7qKe7JGXmolX54zu150OMP9f5w=="
},
"node_modules/@subsquid/util-internal-http-server": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-http-server/-/util-internal-http-server-0.1.0.tgz",
"integrity": "sha512-7+lQlGMpKg5Qeavkas2/uBgF4cQQKG5gblhsuPwt/cyDGfIQcwPX9KxJUVQDBE8SL2P62qg8TkzeEYSG89iykg==",
"dependencies": {
"stoppable": "^1.1.0"
}
},
"node_modules/@subsquid/util-internal-json": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-json/-/util-internal-json-0.2.0.tgz",
"integrity": "sha512-tkDPXQ+2/2RCO2+O3AtaI71p9TQLOcv2hJWOmgNGzzQrTXp8wbyEZIybm33lsLo2HUmQN/BQKzk4PHkLa36nMQ==",
"dependencies": {
"@subsquid/util-internal-hex": "^0.0.1"
}
},
"node_modules/@subsquid/util-internal-prometheus-server": {
"version": "0.0.2",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-prometheus-server/-/util-internal-prometheus-server-0.0.2.tgz",
"integrity": "sha512-ODLBH03RkDm34AHkInQ6M5gcm5LCtI9wBAoOlKtqCcgTSIflELJKfmvqGCd3hhPyw0t6PJ2LQayrX3rth/nOqw==",
"dependencies": {
"@subsquid/util-internal-http-server": "^0.1.0"
},
"peerDependencies": {
"prom-client": "^14.0.1"
}
},
"node_modules/@subsquid/util-internal-read-lines": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/@subsquid/util-internal-read-lines/-/util-internal-read-lines-0.0.1.tgz",
"integrity": "sha512-QqhA1kLLPHn0x8NIRiEv6u0nCpQZAlXbaAQxTJPAVLEKDOhlDg/A+P+vaGVorVyQ5nKWWQlNlY77Cf2nmWuIxw==",
"dev": true
},
"node_modules/@subsquid/util-naming": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/@subsquid/util-naming/-/util-naming-0.0.1.tgz",
"integrity": "sha512-qxvZX/JJ8zqBxsGrVATu/M3Q3vGWXPO5L0AGIGtNUaBZm8T3WlzKUn6+MDuxU18xaLS50xEpYa91tUgIqga9WA==",
"dependencies": {
"camelcase": "^6.3.0",
"inflected": "^2.1.0"
}
},
"node_modules/@subsquid/util-timeout": {
"version": "0.0.0",
"resolved": "https://registry.npmjs.org/@subsquid/util-timeout/-/util-timeout-0.0.0.tgz",
"integrity": "sha512-xvuGKuIc9Dm0rEu7fVAIaIylASGn1+edwYdG5IpXB9IVz5RGG1oeGJybY98hlcwVKAZfzFSMKnaEDqI9jKYwmg=="
},
"node_modules/@subsquid/util-xxhash": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/@subsquid/util-xxhash/-/util-xxhash-0.1.1.tgz",
"integrity": "sha512-O3VaBHYuCe8OuCJocL0FWB9OLu3eh2ZcLvhd3ymad74YW/I8mN/XBSfbjqz0D0xU3SVNyUdtdjt8MGS1Js2K2A==",
"dependencies": {
"xxhash-wasm": "^1.0.1",
"xxhashjs": "^0.2.2"
}
},
"node_modules/@types/accepts": {
"version": "1.3.5",
"resolved": "https://registry.npmjs.org/@types/accepts/-/accepts-1.3.5.tgz",
"integrity": "sha512-jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ==",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@types/body-parser": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz",
"integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==",
"dependencies": {
"@types/connect": "*",
"@types/node": "*"
}
},
"node_modules/@types/connect": {
"version": "3.4.35",
"resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz",
"integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@types/cors": {
"version": "2.8.12",
"resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.12.tgz",
"integrity": "sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw=="
},
"node_modules/@types/express": {
"version": "4.17.13",
"resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz",
"integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==",
"dependencies": {
"@types/body-parser": "*",
"@types/express-serve-static-core": "^4.17.18",
"@types/qs": "*",
"@types/serve-static": "*"
}
},
"node_modules/@types/express-serve-static-core": {
"version": "4.17.30",
"resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.30.tgz",
"integrity": "sha512-gstzbTWro2/nFed1WXtf+TtrpwxH7Ggs4RLYTLbeVgIkUQOI3WG/JKjgeOU1zXDvezllupjrf8OPIdvTbIaVOQ==",
"dependencies": {
"@types/node": "*",
"@types/qs": "*",
"@types/range-parser": "*"
}
},
"node_modules/@types/long": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.2.tgz",
"integrity": "sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA=="
},
"node_modules/@types/mime": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@types/mime/-/mime-3.0.1.tgz",
"integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA=="
},
"node_modules/@types/node": {
"version": "18.11.18",
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.18.tgz",
"integrity": "sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA=="
},
"node_modules/@types/qs": {
"version": "6.9.7",
"resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz",
"integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw=="
},
"node_modules/@types/range-parser": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz",
"integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw=="
},
"node_modules/@types/serve-static": {
"version": "1.15.0",
"resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.0.tgz",
"integrity": "sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==",
"dependencies": {
"@types/mime": "*",
"@types/node": "*"
}
},
"node_modules/accepts": {
"version": "1.3.8",
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
"integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
"dependencies": {
"mime-types": "~2.1.34",
"negotiator": "0.6.3"
},
"engines": {
"node": ">= 0.6"
}
},
"node_modules/ajv": {
"version": "8.11.0",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz",
"integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==",
"dev": true,
"dependencies": {
"fast-deep-equal": "^3.1.1",
"json-schema-traverse": "^1.0.0",
"require-from-string": "^2.0.2",
"uri-js": "^4.2.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/epoberezkin"
}
},
"node_modules/ansi-regex": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"engines": {
"node": ">=8"
}
},
"node_modules/ansi-styles": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dependencies": {
"color-convert": "^2.0.1"
},
"engines": {
"node": ">=8"
},
"funding": {
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
"node_modules/any-promise": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
"integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A=="
},
"node_modules/apollo-datasource": {
"version": "3.3.2",
"resolved": "https://registry.npmjs.org/apollo-datasource/-/apollo-datasource-3.3.2.tgz",
"integrity": "sha512-L5TiS8E2Hn/Yz7SSnWIVbZw0ZfEIXZCa5VUiVxD9P53JvSrf4aStvsFDlGWPvpIdCR+aly2CfoB79B9/JjKFqg==",
"dependencies": {
"@apollo/utils.keyvaluecache": "^1.0.1",
"apollo-server-env": "^4.2.1"
},
"engines": {
"node": ">=12.0"
}
},
"node_modules/apollo-reporting-protobuf": {
"version": "3.3.2",
"resolved": "https://registry.npmjs.org/apollo-reporting-protobuf/-/apollo-reporting-protobuf-3.3.2.tgz",
"integrity": "sha512-j1tx9tmkVdsLt1UPzBrvz90PdjAeKW157WxGn+aXlnnGfVjZLIRXX3x5t1NWtXvB7rVaAsLLILLtDHW382TSoQ==",
"dependencies": {
"@apollo/protobufjs": "1.2.4"
}
},
"node_modules/apollo-server-core": {
"version": "3.10.2",
"resolved": "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-3.10.2.tgz",
"integrity": "sha512-/1o9KPoAMgcjJJ9Y0IH1665wf9d02L/m/mcfBOHiFmRgeGkNgrhTy59BxQTBK241USAWMhwMpp171cv/hM5Dng==",
"dependencies": {
"@apollo/utils.keyvaluecache": "^1.0.1",
"@apollo/utils.logger": "^1.0.0",
"@apollo/utils.usagereporting": "^1.0.0",
"@apollographql/apollo-tools": "^0.5.3",
"@apollographql/graphql-playground-html": "1.6.29",
"@graphql-tools/mock": "^8.1.2",
"@graphql-tools/schema": "^8.0.0",
"@josephg/resolvable": "^1.0.0",
"apollo-datasource": "^3.3.2",
"apollo-reporting-protobuf": "^3.3.2",
"apollo-server-env": "^4.2.1",
"apollo-server-errors": "^3.3.1",
"apollo-server-plugin-base": "^3.6.2",
"apollo-server-types": "^3.6.2",
"async-retry": "^1.2.1",
"fast-json-stable-stringify": "^2.1.0",
"graphql-tag": "^2.11.0",
"loglevel": "^1.6.8",
"lru-cache": "^6.0.0",
"sha.js": "^2.4.11",
"uuid": "^8.0.0",
"whatwg-mimetype": "^3.0.0"
},
"engines": {
"node": ">=12.0"
},
"peerDependencies": {
"graphql": "^15.3.0 || ^16.0.0"
}
},
"node_modules/apollo-server-core/node_modules/lru-cache": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
"dependencies": {
"yallist": "^4.0.0"
},
"engines": {
"node": ">=10"
}
},
"node_modules/apollo-server-env": {
"version": "4.2.1",
"resolved": "https://registry.npmjs.org/apollo-server-env/-/apollo-server-env-4.2.1.tgz",
"integrity": "sha512-vm/7c7ld+zFMxibzqZ7SSa5tBENc4B0uye9LTfjJwGoQFY5xsUPH5FpO5j0bMUDZ8YYNbrF9SNtzc5Cngcr90g==",
"dependencies": {
"node-fetch": "^2.6.7"
},
"engines": {
"node": ">=12.0"
}