-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpnpm-lock.yaml
19899 lines (15765 loc) · 681 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.24.0
'@apollo/gateway':
specifier: 2.5.6
version: 2.5.6(encoding@0.1.13)(graphql@16.10.0)
'@apollo/server':
specifier: 4.9.4
version: 4.9.4(encoding@0.1.13)(graphql@16.10.0)
'@astrojs/preact':
specifier: ^3.0.1
version: 3.5.4(@babel/core@7.26.7)(@types/node@22.12.0)(preact@10.25.4)(terser@5.37.0)
'@astrojs/react':
specifier: ^3.0.3
version: 3.6.3(@types/node@22.12.0)(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(terser@5.37.0)
'@astrojs/sitemap':
specifier: ^3.0.2
version: 3.2.1
'@changesets/cli':
specifier: ^2.26.2
version: 2.27.12
'@commitlint/cli':
specifier: 17.8.0
version: 17.8.0(@swc/core@1.5.7(@swc/helpers@0.5.15))
'@commitlint/config-conventional':
specifier: 17.8.0
version: 17.8.0
'@docsearch/css':
specifier: ^3.5.2
version: 3.8.3
'@docsearch/react':
specifier: ^3.5.2
version: 3.8.3(@algolia/client-search@4.24.0)(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.3)
'@graphql-tools/schema':
specifier: 10.0.0
version: 10.0.0(graphql@16.10.0)
'@graphql-tools/utils':
specifier: ^10.0.7
version: 10.7.2(graphql@16.10.0)
'@grpc/grpc-js':
specifier: ^1.9.6
version: 1.12.5
'@grpc/proto-loader':
specifier: 0.7.10
version: 0.7.10
'@mdx-js/react':
specifier: 2.3.0
version: 2.3.0(react@18.3.1)
'@mercuriusjs/gateway':
specifier: ^2.0.0
version: 2.2.0
'@nestjs/apollo':
specifier: ^13.0.2
version: 13.0.2(@apollo/gateway@2.5.6(encoding@0.1.13)(graphql@16.10.0))(@apollo/server@4.9.4(encoding@0.1.13)(graphql@16.10.0))(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)(@nestjs/graphql@13.0.2(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)(class-transformer@0.5.1)(class-validator@0.14.1)(graphql@16.10.0)(reflect-metadata@0.2.1)(ts-morph@24.0.0))(graphql@16.10.0)
'@nestjs/common':
specifier: ^11.0.7
version: 11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1)
'@nestjs/core':
specifier: ^11.0.7
version: 11.0.7(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/microservices@11.0.7)(@nestjs/platform-express@11.0.7)(@nestjs/websockets@11.0.7)(reflect-metadata@0.2.1)(rxjs@7.8.1)
'@nestjs/graphql':
specifier: ^13.0.2
version: 13.0.2(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)(class-transformer@0.5.1)(class-validator@0.14.1)(graphql@16.10.0)(reflect-metadata@0.2.1)(ts-morph@24.0.0)
'@nestjs/mercurius':
specifier: ^12.2.2
version: 12.2.2(@mercuriusjs/federation@2.0.0)(@mercuriusjs/gateway@2.2.0)(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/graphql@13.0.2(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)(class-transformer@0.5.1)(class-validator@0.14.1)(graphql@16.10.0)(reflect-metadata@0.2.1)(ts-morph@24.0.0))(fastify@4.18.0)(graphql@16.10.0)(mercurius@13.1.0(graphql@16.10.0))
'@nestjs/microservices':
specifier: ^11.0.7
version: 11.0.7(@grpc/grpc-js@1.12.5)(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)(@nestjs/websockets@11.0.7)(amqp-connection-manager@4.1.14(amqplib@0.10.3))(amqplib@0.10.3)(ioredis@5.4.2)(kafkajs@2.2.4)(mqtt@4.3.8)(nats@2.29.1)(reflect-metadata@0.2.1)(rxjs@7.8.1)
'@nestjs/platform-express':
specifier: ^11.0.7
version: 11.0.7(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)
'@nestjs/platform-fastify':
specifier: ^11.0.7
version: 11.0.7(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)
'@nestjs/platform-socket.io':
specifier: ^11.0.7
version: 11.0.7(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/websockets@11.0.7)(rxjs@7.8.1)
'@nestjs/platform-ws':
specifier: ^11.0.7
version: 11.0.7(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/websockets@11.0.7)(rxjs@7.8.1)
'@nestjs/testing':
specifier: ^11.0.7
version: 11.0.7(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)(@nestjs/microservices@11.0.7)(@nestjs/platform-express@11.0.7)
'@nestjs/websockets':
specifier: ^11.0.7
version: 11.0.7(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)(@nestjs/platform-socket.io@11.0.7)(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.2(@swc/core@1.5.7(@swc/helpers@0.5.15))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.15)))
'@nrwl/eslint-plugin-nx':
specifier: 19.2.0
version: 19.2.0(@babel/traverse@7.26.7)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.15))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.15))(@types/node@22.12.0)(@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.2(@swc/core@1.5.7(@swc/helpers@0.5.15))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.15)))(typescript@5.4.5)
'@nrwl/js':
specifier: 19.2.0
version: 19.2.0(@babel/traverse@7.26.7)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.15))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.15))(@types/node@22.12.0)(nx@19.2.0(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.15))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.15)))(typescript@5.4.5)
'@nrwl/linter':
specifier: 19.2.0
version: 19.2.0(@babel/traverse@7.26.7)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.15))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.15))(@types/node@22.12.0)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.2.0(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.15))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.15)))
'@nrwl/nest':
specifier: 19.2.0
version: 19.2.0(@babel/traverse@7.26.7)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.15))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.15))(@types/node@22.12.0)(@zkochan/js-yaml@0.0.7)(chokidar@3.6.0)(eslint@8.57.0)(nx@19.2.0(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.15))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.15))(@types/node@22.12.0)(typescript@5.4.5))(typescript@5.4.5)
'@nrwl/node':
specifier: 19.2.0
version: 19.2.0(@babel/traverse@7.26.7)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.15))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.15))(@types/node@22.12.0)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@19.2.0(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.15))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.15)))(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.15))(@types/node@22.12.0)(typescript@5.4.5))(typescript@5.4.5)
'@nrwl/workspace':
specifier: 19.2.0
version: 19.2.0(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.15))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.15))
'@nx/js':
specifier: 19.2.0
version: 19.2.0(@babel/traverse@7.26.7)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.15))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.15))(@types/node@22.12.0)(nx@19.2.0(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.15))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.15)))(typescript@5.4.5)
'@opentelemetry/api':
specifier: ^1.3.0
version: 1.9.0
'@opentelemetry/context-async-hooks':
specifier: ^1.25.0
version: 1.30.1(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation':
specifier: ^0.44.0
version: 0.44.0(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-trace-base':
specifier: ^1.25.0
version: 1.30.1(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-trace-node':
specifier: ^1.25.0
version: 1.30.1(@opentelemetry/api@1.9.0)
'@swc-node/register':
specifier: ~1.9.1
version: 1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.15))(@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.15))(chokidar@3.6.0)
'@swc/core':
specifier: 1.5.7
version: 1.5.7(@swc/helpers@0.5.15)
'@swc/helpers':
specifier: ~0.5.11
version: 0.5.15
'@swc/register':
specifier: ^0.1.10
version: 0.1.10(@swc/core@1.5.7(@swc/helpers@0.5.15))
'@types/benchmark':
specifier: ^2.1.4
version: 2.1.5
'@types/bunyan':
specifier: ^1.8.10
version: 1.8.11
'@types/express':
specifier: ^4.17.20
version: 4.17.21
'@types/express-serve-static-core':
specifier: ^4.17.38
version: 4.19.6
'@types/morgan':
specifier: ^1.9.7
version: 1.9.9
'@types/node':
specifier: 22.12.0
version: 22.12.0
'@types/react':
specifier: ^18.2.29
version: 18.3.18
'@types/react-dom':
specifier: ^18.2.14
version: 18.3.5(@types/react@18.3.18)
'@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.21.2)(graphql@16.10.0)
apollo-server-fastify:
specifier: 3.12.1
version: 3.12.1(encoding@0.1.13)(fastify@4.18.0)(graphql@16.10.0)
astro:
specifier: ^3.3.2
version: 3.6.5(@types/node@22.12.0)(terser@5.37.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.1
clsx:
specifier: ^2.0.0
version: 2.1.1
conventional-changelog-cli:
specifier: ^4.1.0
version: 4.1.0
cz-conventional-changelog:
specifier: ^3.3.0
version: 3.3.0(@types/node@22.12.0)(typescript@5.4.5)
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.2.3(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(prettier@3.4.2)
eslint-plugin-simple-import-sort:
specifier: 10.0.0
version: 10.0.0(eslint@8.57.0)
express:
specifier: ^4.18.2
version: 4.21.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.10.0
hanbi:
specifier: ^1.0.1
version: 1.0.3
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.4.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.10.0)
mercusius^13:
specifier: link:@nestjs/mercusius^13
version: link:@nestjs/mercusius^13
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.8
nats:
specifier: ^2.17.0
version: 2.29.1
nest-commander:
specifier: ^3.12.0
version: 3.16.0(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)(@types/inquirer@8.2.10)(typescript@5.4.5)
nest-commander-testing:
specifier: 3.3.0
version: 3.3.0(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)(@nestjs/testing@11.0.7(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)(@nestjs/microservices@11.0.7)(@nestjs/platform-express@11.0.7))(nest-commander@3.16.0(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)(@types/inquirer@8.2.10)(typescript@5.4.5))
nx:
specifier: 19.2.0
version: 19.2.0(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.15))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.15))
nx-uvu:
specifier: ^1.3.1
version: 1.3.1(nx@19.2.0(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.15))(@swc/types@0.1.7)(typescript@5.4.5))(@swc/core@1.5.7(@swc/helpers@0.5.15)))
on-exit-leak-free:
specifier: ^2.1.2
version: 2.1.2
pactum:
specifier: ^3.5.1
version: 3.7.6
pino:
specifier: 8.16.0
version: 8.16.0
preact:
specifier: ^10.18.1
version: 10.25.4
prettier:
specifier: ^3.0.3
version: 3.4.2
react:
specifier: ^18.2.0
version: 18.3.1
react-dom:
specifier: ^18.2.0
version: 18.3.1(react@18.3.1)
redis:
specifier: ^4.6.10
version: 4.7.0
reflect-metadata:
specifier: ^0.2.1
version: 0.2.1
remark-directive:
specifier: ^3.0.0
version: 3.0.1
rimraf:
specifier: ^5.0.5
version: 5.0.10
rxjs:
specifier: ^7.8.1
version: 7.8.1
semver:
specifier: ^7.6.2
version: 7.7.0
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.8.1
tree-kill:
specifier: ^1.2.2
version: 1.2.2
ts-morph:
specifier: 24.0.0
version: 24.0.0
ts-node:
specifier: ^10.9.1
version: 10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.15))(@types/node@22.12.0)(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.97.1(@swc/core@1.5.7(@swc/helpers@0.5.15)))
uvu:
specifier: ^0.5.6
version: 0.5.6
winston:
specifier: ^3.11.0
version: 3.17.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.4.15(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1)
'@nestjs/core':
specifier: ^10.3.2
version: 10.4.15(@nestjs/common@10.4.15(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/microservices@11.0.7(@grpc/grpc-js@1.12.5)(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)(@nestjs/websockets@11.0.7)(amqp-connection-manager@4.1.14(amqplib@0.10.3))(amqplib@0.10.3)(ioredis@5.4.2)(kafkajs@2.2.4)(mqtt@4.3.8)(nats@2.29.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/platform-express@11.0.7(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7))(@nestjs/websockets@11.0.7(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)(@nestjs/platform-socket.io@11.0.7)(reflect-metadata@0.2.1)(rxjs@7.8.1))(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(nnwgckex5ri5sadd5lve4cfz44)
reflect-metadata:
specifier: 0.2.1
version: 0.2.1
packages/common: {}
packages/instrumentation:
dependencies:
'@ogma/logger':
specifier: ^3.2.0
version: 3.4.0
'@opentelemetry/api':
specifier: ^1.3.0
version: 1.9.0
'@opentelemetry/context-async-hooks':
specifier: ^1.25.0
version: 1.30.1(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation':
specifier: ^0.44.0
version: 0.44.0(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-trace-base':
specifier: ^1.25.0
version: 1.30.1(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-trace-node':
specifier: ^1.25.0
version: 1.30.1(@opentelemetry/api@1.9.0)
tslib:
specifier: ^2.3.0
version: 2.8.1
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.8.1
packages/nestjs-module:
dependencies:
'@nestjs/common':
specifier: ^9.0.0 || ^10.0.0 || ^11.0.0
version: 11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1)
'@nestjs/core':
specifier: ^9.0.0 || ^10.0.0 || ^11.0.0
version: 11.0.7(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/microservices@11.0.7)(@nestjs/platform-express@11.0.7)(@nestjs/websockets@11.0.7)(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 || ^11.0.0
version: 11.0.7(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)
'@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 || ^11.0.0
version: 11.0.7(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)
'@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 || ^13.0.0
version: 13.0.2(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)(class-transformer@0.5.1)(class-validator@0.14.1)(graphql@16.10.0)(reflect-metadata@0.2.1)(ts-morph@24.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 || ^13.0.0
version: 13.0.2(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)(class-transformer@0.5.1)(class-validator@0.14.1)(graphql@16.10.0)(reflect-metadata@0.2.1)(ts-morph@24.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.12.5
'@nestjs/microservices':
specifier: ^9.0.0 || ^10.0.0 || ^11.0.0
version: 11.0.7(@grpc/grpc-js@1.12.5)(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)(@nestjs/websockets@11.0.7)(amqp-connection-manager@4.1.14(amqplib@0.10.3))(amqplib@0.10.3)(ioredis@5.4.2)(kafkajs@2.2.4)(mqtt@4.3.8)(nats@2.29.1)(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 || ^11.0.0
version: 11.0.7(@grpc/grpc-js@1.12.5)(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)(@nestjs/websockets@11.0.7)(amqp-connection-manager@4.1.14(amqplib@0.10.3))(amqplib@0.10.3)(ioredis@5.4.2)(kafkajs@2.2.4)(mqtt@4.3.8)(nats@2.29.1)(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 || ^11.0.0
version: 11.0.7(@grpc/grpc-js@1.12.5)(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)(@nestjs/websockets@11.0.7)(amqp-connection-manager@4.1.14(amqplib@0.10.3))(amqplib@0.10.3)(ioredis@5.4.2)(kafkajs@2.2.4)(mqtt@4.3.8)(nats@2.29.1)(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.8
packages/platform-nats:
dependencies:
'@nestjs/microservices':
specifier: ^9.0.0 || ^10.0.0 || ^11.0.0
version: 11.0.7(@grpc/grpc-js@1.12.5)(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)(@nestjs/websockets@11.0.7)(amqp-connection-manager@4.1.14(amqplib@0.10.3))(amqplib@0.10.3)(ioredis@5.4.2)(kafkajs@2.2.4)(mqtt@4.3.8)(nats@2.29.1)(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.29.1
packages/platform-rabbitmq:
dependencies:
'@nestjs/microservices':
specifier: ^9.0.0 || ^10.0.0 || ^11.0.0
version: 11.0.7(@grpc/grpc-js@1.12.5)(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)(@nestjs/websockets@11.0.7)(amqp-connection-manager@4.1.14(amqplib@0.10.3))(amqplib@0.10.3)(ioredis@5.4.2)(kafkajs@2.2.4)(mqtt@4.3.8)(nats@2.29.1)(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 || ^11.0.0
version: 11.0.7(@grpc/grpc-js@1.12.5)(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)(@nestjs/websockets@11.0.7)(amqp-connection-manager@4.1.14(amqplib@0.10.3))(amqplib@0.10.3)(ioredis@5.4.2)(kafkajs@2.2.4)(mqtt@4.3.8)(nats@2.29.1)(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.7.0
packages/platform-socket.io:
dependencies:
'@nestjs/platform-socket.io':
specifier: ^9.0.0 || ^10.0.0 || ^11.0.0
version: 11.0.7(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/websockets@11.0.7)(rxjs@7.8.1)
'@nestjs/websockets':
specifier: ^9.0.0 || ^10.0.0 || ^11.0.0
version: 11.0.7(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)(@nestjs/platform-socket.io@11.0.7)(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 || ^11.0.0
version: 11.0.7(@grpc/grpc-js@1.12.5)(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)(@nestjs/websockets@11.0.7)(amqp-connection-manager@4.1.14(amqplib@0.10.3))(amqplib@0.10.3)(ioredis@5.4.2)(kafkajs@2.2.4)(mqtt@4.3.8)(nats@2.29.1)(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 || ^11.0.0
version: 11.0.7(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/websockets@11.0.7)(rxjs@7.8.1)
'@nestjs/websockets':
specifier: ^9.0.0 || ^10.0.0 || ^11.0.0
version: 11.0.7(@nestjs/common@11.0.7(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.1)(rxjs@7.8.1))(@nestjs/core@11.0.7)(@nestjs/platform-socket.io@11.0.7)(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:
'@acuminous/bitsyntax@0.1.2':
resolution: {integrity: sha512-29lUK80d1muEQqiUsSo+3A0yP6CdspgC95EnKBMi22Xlwt79i/En4Vr67+cXhU+cZjbti3TgGGC5wy1stIywVQ==}
engines: {node: '>=0.8'}
'@algolia/autocomplete-core@1.17.9':
resolution: {integrity: sha512-O7BxrpLDPJWWHv/DLA9DRFWs+iY1uOJZkqUwjS5HSZAGcl0hIVCQ97LTLewiZmZ402JYUrun+8NqFP+hCknlbQ==}
'@algolia/autocomplete-plugin-algolia-insights@1.17.9':
resolution: {integrity: sha512-u1fEHkCbWF92DBeB/KHeMacsjsoI0wFhjZtlCq2ddZbAehshbZST6Hs0Avkc0s+4UyBGbMDnSuXHLuvRWK5iDQ==}
peerDependencies:
search-insights: '>= 1 < 3'
'@algolia/autocomplete-preset-algolia@1.17.9':
resolution: {integrity: sha512-Na1OuceSJeg8j7ZWn5ssMu/Ax3amtOwk76u4h5J4eK2Nx2KB5qt0Z4cOapCsxot9VcEN11ADV5aUSlQF4RhGjQ==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
'@algolia/autocomplete-shared@1.17.9':
resolution: {integrity: sha512-iDf05JDQ7I0b7JEA/9IektxN/80a2MZ1ToohfmNS3rfeuQnIKI3IJlIafD0xu4StbtQTghx9T3Maa97ytkXenQ==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
algoliasearch: '>= 4.9.1 < 6'
'@algolia/cache-common@4.24.0':
resolution: {integrity: sha512-emi+v+DmVLpMGhp0V9q9h5CdkURsNmFC+cOS6uK9ndeJm9J4TiqSvPYVu+THUP8P/S08rxf5x2P+p3CfID0Y4g==}
'@algolia/client-abtesting@5.20.0':
resolution: {integrity: sha512-YaEoNc1Xf2Yk6oCfXXkZ4+dIPLulCx8Ivqj0OsdkHWnsI3aOJChY5qsfyHhDBNSOhqn2ilgHWxSfyZrjxBcAww==}
engines: {node: '>= 14.0.0'}
'@algolia/client-analytics@5.20.0':
resolution: {integrity: sha512-CIT9ni0+5sYwqehw+t5cesjho3ugKQjPVy/iPiJvtJX4g8Cdb6je6SPt2uX72cf2ISiXCAX9U3cY0nN0efnRDw==}
engines: {node: '>= 14.0.0'}
'@algolia/client-common@4.24.0':
resolution: {integrity: sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==}
'@algolia/client-common@5.20.0':
resolution: {integrity: sha512-iSTFT3IU8KNpbAHcBUJw2HUrPnMXeXLyGajmCL7gIzWOsYM4GabZDHXOFx93WGiXMti1dymz8k8R+bfHv1YZmA==}
engines: {node: '>= 14.0.0'}
'@algolia/client-insights@5.20.0':
resolution: {integrity: sha512-w9RIojD45z1csvW1vZmAko82fqE/Dm+Ovsy2ElTsjFDB0HMAiLh2FO86hMHbEXDPz6GhHKgGNmBRiRP8dDPgJg==}
engines: {node: '>= 14.0.0'}
'@algolia/client-personalization@5.20.0':
resolution: {integrity: sha512-p/hftHhrbiHaEcxubYOzqVV4gUqYWLpTwK+nl2xN3eTrSW9SNuFlAvUBFqPXSVBqc6J5XL9dNKn3y8OA1KElSQ==}
engines: {node: '>= 14.0.0'}
'@algolia/client-query-suggestions@5.20.0':
resolution: {integrity: sha512-m4aAuis5vZi7P4gTfiEs6YPrk/9hNTESj3gEmGFgfJw3hO2ubdS4jSId1URd6dGdt0ax2QuapXufcrN58hPUcw==}
engines: {node: '>= 14.0.0'}
'@algolia/client-search@4.24.0':
resolution: {integrity: sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==}
'@algolia/client-search@5.20.0':
resolution: {integrity: sha512-KL1zWTzrlN4MSiaK1ea560iCA/UewMbS4ZsLQRPoDTWyrbDKVbztkPwwv764LAqgXk0fvkNZvJ3IelcK7DqhjQ==}
engines: {node: '>= 14.0.0'}
'@algolia/ingestion@1.20.0':
resolution: {integrity: sha512-shj2lTdzl9un4XJblrgqg54DoK6JeKFO8K8qInMu4XhE2JuB8De6PUuXAQwiRigZupbI0xq8aM0LKdc9+qiLQA==}
engines: {node: '>= 14.0.0'}
'@algolia/logger-common@4.24.0':
resolution: {integrity: sha512-LLUNjkahj9KtKYrQhFKCzMx0BY3RnNP4FEtO+sBybCjJ73E8jNdaKJ/Dd8A/VA4imVHP5tADZ8pn5B8Ga/wTMA==}
'@algolia/monitoring@1.20.0':
resolution: {integrity: sha512-aF9blPwOhKtWvkjyyXh9P5peqmhCA1XxLBRgItT+K6pbT0q4hBDQrCid+pQZJYy4HFUKjB/NDDwyzFhj/rwKhw==}
engines: {node: '>= 14.0.0'}
'@algolia/recommend@5.20.0':
resolution: {integrity: sha512-T6B/WPdZR3b89/F9Vvk6QCbt/wrLAtrGoL8z4qPXDFApQ8MuTFWbleN/4rHn6APWO3ps+BUePIEbue2rY5MlRw==}
engines: {node: '>= 14.0.0'}
'@algolia/requester-browser-xhr@5.20.0':
resolution: {integrity: sha512-t6//lXsq8E85JMenHrI6mhViipUT5riNhEfCcvtRsTV+KIBpC6Od18eK864dmBhoc5MubM0f+sGpKOqJIlBSCg==}
engines: {node: '>= 14.0.0'}
'@algolia/requester-common@4.24.0':
resolution: {integrity: sha512-k3CXJ2OVnvgE3HMwcojpvY6d9kgKMPRxs/kVohrwF5WMr2fnqojnycZkxPoEg+bXm8fi5BBfFmOqgYztRtHsQA==}
'@algolia/requester-fetch@5.20.0':
resolution: {integrity: sha512-FHxYGqRY+6bgjKsK4aUsTAg6xMs2S21elPe4Y50GB0Y041ihvw41Vlwy2QS6K9ldoftX4JvXodbKTcmuQxywdQ==}
engines: {node: '>= 14.0.0'}
'@algolia/requester-node-http@5.20.0':
resolution: {integrity: sha512-kmtQClq/w3vtPteDSPvaW9SPZL/xrIgMrxZyAgsFwrJk0vJxqyC5/hwHmrCraDnStnGSADnLpBf4SpZnwnkwWw==}
engines: {node: '>= 14.0.0'}
'@algolia/transporter@4.24.0':
resolution: {integrity: sha512-86nI7w6NzWxd1Zp9q3413dRshDqAzSbsQjhcDhPIatEFiZrL1/TjnHL8S7jVKFePlIMzDsZWXAXwXzcok9c5oA==}
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
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.1':
resolution: {integrity: sha512-tWhQzD7DtiTO/wfbGvasryz7eJSuEh9XJHgRTMZI7+Wu/omylG5gH6K6ksg1Vccg8/Xuglfi2f1M5Nm/IlBBGw==}
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.2':
resolution: {integrity: sha512-UkS3xqnVFLZ3JFpEmU/2cM2iKJotQXMoSTgxXsfQgXLC5gR1WaepoXagmYnPSA7Q/2cmnyTYK5OgAgoC4RULPg==}
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.10.3':
resolution: {integrity: sha512-bL/O7YBxsFt55YHU021oL+xz+B/9HvGNId3F9xURN16aeqDK9juHGktdkCSXz+U4nqFACq6ZFvWomOzhV+zfPw==}
'@astrojs/internal-helpers@0.2.1':
resolution: {integrity: sha512-06DD2ZnItMwUnH81LBLco3tWjcZ1lGU9rLCCBaeUCGYe9cI0wKyY2W3kDyoW1I6GmcWgt1fu+D1CTvz+FIKf8A==}
'@astrojs/markdown-remark@3.5.0':
resolution: {integrity: sha512-q7vdIqzYhxpsfghg2YmkmSXCfp4w7lBTYP+SSHw89wVhC5Riltr3u8w2otBRxNLSByNi+ht/gGkFC23Shetytw==}
peerDependencies:
astro: ^3.0.0
'@astrojs/preact@3.5.4':
resolution: {integrity: sha512-NCS88C3JV/ZaFlBLLzYGvAvSrHsO2kaBgxMNDf9c0/OSywyY9D2NOBHWmwmiMP8tBtDbW5f8sfyL0XrjhguKgw==}
engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0}
peerDependencies:
preact: ^10.6.5
'@astrojs/prism@3.2.0':
resolution: {integrity: sha512-GilTHKGCW6HMq7y3BUv9Ac7GMe/MO9gi9GW62GzKtth0SwukCu/qp2wLiGpEujhY+VVhaG9v7kv/5vFzvf4NYw==}
engines: {node: ^18.17.1 || ^20.3.0 || >=22.0.0}
'@astrojs/react@3.6.3':
resolution: {integrity: sha512-5ihLQDH5Runddug5AZYlnp/Q5T81QxhwnWJXA9rchBAdh11c6UhBbv9Kdk7b2PkXoEU70CGWBP9hSh0VCR58eA==}
engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0}
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 || ^19.0.0-beta
react-dom: ^17.0.2 || ^18.0.0 || ^19.0.0-beta
'@astrojs/sitemap@3.2.1':
resolution: {integrity: sha512-uxMfO8f7pALq0ADL6Lk68UV6dNYjJ2xGUzyjjVj60JLBs5a6smtlkBYv3tQ0DzoqwS7c9n4FUx5lgv0yPo/fgA==}
'@astrojs/telemetry@3.0.4':
resolution: {integrity: sha512-A+0c7k/Xy293xx6odsYZuXiaHO0PL+bnDoXOc47sGDF5ffIKdKQGRPFl2NMlCF4L0NqN4Ynbgnaip+pPF0s7pQ==}
engines: {node: '>=18.14.1'}
'@babel/code-frame@7.26.2':
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.26.5':
resolution: {integrity: sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg==}
engines: {node: '>=6.9.0'}
'@babel/core@7.26.7':
resolution: {integrity: sha512-SRijHmF0PSPgLIBYlWnG0hyeJLwXE2CgpsXaMOrtt2yp9/86ALw6oUlj9KYuZ0JN07T4eBMVIW4li/9S1j2BGA==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.26.5':
resolution: {integrity: sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.25.9':
resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.26.5':
resolution: {integrity: sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==}
engines: {node: '>=6.9.0'}
'@babel/helper-create-class-features-plugin@7.25.9':
resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==}
engines: {node: '>=6.9.0'}