-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
pnpm-lock.yaml
18632 lines (14715 loc) · 639 KB
/
pnpm-lock.yaml
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
lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
overrides:
apollo-cache-control: 0.15.0
axios: ~1.4.0
importers:
.:
devDependencies:
'@algolia/client-search':
specifier: ^4.20.0
version: 4.20.0
'@apollo/gateway':
specifier: 2.5.6
version: 2.5.6(encoding@0.1.13)(graphql@16.8.1)
'@apollo/server':
specifier: 4.9.4
version: 4.9.4(encoding@0.1.13)(graphql@16.8.1)
'@astrojs/preact':
specifier: ^3.0.1
version: 3.0.1(@babel/core@7.23.2)(preact@10.18.1)(vite@4.5.0(@types/node@18.19.9)(terser@5.22.0))
'@astrojs/react':
specifier: ^3.0.3
version: 3.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vite@4.5.0(@types/node@18.19.9)(terser@5.22.0))
'@astrojs/sitemap':
specifier: ^3.0.2
version: 3.0.2
'@changesets/cli':
specifier: ^2.26.2
version: 2.26.2
'@commitlint/cli':
specifier: 17.8.0
version: 17.8.0(@swc/core@1.5.7(@swc/helpers@0.5.11))
'@commitlint/config-conventional':
specifier: 17.8.0
version: 17.8.0
'@docsearch/css':
specifier: ^3.5.2
version: 3.5.2
'@docsearch/react':
specifier: ^3.5.2
version: 3.5.2(@algolia/client-search@4.20.0)(@types/react@18.2.29)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.9.0)
'@graphql-tools/schema':
specifier: 10.0.0
version: 10.0.0(graphql@16.8.1)
'@graphql-tools/utils':
specifier: ^10.0.7
version: 10.0.13(graphql@16.8.1)
'@grpc/grpc-js':
specifier: ^1.9.6
version: 1.9.6
'@grpc/proto-loader':
specifier: 0.7.10
version: 0.7.10
'@mdx-js/react':
specifier: 2.3.0
version: 2.3.0(react@18.2.0)
'@mercuriusjs/gateway':
specifier: ^2.0.0
version: 2.0.0
'@nestjs/apollo':
specifier: ^12.1.0
version: 12.1.0(@apollo/gateway@2.5.6(encoding@0.1.13)(graphql@16.8.1))(@apollo/server@4.9.4(encoding@0.1.13)(graphql@16.8.1))(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)(@nestjs/graphql@12.1.0(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.1)(reflect-metadata@0.2.1)(ts-morph@22.0.0))(graphql@16.8.1)
'@nestjs/common':
specifier: ^10.3.2
version: 10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1)
'@nestjs/core':
specifier: ^10.3.2
version: 10.3.2(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/microservices@10.3.2)(@nestjs/platform-express@10.3.2)(@nestjs/websockets@10.3.2)(encoding@0.1.13)(reflect-metadata@0.2.1)(rxjs@7.8.1)
'@nestjs/graphql':
specifier: ^12.1.0
version: 12.1.0(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.1)(reflect-metadata@0.2.1)(ts-morph@22.0.0)
'@nestjs/mercurius':
specifier: ^12.1.0
version: 12.1.0(@mercuriusjs/federation@2.0.0)(@mercuriusjs/gateway@2.0.0)(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/graphql@12.1.0(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.1)(reflect-metadata@0.2.1)(ts-morph@22.0.0))(fastify@4.18.0)(graphql@16.8.1)(mercurius@13.1.0(graphql@16.8.1))
'@nestjs/microservices':
specifier: ^10.3.2
version: 10.3.2(@grpc/grpc-js@1.9.6)(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)(@nestjs/websockets@10.3.2)(amqp-connection-manager@4.1.14(amqplib@0.10.3))(amqplib@0.10.3)(ioredis@5.3.2)(kafkajs@2.2.4)(mqtt@4.3.7)(nats@2.17.0)(reflect-metadata@0.2.1)(rxjs@7.8.1)
'@nestjs/platform-express':
specifier: ^10.3.2
version: 10.3.2(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)
'@nestjs/platform-fastify':
specifier: ^10.3.2
version: 10.3.2(@fastify/static@6.11.2)(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)
'@nestjs/platform-socket.io':
specifier: ^10.3.2
version: 10.3.2(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/websockets@10.3.2)(rxjs@7.8.1)
'@nestjs/platform-ws':
specifier: ^10.3.2
version: 10.3.2(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/websockets@10.3.2)(rxjs@7.8.1)
'@nestjs/testing':
specifier: ^10.3.2
version: 10.3.2(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)(@nestjs/microservices@10.3.2)(@nestjs/platform-express@10.3.2)
'@nestjs/websockets':
specifier: ^10.3.2
version: 10.3.2(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)(@nestjs/platform-socket.io@10.3.2)(reflect-metadata@0.2.1)(rxjs@7.8.1)
'@nrwl/devkit':
specifier: 19.2.0
version: 19.2.0(nx@19.2.0(@swc-node/register@1.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
'@nrwl/eslint-plugin-nx':
specifier: 19.2.0
version: 19.2.0(@babel/traverse@7.23.2)(@swc-node/register@1.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.9)(@typescript-eslint/parser@7.9.0(eslint@8.57.0)(typescript@5.4.5))(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.2.0(@swc-node/register@1.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.5)
'@nrwl/js':
specifier: 19.2.0
version: 19.2.0(@babel/traverse@7.23.2)(@swc-node/register@1.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.9)(nx@19.2.0(@swc-node/register@1.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.5)
'@nrwl/linter':
specifier: 19.2.0
version: 19.2.0(@babel/traverse@7.23.2)(@swc-node/register@1.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.9)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.2.0(@swc-node/register@1.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
'@nrwl/nest':
specifier: 19.2.0
version: 19.2.0(@babel/traverse@7.23.2)(@swc-node/register@1.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.9)(@zkochan/js-yaml@0.0.7)(chokidar@3.5.3)(eslint@8.57.0)(nx@19.2.0(@swc-node/register@1.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.9)(typescript@5.4.5))(typescript@5.4.5)
'@nrwl/node':
specifier: 19.2.0
version: 19.2.0(@babel/traverse@7.23.2)(@swc-node/register@1.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.9)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.2.0(@swc-node/register@1.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(ts-node@10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.9)(typescript@5.4.5))(typescript@5.4.5)
'@nrwl/workspace':
specifier: 19.2.0
version: 19.2.0(@swc-node/register@1.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.11))
'@nx/js':
specifier: 19.2.0
version: 19.2.0(@babel/traverse@7.23.2)(@swc-node/register@1.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.9)(nx@19.2.0(@swc-node/register@1.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.4.5)
'@opentelemetry/api':
specifier: ^1.3.0
version: 1.6.0
'@opentelemetry/context-async-hooks':
specifier: ^1.25.0
version: 1.25.0(@opentelemetry/api@1.6.0)
'@opentelemetry/instrumentation':
specifier: ^0.44.0
version: 0.44.0(@opentelemetry/api@1.6.0)
'@opentelemetry/sdk-trace-base':
specifier: ^1.25.0
version: 1.25.0(@opentelemetry/api@1.6.0)
'@opentelemetry/sdk-trace-node':
specifier: ^1.25.0
version: 1.25.0(@opentelemetry/api@1.6.0)
'@swc-node/register':
specifier: ~1.9.1
version: 1.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5)
'@swc/cli':
specifier: 0.3.12
version: 0.3.12(@swc/core@1.5.7(@swc/helpers@0.5.11))(chokidar@3.5.3)
'@swc/core':
specifier: 1.5.7
version: 1.5.7(@swc/helpers@0.5.11)
'@swc/helpers':
specifier: ~0.5.11
version: 0.5.11
'@swc/register':
specifier: ^0.1.10
version: 0.1.10(@swc/core@1.5.7(@swc/helpers@0.5.11))
'@types/benchmark':
specifier: ^2.1.4
version: 2.1.4
'@types/bunyan':
specifier: ^1.8.10
version: 1.8.10
'@types/express':
specifier: ^4.17.20
version: 4.17.20
'@types/express-serve-static-core':
specifier: ^4.17.38
version: 4.17.38
'@types/morgan':
specifier: ^1.9.7
version: 1.9.7
'@types/node':
specifier: 18.19.9
version: 18.19.9
'@types/react':
specifier: ^18.2.29
version: 18.2.29
'@types/react-dom':
specifier: ^18.2.14
version: 18.2.14
'@types/ws':
specifier: 8.5.8
version: 8.5.8
'@typescript-eslint/eslint-plugin':
specifier: 7.9.0
version: 7.9.0(@typescript-eslint/parser@7.9.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)
'@typescript-eslint/parser':
specifier: 7.9.0
version: 7.9.0(eslint@8.57.0)(typescript@5.4.5)
amqp-connection-manager:
specifier: 4.1.14
version: 4.1.14(amqplib@0.10.3)
amqplib:
specifier: 0.10.3
version: 0.10.3
apollo-server-express:
specifier: 3.12.1
version: 3.12.1(encoding@0.1.13)(express@4.18.2)(graphql@16.8.1)
apollo-server-fastify:
specifier: 3.12.1
version: 3.12.1(encoding@0.1.13)(fastify@4.18.0)(graphql@16.8.1)
astro:
specifier: ^3.3.2
version: 3.3.2(@types/node@18.19.9)(terser@5.22.0)(typescript@5.4.5)
axios:
specifier: ~1.4.0
version: 1.4.0
benchmark:
specifier: ^2.1.4
version: 2.1.4
bunyan:
specifier: ^1.8.15
version: 1.8.15
c8:
specifier: ^8.0.1
version: 8.0.1
class-transformer:
specifier: 0.5.1
version: 0.5.1
class-validator:
specifier: ^0.14.0
version: 0.14.0
clsx:
specifier: ^2.0.0
version: 2.0.0
conventional-changelog-cli:
specifier: ^4.1.0
version: 4.1.0
cz-conventional-changelog:
specifier: ^3.3.0
version: 3.3.0(@swc/core@1.5.7(@swc/helpers@0.5.11))
decorate-all:
specifier: ^1.2.1
version: 1.2.1(reflect-metadata@0.2.1)
eslint:
specifier: 8.57.0
version: 8.57.0
eslint-config-prettier:
specifier: 9.1.0
version: 9.1.0(eslint@8.57.0)
eslint-plugin-prettier:
specifier: ^5.0.1
version: 5.0.1(@types/eslint@8.44.6)(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(prettier@3.0.3)
eslint-plugin-simple-import-sort:
specifier: 10.0.0
version: 10.0.0(eslint@8.57.0)
express:
specifier: ^4.18.2
version: 4.18.2
fast-safe-stringify:
specifier: ^2.1.1
version: 2.1.1
fastify:
specifier: 4.18.0
version: 4.18.0
graphql:
specifier: ^16.8.1
version: 16.8.1
hanbi:
specifier: ^1.0.1
version: 1.0.1
hastscript:
specifier: ^8.0.0
version: 8.0.0
husky:
specifier: ^8.0.3
version: 8.0.3
ioredis:
specifier: ^5.3.2
version: 5.3.2
kafkajs:
specifier: 2.2.4
version: 2.2.4
lcov-result-merger:
specifier: ^4.1.0
version: 4.1.0
lint-staged:
specifier: 15.0.1
version: 15.0.1
mercurius:
specifier: 13.1.0
version: 13.1.0(graphql@16.8.1)
module-alias:
specifier: ^2.2.3
version: 2.2.3
morgan:
specifier: ^1.10.0
version: 1.10.0
mqtt:
specifier: ^4.3.7
version: 4.3.7
nats:
specifier: ^2.17.0
version: 2.17.0
nest-commander:
specifier: ^3.12.0
version: 3.12.0(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)(@types/inquirer@8.2.9)
nest-commander-testing:
specifier: 3.3.0
version: 3.3.0(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)(@nestjs/testing@10.3.2(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)(@nestjs/microservices@10.3.2)(@nestjs/platform-express@10.3.2))(nest-commander@3.12.0(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)(@types/inquirer@8.2.9))
nx:
specifier: 19.2.0
version: 19.2.0(@swc-node/register@1.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.11))
nx-uvu:
specifier: ^1.3.1
version: 1.3.1(nx@19.2.0(@swc-node/register@1.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
on-exit-leak-free:
specifier: ^2.1.2
version: 2.1.2
pactum:
specifier: ^3.5.1
version: 3.5.1
pino:
specifier: 8.16.0
version: 8.16.0
preact:
specifier: ^10.18.1
version: 10.18.1
prettier:
specifier: ^3.0.3
version: 3.0.3
react:
specifier: ^18.2.0
version: 18.2.0
react-dom:
specifier: ^18.2.0
version: 18.2.0(react@18.2.0)
redis:
specifier: ^4.6.10
version: 4.6.10
reflect-metadata:
specifier: ^0.2.1
version: 0.2.1
remark-directive:
specifier: ^3.0.0
version: 3.0.0
rimraf:
specifier: ^5.0.5
version: 5.0.5
rxjs:
specifier: ^7.8.1
version: 7.8.1
semver:
specifier: ^7.6.2
version: 7.6.2
socket.io:
specifier: 4.7.2
version: 4.7.2
socket.io-client:
specifier: 4.7.2
version: 4.7.2
sonic-boom:
specifier: ^3.7.0
version: 3.7.0
tree-kill:
specifier: ^1.2.2
version: 1.2.2
ts-morph:
specifier: 22.0.0
version: 22.0.0
ts-node:
specifier: ^10.9.1
version: 10.9.1(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.9)(typescript@5.4.5)
tsconfig-paths:
specifier: ^4.2.0
version: 4.2.0
typescript:
specifier: 5.4.5
version: 5.4.5
unist-util-visit:
specifier: ^5.0.0
version: 5.0.0
url-loader:
specifier: ^4.1.1
version: 4.1.1(webpack@5.89.0(@swc/core@1.5.7(@swc/helpers@0.5.11)))
uvu:
specifier: ^0.5.6
version: 0.5.6
winston:
specifier: ^3.11.0
version: 3.11.0
ws:
specifier: 8.14.2
version: 8.14.2
benchmarks/bench: {}
benchmarks/interceptor: {}
benchmarks/logger: {}
packages/cli:
dependencies:
'@nestjs/common':
specifier: ^10.3.2
version: 10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1)
'@nestjs/core':
specifier: ^10.3.2
version: 10.3.2(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/microservices@10.3.2)(@nestjs/platform-express@10.3.2)(@nestjs/websockets@10.3.2)(encoding@0.1.13)(reflect-metadata@0.2.1)(rxjs@7.8.1)
'@ogma/common':
specifier: workspace:^1.0.0
version: link:../common
nest-commander:
specifier: 3.9.0
version: 3.9.0(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)(@types/inquirer@8.2.9)
reflect-metadata:
specifier: 0.2.1
version: 0.2.1
packages/common: {}
packages/instrumentation:
dependencies:
'@ogma/logger':
specifier: ^3.2.0
version: 3.3.0
'@opentelemetry/api':
specifier: ^1.3.0
version: 1.6.0
'@opentelemetry/context-async-hooks':
specifier: ^1.25.0
version: 1.25.0(@opentelemetry/api@1.6.0)
'@opentelemetry/instrumentation':
specifier: ^0.44.0
version: 0.44.0(@opentelemetry/api@1.6.0)
'@opentelemetry/sdk-trace-base':
specifier: ^1.25.0
version: 1.25.0(@opentelemetry/api@1.6.0)
'@opentelemetry/sdk-trace-node':
specifier: ^1.25.0
version: 1.25.0(@opentelemetry/api@1.6.0)
tslib:
specifier: ^2.3.0
version: 2.6.2
packages/logger:
dependencies:
'@ogma/common':
specifier: workspace:^1.0.0
version: link:../common
'@ogma/styler':
specifier: workspace:^1.0.0
version: link:../styler
fast-safe-stringify:
specifier: 2.1.1
version: 2.1.1
on-exit-leak-free:
specifier: ^2.1.0
version: 2.1.2
sonic-boom:
specifier: ^3.2.1
version: 3.7.0
packages/nestjs-module:
dependencies:
'@nestjs/common':
specifier: ^9.0.0 || ^10.0.0
version: 10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1)
'@nestjs/core':
specifier: ^9.0.0 || ^10.0.0
version: 10.3.2(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/microservices@10.3.2)(@nestjs/platform-express@10.3.2)(@nestjs/websockets@10.3.2)(encoding@0.1.13)(reflect-metadata@0.2.1)(rxjs@7.8.1)
'@ogma/logger':
specifier: workspace:^3.4.0
version: link:../logger
'@ogma/styler':
specifier: workspace:^1.0.0
version: link:../styler
decorate-all:
specifier: 1.2.1
version: 1.2.1(reflect-metadata@0.2.1)
reflect-metadata:
specifier: ^0.1.0 || ^0.2.1
version: 0.2.1
rxjs:
specifier: ^7.0.0
version: 7.8.1
packages/platform-express:
dependencies:
'@nestjs/platform-express':
specifier: ^9.0.0 || ^10.0.0
version: 10.3.2(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)
'@ogma/nestjs-module':
specifier: workspace:^5.0.0
version: link:../nestjs-module
packages/platform-fastify:
dependencies:
'@nestjs/platform-fastify':
specifier: ^9.0.0 || ^10.0.0
version: 10.3.2(@fastify/static@6.11.2)(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)
'@ogma/nestjs-module':
specifier: workspace:^5.0.0
version: link:../nestjs-module
fastify:
specifier: '>=4.0.0'
version: 4.18.0
packages/platform-graphql:
dependencies:
'@nestjs/graphql':
specifier: ^10.0.0 || ^11.0.0 || ^12.0.0
version: 12.1.0(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.1)(reflect-metadata@0.2.1)(ts-morph@22.0.0)
'@ogma/nestjs-module':
specifier: workspace:^5.0.0
version: link:../nestjs-module
'@ogma/platform-express':
specifier: workspace:^5.0.0
version: link:../platform-express
packages/platform-graphql-fastify:
dependencies:
'@nestjs/graphql':
specifier: ^10.0.0 || ^11.0.0 || ^12.0.0
version: 12.1.0(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)(class-transformer@0.5.1)(class-validator@0.14.0)(graphql@16.8.1)(reflect-metadata@0.2.1)(ts-morph@22.0.0)
'@ogma/nestjs-module':
specifier: workspace:^5.0.0
version: link:../nestjs-module
'@ogma/platform-fastify':
specifier: workspace:^5.0.0
version: link:../platform-fastify
packages/platform-grpc:
dependencies:
'@grpc/grpc-js':
specifier: ^1.7.3
version: 1.9.6
'@nestjs/microservices':
specifier: ^9.0.0 || ^10.0.0
version: 10.3.2(@grpc/grpc-js@1.9.6)(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)(@nestjs/websockets@10.3.2)(amqp-connection-manager@4.1.14(amqplib@0.10.3))(amqplib@0.10.3)(ioredis@5.3.2)(kafkajs@2.2.4)(mqtt@4.3.7)(nats@2.17.0)(reflect-metadata@0.2.1)(rxjs@7.8.1)
'@ogma/nestjs-module':
specifier: workspace:^5.0.0
version: link:../nestjs-module
packages/platform-kafka:
dependencies:
'@nestjs/microservices':
specifier: ^9.0.0 || ^10.0.0
version: 10.3.2(@grpc/grpc-js@1.9.6)(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)(@nestjs/websockets@10.3.2)(amqp-connection-manager@4.1.14(amqplib@0.10.3))(amqplib@0.10.3)(ioredis@5.3.2)(kafkajs@2.2.4)(mqtt@4.3.7)(nats@2.17.0)(reflect-metadata@0.2.1)(rxjs@7.8.1)
'@ogma/nestjs-module':
specifier: workspace:^5.0.0
version: link:../nestjs-module
kafkajs:
specifier: ^1.12.0 || ^2.0.0
version: 2.2.4
packages/platform-mqtt:
dependencies:
'@nestjs/microservices':
specifier: ^9.0.0 || ^10.0.0
version: 10.3.2(@grpc/grpc-js@1.9.6)(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)(@nestjs/websockets@10.3.2)(amqp-connection-manager@4.1.14(amqplib@0.10.3))(amqplib@0.10.3)(ioredis@5.3.2)(kafkajs@2.2.4)(mqtt@4.3.7)(nats@2.17.0)(reflect-metadata@0.2.1)(rxjs@7.8.1)
'@ogma/nestjs-module':
specifier: workspace:^5.0.0
version: link:../nestjs-module
mqtt:
specifier: ^4.0.0
version: 4.3.7
packages/platform-nats:
dependencies:
'@nestjs/microservices':
specifier: ^9.0.0 || ^10.0.0
version: 10.3.2(@grpc/grpc-js@1.9.6)(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)(@nestjs/websockets@10.3.2)(amqp-connection-manager@4.1.14(amqplib@0.10.3))(amqplib@0.10.3)(ioredis@5.3.2)(kafkajs@2.2.4)(mqtt@4.3.7)(nats@2.17.0)(reflect-metadata@0.2.1)(rxjs@7.8.1)
'@ogma/nestjs-module':
specifier: workspace:^5.0.0
version: link:../nestjs-module
nats:
specifier: ^1.4.0 || ^2.0.0
version: 2.17.0
packages/platform-rabbitmq:
dependencies:
'@nestjs/microservices':
specifier: ^9.0.0 || ^10.0.0
version: 10.3.2(@grpc/grpc-js@1.9.6)(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)(@nestjs/websockets@10.3.2)(amqp-connection-manager@4.1.14(amqplib@0.10.3))(amqplib@0.10.3)(ioredis@5.3.2)(kafkajs@2.2.4)(mqtt@4.3.7)(nats@2.17.0)(reflect-metadata@0.2.1)(rxjs@7.8.1)
'@ogma/nestjs-module':
specifier: workspace:^5.0.0
version: link:../nestjs-module
amqp-connection-manager:
specifier: ^3.2.0 || ^4.0.0
version: 4.1.14(amqplib@0.10.3)
amqplib:
specifier: ^0.5.0 || ^0.8.0 || ^0.10.0
version: 0.10.3
packages/platform-redis:
dependencies:
'@nestjs/microservices':
specifier: ^9.0.0 || ^10.0.0
version: 10.3.2(@grpc/grpc-js@1.9.6)(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)(@nestjs/websockets@10.3.2)(amqp-connection-manager@4.1.14(amqplib@0.10.3))(amqplib@0.10.3)(ioredis@5.3.2)(kafkajs@2.2.4)(mqtt@4.3.7)(nats@2.17.0)(reflect-metadata@0.2.1)(rxjs@7.8.1)
'@ogma/nestjs-module':
specifier: workspace:^5.0.0
version: link:../nestjs-module
redis:
specifier: ^3.0.0 || ^4.0.0
version: 4.6.10
packages/platform-socket.io:
dependencies:
'@nestjs/platform-socket.io':
specifier: ^9.0.0 || ^10.0.0
version: 10.3.2(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/websockets@10.3.2)(rxjs@7.8.1)
'@nestjs/websockets':
specifier: ^9.0.0 || ^10.0.0
version: 10.3.2(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)(@nestjs/platform-socket.io@10.3.2)(reflect-metadata@0.2.1)(rxjs@7.8.1)
'@ogma/nestjs-module':
specifier: workspace:^5.0.0
version: link:../nestjs-module
socket.io:
specifier: ^4.0.0
version: 4.7.2
packages/platform-tcp:
dependencies:
'@nestjs/microservices':
specifier: ^9.0.0 || ^10.0.0
version: 10.3.2(@grpc/grpc-js@1.9.6)(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)(@nestjs/websockets@10.3.2)(amqp-connection-manager@4.1.14(amqplib@0.10.3))(amqplib@0.10.3)(ioredis@5.3.2)(kafkajs@2.2.4)(mqtt@4.3.7)(nats@2.17.0)(reflect-metadata@0.2.1)(rxjs@7.8.1)
'@ogma/nestjs-module':
specifier: workspace:^5.0.0
version: link:../nestjs-module
packages/platform-ws:
dependencies:
'@nestjs/platform-ws':
specifier: ^9.0.0 || ^10.0.0
version: 10.3.2(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/websockets@10.3.2)(rxjs@7.8.1)
'@nestjs/websockets':
specifier: ^9.0.0 || ^10.0.0
version: 10.3.2(@nestjs/common@10.3.2(class-transformer@0.5.1)(class-validator@0.14.0)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@10.3.2)(@nestjs/platform-socket.io@10.3.2)(reflect-metadata@0.2.1)(rxjs@7.8.1)
'@ogma/nestjs-module':
specifier: workspace:^5.0.0
version: link:../nestjs-module
ws:
specifier: ^7.4.2 || ^8.0.0
version: 8.14.2
packages/styler:
dependencies:
'@ogma/common':
specifier: ^1.1.1
version: 1.2.0
packages:
'@aashutoshrathi/word-wrap@1.2.6':
resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
engines: {node: '>=0.10.0'}
'@acuminous/bitsyntax@0.1.2':
resolution: {integrity: sha512-29lUK80d1muEQqiUsSo+3A0yP6CdspgC95EnKBMi22Xlwt79i/En4Vr67+cXhU+cZjbti3TgGGC5wy1stIywVQ==}
engines: {node: '>=0.8'}
'@algolia/autocomplete-core@1.9.3':
resolution: {integrity: sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==}
'@algolia/autocomplete-plugin-algolia-insights@1.9.3':
resolution: {integrity: sha512-a/yTUkcO/Vyy+JffmAnTWbr4/90cLzw+CC3bRbhnULr/EM0fGNvM13oQQ14f2moLMcVDyAx/leczLlAOovhSZg==}
peerDependencies:
search-insights: '>= 1 < 3'
'@algolia/autocomplete-preset-algolia@1.9.3':
resolution: {integrity: sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
'@algolia/autocomplete-shared@1.9.3':
resolution: {integrity: sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
'@algolia/cache-browser-local-storage@4.20.0':
resolution: {integrity: sha512-uujahcBt4DxduBTvYdwO3sBfHuJvJokiC3BP1+O70fglmE1ShkH8lpXqZBac1rrU3FnNYSUs4pL9lBdTKeRPOQ==}
'@algolia/cache-common@4.20.0':
resolution: {integrity: sha512-vCfxauaZutL3NImzB2G9LjLt36vKAckc6DhMp05An14kVo8F1Yofb6SIl6U3SaEz8pG2QOB9ptwM5c+zGevwIQ==}
'@algolia/cache-in-memory@4.20.0':
resolution: {integrity: sha512-Wm9ak/IaacAZXS4mB3+qF/KCoVSBV6aLgIGFEtQtJwjv64g4ePMapORGmCyulCFwfePaRAtcaTbMcJF+voc/bg==}
'@algolia/client-account@4.20.0':
resolution: {integrity: sha512-GGToLQvrwo7am4zVkZTnKa72pheQeez/16sURDWm7Seyz+HUxKi3BM6fthVVPUEBhtJ0reyVtuK9ArmnaKl10Q==}
'@algolia/client-analytics@4.20.0':
resolution: {integrity: sha512-EIr+PdFMOallRdBTHHdKI3CstslgLORQG7844Mq84ib5oVFRVASuuPmG4bXBgiDbcsMLUeOC6zRVJhv1KWI0ug==}
'@algolia/client-common@4.20.0':
resolution: {integrity: sha512-P3WgMdEss915p+knMMSd/fwiHRHKvDu4DYRrCRaBrsfFw7EQHon+EbRSm4QisS9NYdxbS04kcvNoavVGthyfqQ==}
'@algolia/client-personalization@4.20.0':
resolution: {integrity: sha512-N9+zx0tWOQsLc3K4PVRDV8GUeOLAY0i445En79Pr3zWB+m67V+n/8w4Kw1C5LlbHDDJcyhMMIlqezh6BEk7xAQ==}
'@algolia/client-search@4.20.0':
resolution: {integrity: sha512-zgwqnMvhWLdpzKTpd3sGmMlr4c+iS7eyyLGiaO51zDZWGMkpgoNVmltkzdBwxOVXz0RsFMznIxB9zuarUv4TZg==}
'@algolia/logger-common@4.20.0':
resolution: {integrity: sha512-xouigCMB5WJYEwvoWW5XDv7Z9f0A8VoXJc3VKwlHJw/je+3p2RcDXfksLI4G4lIVncFUYMZx30tP/rsdlvvzHQ==}
'@algolia/logger-console@4.20.0':
resolution: {integrity: sha512-THlIGG1g/FS63z0StQqDhT6bprUczBI8wnLT3JWvfAQDZX5P6fCg7dG+pIrUBpDIHGszgkqYEqECaKKsdNKOUA==}
'@algolia/requester-browser-xhr@4.20.0':
resolution: {integrity: sha512-HbzoSjcjuUmYOkcHECkVTwAelmvTlgs48N6Owt4FnTOQdwn0b8pdht9eMgishvk8+F8bal354nhx/xOoTfwiAw==}
'@algolia/requester-common@4.20.0':
resolution: {integrity: sha512-9h6ye6RY/BkfmeJp7Z8gyyeMrmmWsMOCRBXQDs4mZKKsyVlfIVICpcSibbeYcuUdurLhIlrOUkH3rQEgZzonng==}
'@algolia/requester-node-http@4.20.0':
resolution: {integrity: sha512-ocJ66L60ABSSTRFnCHIEZpNHv6qTxsBwJEPfYaSBsLQodm0F9ptvalFkHMpvj5DfE22oZrcrLbOYM2bdPJRHng==}
'@algolia/transporter@4.20.0':
resolution: {integrity: sha512-Lsii1pGWOAISbzeyuf+r/GPhvHMPHSPrTDWNcIzOE1SG1inlJHICaVe2ikuoRjcpgxZNU54Jl+if15SUCsaTUg==}
'@ampproject/remapping@2.2.1':
resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
engines: {node: '>=6.0.0'}
'@angular-devkit/core@16.0.1':
resolution: {integrity: sha512-2uz98IqkKJlgnHbWQ7VeL4pb+snGAZXIama2KXi+k9GsRntdcw+udX8rL3G9SdUGUF+m6+147Y1oRBMHsO/v4w==}
engines: {node: ^16.14.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
chokidar: ^3.5.2
peerDependenciesMeta:
chokidar:
optional: true
'@angular-devkit/schematics@16.0.1':
resolution: {integrity: sha512-A9D0LTYmiqiBa90GKcSuWb7hUouGIbm/AHbJbjL85WLLRbQA2PwKl7P5Mpd6nS/ZC0kfG4VQY3VOaDvb3qpI9g==}
engines: {node: ^16.14.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
'@apollo/cache-control-types@1.0.3':
resolution: {integrity: sha512-F17/vCp7QVwom9eG7ToauIKdAxpSoadsJnqIfyryLFSkLSOEqu+eC5Z3N8OXcUVStuOMcNHlyraRsA6rRICu4g==}
peerDependencies:
graphql: 14.x || 15.x || 16.x
'@apollo/composition@2.5.6':
resolution: {integrity: sha512-px3xvqgb3tyh7PtRNSBm0I5U2wmI+KcJBoM4xIVMEA+9vk3Mc46U3yXc/fTSGd6EPQD90jXVC56fwdWw/+f7oA==}
engines: {node: '>=14.15.0'}
peerDependencies:
graphql: ^16.5.0
'@apollo/federation-internals@2.5.6':
resolution: {integrity: sha512-ZNJdEcWfKXlFDRYtoCftApQBJl1/aDUBnBfFJeXeTXW4FVhyGotVkWbJUIBlCHMISGmQQDNfRay9Dcp7uIda9A==}
engines: {node: '>=14.15.0'}
peerDependencies:
graphql: ^16.5.0
'@apollo/gateway@2.5.6':
resolution: {integrity: sha512-zec9agl5UOjVM+bSGvldHlyx0OjFu6Mt8i/IfPi4fkH+8LJYzbshDTOQK2rDtPfbJoJpmgpCSO8XPzWZVOGvog==}
engines: {node: '>=14.15.0'}
peerDependencies:
graphql: ^16.5.0
'@apollo/protobufjs@1.2.6':
resolution: {integrity: sha512-Wqo1oSHNUj/jxmsVp4iR3I480p6qdqHikn38lKrFhfzcDJ7lwd7Ck7cHRl4JE81tWNArl77xhnG/OkZhxKBYOw==}
hasBin: true
'@apollo/protobufjs@1.2.7':
resolution: {integrity: sha512-Lahx5zntHPZia35myYDBRuF58tlwPskwHc5CWBZC/4bMKB6siTBWwtMrkqXcsNwQiFSzSx5hKdRPUmemrEp3Gg==}
hasBin: true
'@apollo/query-graphs@2.5.6':
resolution: {integrity: sha512-W0Raf+hL93XgF3gNXE0eij1m7DGv1zfxsGEUG/GAuBtasOH3YMN5b4HZZm11IDCrQ45OltrnZtAZX8c6UqskrA==}
engines: {node: '>=14.15.0'}
peerDependencies:
graphql: ^16.5.0
'@apollo/query-planner@2.5.6':
resolution: {integrity: sha512-7qrQl4/s1FOK0TZaa+0WwL17Us9Oy1I8bfpfjf+3xp8NtgOnFijXzJ32IOdjhW+mkt5EC4LrkBUWvygCULuMyQ==}
engines: {node: '>=14.15.0'}
peerDependencies:
graphql: ^16.5.0
'@apollo/server-gateway-interface@1.1.1':
resolution: {integrity: sha512-pGwCl/po6+rxRmDMFgozKQo2pbsSwE91TpsDBAOgf74CRDPXHHtM88wbwjab0wMMZh95QfR45GGyDIdhY24bkQ==}
peerDependencies:
graphql: 14.x || 15.x || 16.x
'@apollo/server-plugin-landing-page-graphql-playground@4.0.0':
resolution: {integrity: sha512-PBDtKI/chJ+hHeoJUUH9Kuqu58txQl00vUGuxqiC9XcReulIg7RjsyD0G1u3drX4V709bxkL5S0nTeXfRHD0qA==}
engines: {node: '>=14.0'}
deprecated: The use of GraphQL Playground in Apollo Server was supported in previous versions, but this is no longer the case as of December 31, 2022. This package exists for v4 migration purposes only. We do not intend to resolve security issues or other bugs with this package if they arise, so please migrate away from this to [Apollo Server's default Explorer](https://www.apollographql.com/docs/apollo-server/api/plugin/landing-pages) as soon as possible.
peerDependencies:
'@apollo/server': ^4.0.0
'@apollo/server@4.9.4':
resolution: {integrity: sha512-lopNDM3sZerTcYH/P85QX5HqSNV4HoVbtX3zOrf0ak7eplhPDiGVyF0jQWRbL64znG6KXW+nMuLDTyFTMQnvgA==}
engines: {node: '>=14.16.0'}
peerDependencies:
graphql: ^16.6.0
'@apollo/usage-reporting-protobuf@4.1.1':
resolution: {integrity: sha512-u40dIUePHaSKVshcedO7Wp+mPiZsaU6xjv9J+VyxpoU/zL6Jle+9zWeG98tr/+SZ0nZ4OXhrbb8SNr0rAPpIDA==}
'@apollo/utils.createhash@2.0.1':
resolution: {integrity: sha512-fQO4/ZOP8LcXWvMNhKiee+2KuKyqIcfHrICA+M4lj/h/Lh1H10ICcUtk6N/chnEo5HXu0yejg64wshdaiFitJg==}
engines: {node: '>=14'}
'@apollo/utils.dropunuseddefinitions@1.1.0':
resolution: {integrity: sha512-jU1XjMr6ec9pPoL+BFWzEPW7VHHulVdGKMkPAMiCigpVIT11VmCbnij0bWob8uS3ODJ65tZLYKAh/55vLw2rbg==}
engines: {node: '>=12.13.0'}
peerDependencies:
graphql: 14.x || 15.x || 16.x
'@apollo/utils.dropunuseddefinitions@2.0.1':
resolution: {integrity: sha512-EsPIBqsSt2BwDsv8Wu76LK5R1KtsVkNoO4b0M5aK0hx+dGg9xJXuqlr7Fo34Dl+y83jmzn+UvEW+t1/GP2melA==}
engines: {node: '>=14'}
peerDependencies:
graphql: 14.x || 15.x || 16.x
'@apollo/utils.fetcher@2.0.1':
resolution: {integrity: sha512-jvvon885hEyWXd4H6zpWeN3tl88QcWnHp5gWF5OPF34uhvoR+DFqcNxs9vrRaBBSY3qda3Qe0bdud7tz2zGx1A==}
engines: {node: '>=14'}
'@apollo/utils.isnodelike@2.0.1':
resolution: {integrity: sha512-w41XyepR+jBEuVpoRM715N2ZD0xMD413UiJx8w5xnAZD2ZkSJnMJBoIzauK83kJpSgNuR6ywbV29jG9NmxjK0Q==}
engines: {node: '>=14'}
'@apollo/utils.keyvaluecache@1.0.2':
resolution: {integrity: sha512-p7PVdLPMnPzmXSQVEsy27cYEjVON+SH/Wb7COyW3rQN8+wJgT1nv9jZouYtztWW8ZgTkii5T6tC9qfoDREd4mg==}
'@apollo/utils.keyvaluecache@2.1.1':
resolution: {integrity: sha512-qVo5PvUUMD8oB9oYvq4ViCjYAMWnZ5zZwEjNF37L2m1u528x5mueMlU+Cr1UinupCgdB78g+egA1G98rbJ03Vw==}
engines: {node: '>=14'}
'@apollo/utils.logger@1.0.1':
resolution: {integrity: sha512-XdlzoY7fYNK4OIcvMD2G94RoFZbzTQaNP0jozmqqMudmaGo2I/2Jx71xlDJ801mWA/mbYRihyaw6KJii7k5RVA==}
'@apollo/utils.logger@2.0.1':
resolution: {integrity: sha512-YuplwLHaHf1oviidB7MxnCXAdHp3IqYV8n0momZ3JfLniae92eYqMIx+j5qJFX6WKJPs6q7bczmV4lXIsTu5Pg==}
engines: {node: '>=14'}
'@apollo/utils.printwithreducedwhitespace@1.1.0':
resolution: {integrity: sha512-GfFSkAv3n1toDZ4V6u2d7L4xMwLA+lv+6hqXicMN9KELSJ9yy9RzuEXaX73c/Ry+GzRsBy/fdSUGayGqdHfT2Q==}
engines: {node: '>=12.13.0'}
peerDependencies:
graphql: 14.x || 15.x || 16.x
'@apollo/utils.printwithreducedwhitespace@2.0.1':
resolution: {integrity: sha512-9M4LUXV/fQBh8vZWlLvb/HyyhjJ77/I5ZKu+NBWV/BmYGyRmoEP9EVAy7LCVoY3t8BDcyCAGfxJaLFCSuQkPUg==}
engines: {node: '>=14'}
peerDependencies:
graphql: 14.x || 15.x || 16.x
'@apollo/utils.removealiases@1.0.0':
resolution: {integrity: sha512-6cM8sEOJW2LaGjL/0vHV0GtRaSekrPQR4DiywaApQlL9EdROASZU5PsQibe2MWeZCOhNrPRuHh4wDMwPsWTn8A==}
engines: {node: '>=12.13.0'}
peerDependencies:
graphql: 14.x || 15.x || 16.x
'@apollo/utils.removealiases@2.0.1':
resolution: {integrity: sha512-0joRc2HBO4u594Op1nev+mUF6yRnxoUH64xw8x3bX7n8QBDYdeYgY4tF0vJReTy+zdn2xv6fMsquATSgC722FA==}
engines: {node: '>=14'}
peerDependencies:
graphql: 14.x || 15.x || 16.x
'@apollo/utils.sortast@1.1.0':
resolution: {integrity: sha512-VPlTsmUnOwzPK5yGZENN069y6uUHgeiSlpEhRnLFYwYNoJHsuJq2vXVwIaSmts015WTPa2fpz1inkLYByeuRQA==}
engines: {node: '>=12.13.0'}
peerDependencies:
graphql: 14.x || 15.x || 16.x
'@apollo/utils.sortast@2.0.1':
resolution: {integrity: sha512-eciIavsWpJ09za1pn37wpsCGrQNXUhM0TktnZmHwO+Zy9O4fu/WdB4+5BvVhFiZYOXvfjzJUcc+hsIV8RUOtMw==}
engines: {node: '>=14'}
peerDependencies:
graphql: 14.x || 15.x || 16.x
'@apollo/utils.stripsensitiveliterals@1.2.0':
resolution: {integrity: sha512-E41rDUzkz/cdikM5147d8nfCFVKovXxKBcjvLEQ7bjZm/cg9zEcXvS6vFY8ugTubI3fn6zoqo0CyU8zT+BGP9w==}
engines: {node: '>=12.13.0'}
peerDependencies:
graphql: 14.x || 15.x || 16.x
'@apollo/utils.stripsensitiveliterals@2.0.1':
resolution: {integrity: sha512-QJs7HtzXS/JIPMKWimFnUMK7VjkGQTzqD9bKD1h3iuPAqLsxd0mUNVbkYOPTsDhUKgcvUOfOqOJWYohAKMvcSA==}
engines: {node: '>=14'}
peerDependencies:
graphql: 14.x || 15.x || 16.x
'@apollo/utils.usagereporting@1.0.1':
resolution: {integrity: sha512-6dk+0hZlnDbahDBB2mP/PZ5ybrtCJdLMbeNJD+TJpKyZmSY6bA3SjI8Cr2EM9QA+AdziywuWg+SgbWUF3/zQqQ==}
engines: {node: '>=12.13.0'}
peerDependencies:
graphql: 14.x || 15.x || 16.x
'@apollo/utils.usagereporting@2.1.0':
resolution: {integrity: sha512-LPSlBrn+S17oBy5eWkrRSGb98sWmnEzo3DPTZgp8IQc8sJe0prDgDuppGq4NeQlpoqEHz0hQeYHAOA0Z3aQsxQ==}
engines: {node: '>=14'}
peerDependencies:
graphql: 14.x || 15.x || 16.x
'@apollo/utils.withrequired@2.0.1':
resolution: {integrity: sha512-YBDiuAX9i1lLc6GeTy1m7DGLFn/gMnvXqlalOIMjM7DeOgIacEjjfwPqb0M1CQ2v11HhR15d1NmxJoRCfrNqcA==}
engines: {node: '>=14'}
'@apollographql/apollo-tools@0.5.4':
resolution: {integrity: sha512-shM3q7rUbNyXVVRkQJQseXv6bnYM3BUma/eZhwXR4xsuM+bqWnJKvW7SAfRjP7LuSCocrexa5AXhjjawNHrIlw==}
engines: {node: '>=8', npm: '>=6'}
peerDependencies:
graphql: ^14.2.1 || ^15.0.0 || ^16.0.0
'@apollographql/graphql-playground-html@1.6.29':
resolution: {integrity: sha512-xCcXpoz52rI4ksJSdOCxeOCn2DLocxwHf9dVT/Q90Pte1LX+LY+91SFtJF3KXVHH8kEin+g1KKCQPKBjZJfWNA==}
'@arr/every@1.0.1':
resolution: {integrity: sha512-UQFQ6SgyJ6LX42W8rHCs8KVc0JS0tzVL9ct4XYedJukskYVWTo49tNiMEK9C2HTyarbNiT/RVIRSY82vH+6sTg==}
engines: {node: '>=4'}
'@astrojs/compiler@2.2.1':
resolution: {integrity: sha512-NJ1lWKzMkyEjE3W5NpPNAVot4/PLF5om/P6ekxNu3iLS05CaYFTcp7WpYMjdCC252b7wkNVAs45FNkVQ+RHW/g==}
'@astrojs/internal-helpers@0.2.1':
resolution: {integrity: sha512-06DD2ZnItMwUnH81LBLco3tWjcZ1lGU9rLCCBaeUCGYe9cI0wKyY2W3kDyoW1I6GmcWgt1fu+D1CTvz+FIKf8A==}
'@astrojs/markdown-remark@3.3.0':
resolution: {integrity: sha512-ezFzEiZygc/ASe2Eul9v1yrTbNGqSbR348UGNXQ4Dtkx8MYRwfiBfmPm6VnEdfIGkW+bi5qIUReKfc7mPVUkIg==}
peerDependencies:
astro: ^3.3.0
'@astrojs/preact@3.0.1':
resolution: {integrity: sha512-pAfN+U7J4hw7qijqkBx1ZBpPO+ooa+MkKIgshCozfqsHTp18uPflxQUviz0TEzB5nn7hSndzncWuc3pz/HbtJw==}
engines: {node: '>=18.14.1'}
peerDependencies:
preact: ^10.6.5
'@astrojs/prism@3.0.0':
resolution: {integrity: sha512-g61lZupWq1bYbcBnYZqdjndShr/J3l/oFobBKPA3+qMat146zce3nz2kdO4giGbhYDt4gYdhmoBz0vZJ4sIurQ==}
engines: {node: '>=18.14.1'}
'@astrojs/react@3.0.3':
resolution: {integrity: sha512-foliIy1whJobo+ZpsvOMS4WCiR0z4/2Seyxth5xMlweVVM+gA1Lqk0GdzE6F0ISUW9CuXrCRS7ZyTNW8SM6vog==}
engines: {node: '>=18.14.1'}
peerDependencies:
'@types/react': ^17.0.50 || ^18.0.21
'@types/react-dom': ^17.0.17 || ^18.0.6
react: ^17.0.2 || ^18.0.0
react-dom: ^17.0.2 || ^18.0.0
'@astrojs/sitemap@3.0.2':
resolution: {integrity: sha512-ldxCDc0+QHcq2jH4WJFcz5iBc5/SqotEqpT91dhvoLqoRUT5U21rQ6u6qA4FyRVjpd/0Nt1kFjEsRbwoB8IKiQ==}
'@astrojs/telemetry@3.0.3':
resolution: {integrity: sha512-j19Cf5mfyLt9hxgJ9W/FMdAA5Lovfp7/CINNB/7V71GqvygnL7KXhRC3TzfB+PsVQcBtgWZzCXhUWRbmJ64Raw==}
engines: {node: '>=18.14.1'}
'@babel/code-frame@7.22.13':
resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.23.2':
resolution: {integrity: sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==}
engines: {node: '>=6.9.0'}
'@babel/core@7.23.2':
resolution: {integrity: sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.23.0':
resolution: {integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.22.5':
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
'@babel/helper-builder-binary-assignment-operator-visitor@7.22.15':
resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.22.15':
resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==}
engines: {node: '>=6.9.0'}
'@babel/helper-create-class-features-plugin@7.22.15':
resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-create-regexp-features-plugin@7.22.15':
resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-define-polyfill-provider@0.4.3':
resolution: {integrity: sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
'@babel/helper-environment-visitor@7.22.20':
resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
engines: {node: '>=6.9.0'}
'@babel/helper-function-name@7.23.0':
resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
engines: {node: '>=6.9.0'}
'@babel/helper-hoist-variables@7.22.5':