-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage-lock.json
10297 lines (10297 loc) · 404 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": "Typescript-cloud",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"dependencies": {
"platformatic": "^0.28.1"
},
"devDependencies": {
"fastify": "^4.20.0"
},
"engines": {
"node": "^18.8.0 || >=19"
}
},
"node_modules/@babel/code-frame": {
"version": "7.22.5",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz",
"integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==",
"dependencies": {
"@babel/highlight": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.22.5",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz",
"integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight": {
"version": "7.22.5",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz",
"integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.22.5",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@databases/connection-pool": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@databases/connection-pool/-/connection-pool-1.1.0.tgz",
"integrity": "sha512-/12/SNgl0V77mJTo5SX3yGPz4c9XGQwAlCfA0vlfs/0HcaErNpYXpmhj0StET07w6TmTJTnaUgX2EPcQK9ez5A==",
"dependencies": {
"@databases/queue": "^1.0.0",
"is-promise": "^4.0.0"
}
},
"node_modules/@databases/escape-identifier": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@databases/escape-identifier/-/escape-identifier-1.0.3.tgz",
"integrity": "sha512-Su36iSVzaHxpVdISVMViUX/32sLvzxVgjZpYhzhotxZUuLo11GVWsiHwqkvUZijTLUxcDmUqEwGJO3O/soLuZA==",
"dependencies": {
"@databases/validate-unicode": "^1.0.0"
}
},
"node_modules/@databases/lock": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@databases/lock/-/lock-2.1.0.tgz",
"integrity": "sha512-ReWnFE5qeCuO2SA5h5fDh/hE/vMolA+Epe6xkAQP1FL2nhnsTCYwN2JACk/kWctR4OQoh0njBjPZ0yfIptclcA==",
"dependencies": {
"@databases/queue": "^1.0.0"
}
},
"node_modules/@databases/mysql": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/@databases/mysql/-/mysql-5.2.1.tgz",
"integrity": "sha512-DwH6mJX2K1P2Pf+93BIrhDp89Y/RvmYY74CDcMxj680lk8kV2tUN7udBkMePnDHqRG7wLxQ91deEezMeFMLpJg==",
"dependencies": {
"@babel/code-frame": "^7.0.0",
"@databases/escape-identifier": "^1.0.3",
"@databases/mysql-config": "^3.0.0",
"@databases/push-to-async-iterable": "^3.0.0",
"@databases/shared": "^3.0.0",
"@databases/sql": "^3.2.0",
"@types/mysql": "^2.15.5",
"mysql2": "^2.2.5"
}
},
"node_modules/@databases/mysql-config": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@databases/mysql-config/-/mysql-config-3.2.0.tgz",
"integrity": "sha512-rvASYvrhgQy4MXyrqFijvzQIMNDetOyRP3w2OCIH3PfGb+qnp8cbs8CD3EJekx7TZmhnD2IiOEk78rFqfV02hA==",
"dependencies": {
"cosmiconfig": "^8.1.0",
"funtypes": "^4.1.0"
}
},
"node_modules/@databases/pg": {
"version": "5.4.1",
"resolved": "https://registry.npmjs.org/@databases/pg/-/pg-5.4.1.tgz",
"integrity": "sha512-V4BvwEwcrpZVEhCuBX4rwIGr1Idk68UMp+7rpqxFsl9SVIvHentX2wq7Nyclp7sxnQddEH8KsTCXt0eleRaihA==",
"dependencies": {
"@babel/code-frame": "^7.0.0",
"@databases/escape-identifier": "^1.0.3",
"@databases/pg-config": "^3.1.0",
"@databases/pg-connection-string": "^1.0.0",
"@databases/pg-data-type-id": "^3.0.0",
"@databases/pg-errors": "^1.0.0",
"@databases/push-to-async-iterable": "^3.0.0",
"@databases/shared": "^3.0.0",
"@databases/split-sql-query": "^1.0.3",
"@databases/sql": "^3.2.0",
"@types/cuid": "^1.3.1",
"assert-never": "^1.2.1",
"cuid": "^2.1.8",
"pg": "^8.4.2",
"pg-cursor": "^2.4.2"
}
},
"node_modules/@databases/pg-config": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@databases/pg-config/-/pg-config-3.2.0.tgz",
"integrity": "sha512-hoPAK/F8gLcLgEJ8mLSnNvRlKqShwx5+GglDHIIfQhKF+Zz6M6QceiOefckS4WSjA0x2HClPvpercnXp9i24ag==",
"dependencies": {
"cosmiconfig": "^8.1.0",
"funtypes": "^4.1.0"
}
},
"node_modules/@databases/pg-connection-string": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@databases/pg-connection-string/-/pg-connection-string-1.0.0.tgz",
"integrity": "sha512-8czOF9jlv7PlS7BPjnL82ynpDs1t8cu+C2jvdtMr37e8daPKMS7n1KfNE9xtr2Gq4QYKjynep097eYa5yIwcLA=="
},
"node_modules/@databases/pg-data-type-id": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@databases/pg-data-type-id/-/pg-data-type-id-3.0.0.tgz",
"integrity": "sha512-VqW1csN8pRsWJxjPsGIC9FQ8wyenfmGv0P//BaeDMAu/giM3IXKxKM8fkScUSQ00uqFK/L1iHS5g6dgodF3XzA=="
},
"node_modules/@databases/pg-errors": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@databases/pg-errors/-/pg-errors-1.0.0.tgz",
"integrity": "sha512-Yz3exbptZwOn4ZD/MSwY6z++XVyOFsMh5DERvSw3awRwJFnfdaqdeiIxxX0MVjM6KPihF0xxp8lPO7vTc5ydpw=="
},
"node_modules/@databases/push-to-async-iterable": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@databases/push-to-async-iterable/-/push-to-async-iterable-3.0.0.tgz",
"integrity": "sha512-xwu/yNgINdMU+fn6UwFsxh+pa6UrVPafY+0qm0RK0/nKyjllfDqSbwK4gSmdmLEwPYxKwch9CAE3P8NxN1hPSg==",
"dependencies": {
"@databases/queue": "^1.0.0"
}
},
"node_modules/@databases/queue": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@databases/queue/-/queue-1.0.1.tgz",
"integrity": "sha512-dqRU+/aQ4lhFzjPIkIhjB0+UEKMb76FoBgHOJUTcEblgatr/IhdhHliT3VVwcImXh35Mz297PAXE4yFM4eYWUQ=="
},
"node_modules/@databases/shared": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@databases/shared/-/shared-3.0.2.tgz",
"integrity": "sha512-SjkYq6aKK2hyD1Rwtv20lijbDO85zytJCFmfHE3YpGx2nh7ViW1hCms2VuxaKkvUFjvbswTZHsWaZlcmg/QUOQ==",
"dependencies": {
"@databases/connection-pool": "^1.1.0",
"@databases/lock": "^2.1.0",
"@databases/queue": "^1.0.1",
"@databases/split-sql-query": "^1.0.3",
"@databases/sql": "^3.3.0",
"cuid": "^2.1.8"
}
},
"node_modules/@databases/split-sql-query": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/@databases/split-sql-query/-/split-sql-query-1.0.4.tgz",
"integrity": "sha512-lDqDQvH34NNjLs0knaDvL6HKgPtishQlDYHfOkvbAd5VQOEhcDvvmG2zbBuFvS2HQAz5NsyLj5erGaxibkxhvQ==",
"peerDependencies": {
"@databases/sql": "*"
}
},
"node_modules/@databases/sql": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@databases/sql/-/sql-3.3.0.tgz",
"integrity": "sha512-vj9huEy4mjJ48GS1Z8yvtMm4BYAnFYACUds25ym6Gd/gsnngkJ17fo62a6mmbNNwCBS/8467PmZR01Zs/06TjA=="
},
"node_modules/@databases/sqlite": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@databases/sqlite/-/sqlite-4.0.2.tgz",
"integrity": "sha512-fxmqGbJ/R0gL+H/I2hEqVblAv4Zqyqw4m4btDple6h+WDOQm5T7s2Z8ubMSsRKvg3t20EKOVNgyvY2u38rtkrQ==",
"dependencies": {
"@databases/escape-identifier": "^1.0.3",
"@databases/sql": "^3.2.0",
"@types/sqlite3": "^3.1.5",
"sqlite3": "^5.0.0",
"then-queue": "^1.3.0"
}
},
"node_modules/@databases/validate-unicode": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@databases/validate-unicode/-/validate-unicode-1.0.0.tgz",
"integrity": "sha512-dLKqxGcymeVwEb/6c44KjOnzaAafFf0Wxa8xcfEjx/qOl3rdijsKYBAtIGhtVtOlpPf/PFKfgTuFurSPn/3B/g=="
},
"node_modules/@fastify/accept-negotiator": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@fastify/accept-negotiator/-/accept-negotiator-1.1.0.tgz",
"integrity": "sha512-OIHZrb2ImZ7XG85HXOONLcJWGosv7sIvM2ifAPQVhg9Lv7qdmMBNVaai4QTdyuaqbKM5eO6sLSQOYI7wEQeCJQ==",
"engines": {
"node": ">=14"
}
},
"node_modules/@fastify/accepts": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@fastify/accepts/-/accepts-4.2.0.tgz",
"integrity": "sha512-nM2OsxJvdBZOcpMqtbolW7RMB2bn/L1PDZ03+zVlC+/JVdBEW+ufWEKmtsMVzelU5TwyTc/+X/CRr/98JfE9mQ==",
"dependencies": {
"accepts": "^1.3.5",
"fastify-plugin": "^4.0.0"
}
},
"node_modules/@fastify/ajv-compiler": {
"version": "3.5.0",
"resolved": "https://registry.npmjs.org/@fastify/ajv-compiler/-/ajv-compiler-3.5.0.tgz",
"integrity": "sha512-ebbEtlI7dxXF5ziNdr05mOY8NnDiPB1XvAlLHctRt/Rc+C3LCOVW5imUVX+mhvUhnNzmPBHewUkOFgGlCxgdAA==",
"dependencies": {
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"fast-uri": "^2.0.0"
}
},
"node_modules/@fastify/autoload": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/@fastify/autoload/-/autoload-5.7.1.tgz",
"integrity": "sha512-F5c94MYAF0tacVu6X4/1ojO7fzmgrJXsqitDtpqknXgiHZpeFNhYSnNCUHPz6UDRKsfkDohmh0fiPTtOd8clzQ==",
"dependencies": {
"pkg-up": "^3.1.0"
}
},
"node_modules/@fastify/basic-auth": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/@fastify/basic-auth/-/basic-auth-5.0.0.tgz",
"integrity": "sha512-SKqJ0z6ziUZ2rfTcI0Y/RTlyvWgLlwATsOC9HSkAUEfIunFUXCTeygijSZRg/CYQkBRjoczwhNvBFr8Pm6agTg==",
"dependencies": {
"@fastify/error": "^3.0.0",
"basic-auth": "^2.0.1",
"fastify-plugin": "^4.0.0"
}
},
"node_modules/@fastify/cors": {
"version": "8.3.0",
"resolved": "https://registry.npmjs.org/@fastify/cors/-/cors-8.3.0.tgz",
"integrity": "sha512-oj9xkka2Tg0MrwuKhsSUumcAkfp2YCnKxmFEusi01pjk1YrdDsuSYTHXEelWNW+ilSy/ApZq0c2SvhKrLX0H1g==",
"dependencies": {
"fastify-plugin": "^4.0.0",
"mnemonist": "0.39.5"
}
},
"node_modules/@fastify/deepmerge": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/@fastify/deepmerge/-/deepmerge-1.3.0.tgz",
"integrity": "sha512-J8TOSBq3SoZbDhM9+R/u77hP93gz/rajSA+K2kGyijPpORPWUXHUpTaleoj+92As0S9uPRP7Oi8IqMf0u+ro6A=="
},
"node_modules/@fastify/error": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/@fastify/error/-/error-3.3.0.tgz",
"integrity": "sha512-dj7vjIn1Ar8sVXj2yAXiMNCJDmS9MQ9XMlIecX2dIzzhjSHCyKo4DdXjXMs7wKW2kj6yvVRSpuQjOZ3YLrh56w=="
},
"node_modules/@fastify/fast-json-stringify-compiler": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/@fastify/fast-json-stringify-compiler/-/fast-json-stringify-compiler-4.3.0.tgz",
"integrity": "sha512-aZAXGYo6m22Fk1zZzEUKBvut/CIIQe/BapEORnxiD5Qr0kPHqqI69NtEMCme74h+at72sPhbkb4ZrLd1W3KRLA==",
"dependencies": {
"fast-json-stringify": "^5.7.0"
}
},
"node_modules/@fastify/http-proxy": {
"version": "9.2.1",
"resolved": "https://registry.npmjs.org/@fastify/http-proxy/-/http-proxy-9.2.1.tgz",
"integrity": "sha512-SSxcdrDQQA2PYYBCK+2I+w83QEbMt1s5bsKEERiMG1jcraQulTW3t/Wkje+RWJNNblDhABnhdKXUTbDuA/EIXA==",
"dependencies": {
"@fastify/reply-from": "^9.0.0",
"fastify-plugin": "^4.5.0",
"ws": "^8.4.2"
}
},
"node_modules/@fastify/jwt": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/@fastify/jwt/-/jwt-7.2.0.tgz",
"integrity": "sha512-ONKobJVfFKaqUU3OEWHnkV0HVyJFfa+kzj8gEODEskhIXcf0Y8Trzsjca/Rl54VOsa5QnSgkZEXUpvChd3eUdQ==",
"dependencies": {
"@fastify/error": "^3.0.0",
"@lukeed/ms": "^2.0.0",
"fast-jwt": "^3.0.0",
"fastify-plugin": "^4.0.0",
"steed": "^1.1.3"
}
},
"node_modules/@fastify/reply-from": {
"version": "9.4.0",
"resolved": "https://registry.npmjs.org/@fastify/reply-from/-/reply-from-9.4.0.tgz",
"integrity": "sha512-A0rT2o2Y8Xe9+CpS/VCfpWMLyptwI7peljdtdsW3nlLwwMbDr3kxDry5aiIb43SCfI1nr3B5mMH48kerJAZ8YQ==",
"dependencies": {
"@fastify/error": "^3.0.0",
"end-of-stream": "^1.4.4",
"fast-querystring": "^1.0.0",
"fastify-plugin": "^4.0.0",
"pump": "^3.0.0",
"tiny-lru": "^11.0.0",
"undici": "^5.19.1"
}
},
"node_modules/@fastify/restartable": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@fastify/restartable/-/restartable-2.1.0.tgz",
"integrity": "sha512-zq0g0s0r87b0gUOv+11Mi3D9B2NdkTjKX+QM8s5WK3IhmTKLJ5UfMkJXfqYbqeDOgoGfXfSjyxtfkHbTFlDk/Q==",
"dependencies": {
"fastify": "^4.16.3"
}
},
"node_modules/@fastify/send": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@fastify/send/-/send-2.1.0.tgz",
"integrity": "sha512-yNYiY6sDkexoJR0D8IDy3aRP3+L4wdqCpvx5WP+VtEU58sn7USmKynBzDQex5X42Zzvw2gNzzYgP90UfWShLFA==",
"dependencies": {
"@lukeed/ms": "^2.0.1",
"escape-html": "~1.0.3",
"fast-decode-uri-component": "^1.0.1",
"http-errors": "2.0.0",
"mime": "^3.0.0"
}
},
"node_modules/@fastify/static": {
"version": "6.10.2",
"resolved": "https://registry.npmjs.org/@fastify/static/-/static-6.10.2.tgz",
"integrity": "sha512-UoaMvIHSBLCZBYOVZwFRYqX2ufUhd7FFMYGDeSf0Z+D8jhYtwljjmuQGuanUP8kS4y/ZEV1a8mfLha3zNwsnnQ==",
"dependencies": {
"@fastify/accept-negotiator": "^1.0.0",
"@fastify/send": "^2.0.0",
"content-disposition": "^0.5.3",
"fastify-plugin": "^4.0.0",
"glob": "^8.0.1",
"p-limit": "^3.1.0",
"readable-stream": "^4.0.0"
}
},
"node_modules/@fastify/swagger": {
"version": "8.8.0",
"resolved": "https://registry.npmjs.org/@fastify/swagger/-/swagger-8.8.0.tgz",
"integrity": "sha512-tYI2lbItb4yg9FhQj+leK6DdIBICLbXkSR2vZjo117ygHyYQLxw2v0ere/d2PtDmYAx7SOJzxvg3w6y0Sxc3iw==",
"dependencies": {
"fastify-plugin": "^4.0.0",
"json-schema-resolver": "^2.0.0",
"openapi-types": "^12.0.0",
"rfdc": "^1.3.0",
"yaml": "^2.2.2"
}
},
"node_modules/@fastify/swagger-ui": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/@fastify/swagger-ui/-/swagger-ui-1.9.3.tgz",
"integrity": "sha512-YYqce4CydjDIEry6Zo4JLjVPe5rjS8iGnk3fHiIQnth9sFSLeyG0U1DCH+IyYmLddNDg1uWJOuErlVqnu/jI3w==",
"dependencies": {
"@fastify/static": "^6.0.0",
"fastify-plugin": "^4.0.0",
"openapi-types": "^12.0.2",
"rfdc": "^1.3.0",
"yaml": "^2.2.2"
}
},
"node_modules/@fastify/under-pressure": {
"version": "8.3.0",
"resolved": "https://registry.npmjs.org/@fastify/under-pressure/-/under-pressure-8.3.0.tgz",
"integrity": "sha512-ap1EePB9vHm8uQLM0nnaOeIMBLooNmAMTnccavBRwaXmu+acJFuSEQRVdMGRkW6viFDhdo5RGTcHzMBQyrucEA==",
"dependencies": {
"@fastify/error": "^3.0.0",
"fastify-plugin": "^4.0.0"
}
},
"node_modules/@fastify/websocket": {
"version": "8.2.0",
"resolved": "https://registry.npmjs.org/@fastify/websocket/-/websocket-8.2.0.tgz",
"integrity": "sha512-B4tlHFBKCX7tenEG9aUcQEpksW2e0+dgRTaH/05+cro1Xsq1+kSj+9IB9Gep7a0KbHZGrat+zBsOas6lRs5dFQ==",
"dependencies": {
"fastify-plugin": "^4.0.0",
"ws": "^8.0.0"
}
},
"node_modules/@gar/promisify": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz",
"integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==",
"optional": true
},
"node_modules/@graphql-typed-document-node/core": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.2.0.tgz",
"integrity": "sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==",
"peerDependencies": {
"graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
}
},
"node_modules/@hapi/hoek": {
"version": "11.0.2",
"resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-11.0.2.tgz",
"integrity": "sha512-aKmlCO57XFZ26wso4rJsW4oTUnrgTFw2jh3io7CAtO9w4UltBNwRXvXIVzzyfkaaLRo3nluP/19msA8vDUUuKw=="
},
"node_modules/@hapi/topo": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-6.0.2.tgz",
"integrity": "sha512-KR3rD5inZbGMrHmgPxsJ9dbi6zEK+C3ZwUwTa+eMwWLz7oijWUTWD2pMSNNYJAU6Qq+65NkxXjqHr/7LM2Xkqg==",
"dependencies": {
"@hapi/hoek": "^11.0.2"
}
},
"node_modules/@iarna/toml": {
"version": "2.2.5",
"resolved": "https://registry.npmjs.org/@iarna/toml/-/toml-2.2.5.tgz",
"integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg=="
},
"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/@lukeed/ms": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@lukeed/ms/-/ms-2.0.1.tgz",
"integrity": "sha512-Xs/4RZltsAL7pkvaNStUQt7netTkyxrS0K+RILcVr3TRMS/ToOg4I6uNfhB9SlGsnWBym4U+EaXq0f0cEMNkHA==",
"engines": {
"node": ">=8"
}
},
"node_modules/@mapbox/node-pre-gyp": {
"version": "1.0.11",
"resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz",
"integrity": "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==",
"dependencies": {
"detect-libc": "^2.0.0",
"https-proxy-agent": "^5.0.0",
"make-dir": "^3.1.0",
"node-fetch": "^2.6.7",
"nopt": "^5.0.0",
"npmlog": "^5.0.1",
"rimraf": "^3.0.2",
"semver": "^7.3.5",
"tar": "^6.1.11"
},
"bin": {
"node-pre-gyp": "bin/node-pre-gyp"
}
},
"node_modules/@mapbox/node-pre-gyp/node_modules/brace-expansion": {
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
"dependencies": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
}
},
"node_modules/@mapbox/node-pre-gyp/node_modules/glob": {
"version": "7.2.3",
"resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
"dependencies": {
"fs.realpath": "^1.0.0",
"inflight": "^1.0.4",
"inherits": "2",
"minimatch": "^3.1.1",
"once": "^1.3.0",
"path-is-absolute": "^1.0.0"
},
"engines": {
"node": "*"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/@mapbox/node-pre-gyp/node_modules/minimatch": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
"dependencies": {
"brace-expansion": "^1.1.7"
},
"engines": {
"node": "*"
}
},
"node_modules/@mapbox/node-pre-gyp/node_modules/rimraf": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
"integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
"dependencies": {
"glob": "^7.1.3"
},
"bin": {
"rimraf": "bin.js"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/@mercuriusjs/federation": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@mercuriusjs/federation/-/federation-2.0.0.tgz",
"integrity": "sha512-hBL2Zhdf0p2Ab2SDPXcVnNsYTf5x50xPAyHm2HpmXreHS7aGt4obX8g8JrqRhIfOApcRg5l9RQ2OZqaUYeR8sQ==",
"dependencies": {
"@fastify/error": "^3.0.0",
"graphql": "^16.6.0",
"mercurius": "^13.0.0"
}
},
"node_modules/@npmcli/fs": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz",
"integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==",
"optional": true,
"dependencies": {
"@gar/promisify": "^1.0.1",
"semver": "^7.3.5"
}
},
"node_modules/@npmcli/move-file": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz",
"integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==",
"deprecated": "This functionality has been moved to @npmcli/fs",
"optional": true,
"dependencies": {
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">=10"
}
},
"node_modules/@npmcli/move-file/node_modules/brace-expansion": {
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
"optional": true,
"dependencies": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
}
},
"node_modules/@npmcli/move-file/node_modules/glob": {
"version": "7.2.3",
"resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
"optional": true,
"dependencies": {
"fs.realpath": "^1.0.0",
"inflight": "^1.0.4",
"inherits": "2",
"minimatch": "^3.1.1",
"once": "^1.3.0",
"path-is-absolute": "^1.0.0"
},
"engines": {
"node": "*"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/@npmcli/move-file/node_modules/minimatch": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
"optional": true,
"dependencies": {
"brace-expansion": "^1.1.7"
},
"engines": {
"node": "*"
}
},
"node_modules/@npmcli/move-file/node_modules/rimraf": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
"integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
"optional": true,
"dependencies": {
"glob": "^7.1.3"
},
"bin": {
"rimraf": "bin.js"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/@platformatic/authenticate": {
"version": "0.28.1",
"resolved": "https://registry.npmjs.org/@platformatic/authenticate/-/authenticate-0.28.1.tgz",
"integrity": "sha512-PylDXxP6lCnGpzuzGq0BdCjq3MdpnOeejkYN2Ar38EvOTeZgRUcXSpnpSL0DjQeoMjtHfoUlMvKHg4pL/6Kzzg==",
"dependencies": {
"@platformatic/config": "0.28.1",
"colorette": "^2.0.20",
"commist": "^3.2.0",
"es-main": "^1.2.0",
"minimist": "^1.2.8",
"open": "^8.4.2",
"undici": "^5.22.1"
}
},
"node_modules/@platformatic/client": {
"version": "0.28.1",
"resolved": "https://registry.npmjs.org/@platformatic/client/-/client-0.28.1.tgz",
"integrity": "sha512-KCcoUWFFB63KJwvP8g5h9dAE6KSmoAJZ0RBJoJcqhZsT0Ve7B+ykz1VHdf4AIWE2Dy39wh6MSXjLdFcaTbPSgw==",
"dependencies": {
"abstract-logging": "^2.0.1",
"undici": "^5.22.1"
}
},
"node_modules/@platformatic/client-cli": {
"version": "0.28.1",
"resolved": "https://registry.npmjs.org/@platformatic/client-cli/-/client-cli-0.28.1.tgz",
"integrity": "sha512-7wS4iCruFUi/yiab8W9cg2bHZdtBHzZ8LB+3fWjmcvZnfPc2UJEKs/IxbGWMpbUuyU3SS09bHw9RrsxGYT+jLg==",
"dependencies": {
"@platformatic/client": "0.28.1",
"@platformatic/config": "0.28.1",
"@platformatic/metaconfig": "0.28.1",
"abstract-logging": "^2.0.1",
"camelcase": "6.x",
"code-block-writer": "^12.0.0",
"desm": "^1.3.0",
"es-main": "^1.2.0",
"graphql": "^16.6.0",
"help-me": "^4.2.0",
"jsonpointer": "^5.0.1",
"minimist": "^1.2.8",
"undici": "^5.22.1"
},
"bin": {
"plt-client": "cli.mjs"
}
},
"node_modules/@platformatic/composer": {
"version": "0.28.1",
"resolved": "https://registry.npmjs.org/@platformatic/composer/-/composer-0.28.1.tgz",
"integrity": "sha512-Czx6BCN4EhLfOlOEBqNsc9EYVJA9LFCuIHXRJ42qg52bKkAwQj1wR9UwmowVz61P7urjeY2R0UoBARXyipMeKA==",
"dependencies": {
"@fastify/http-proxy": "^9.2.0",
"@fastify/reply-from": "^9.3.0",
"@fastify/static": "^6.10.2",
"@fastify/swagger": "^8.5.1",
"@fastify/swagger-ui": "^1.9.0",
"@platformatic/config": "0.28.1",
"@platformatic/service": "0.28.1",
"@platformatic/swagger-ui-theme": "0.28.1",
"commist": "^3.2.0",
"desm": "^1.3.0",
"es-main": "^1.2.0",
"fast-deep-equal": "^3.1.3",
"fastify": "^4.18.0",
"fastify-openapi-glue": "^4.2.0",
"fastify-plugin": "^4.5.0",
"help-me": "^4.2.0",
"minimist": "^1.2.8",
"pino": "^8.14.1",
"pino-pretty": "^10.0.0",
"rfdc": "^1.3.0",
"ua-parser-js": "^1.0.35",
"undici": "^5.22.1"
},
"bin": {
"plt-composer": "composer.mjs"
}
},
"node_modules/@platformatic/config": {
"version": "0.28.1",
"resolved": "https://registry.npmjs.org/@platformatic/config/-/config-0.28.1.tgz",
"integrity": "sha512-vwMmVSrtkly+kOgIt6AR14vr3QCCCzbWR8cxltHlSKObEacU5VvDvAlfr0Njb3HUZhjclThg+74W/9qb8XvnXg==",
"dependencies": {
"@platformatic/metaconfig": "0.28.1",
"@platformatic/utils": "0.28.1",
"ajv": "^8.12.0",
"dotenv": "^16.1.4",
"pupa": "^3.1.0",
"semver": "^7.5.1",
"undici": "^5.22.1"
}
},
"node_modules/@platformatic/db": {
"version": "0.28.1",
"resolved": "https://registry.npmjs.org/@platformatic/db/-/db-0.28.1.tgz",
"integrity": "sha512-ONVUV9grd9HtKaCFXbLYppkXJWR+uxjRC3whnspVE1IfCqhIFFQBNmM5rO6rl4rHPVSbq3/2y+SFwCclcfBy0g==",
"dependencies": {
"@fastify/accepts": "^4.2.0",
"@fastify/basic-auth": "^5.0.0",
"@fastify/cors": "^8.3.0",
"@fastify/deepmerge": "^1.3.0",
"@fastify/static": "^6.10.2",
"@fastify/swagger": "^8.5.1",
"@platformatic/config": "0.28.1",
"@platformatic/db-authorization": "0.28.1",
"@platformatic/db-core": "0.28.1",
"@platformatic/db-dashboard": "0.28.1",
"@platformatic/service": "0.28.1",
"@platformatic/sql-graphql": "0.28.1",
"@platformatic/sql-json-schema-mapper": "0.28.1",
"@platformatic/sql-mapper": "0.28.1",
"@platformatic/sql-openapi": "0.28.1",
"@platformatic/types": "0.28.1",
"@platformatic/utils": "0.28.1",
"camelcase": "^6.3.0",
"close-with-grace": "^1.2.0",
"code-block-writer": "^12.0.0",
"commist": "^3.2.0",
"desm": "^1.3.0",
"env-schema": "^5.2.0",
"es-main": "^1.2.0",
"execa": "^7.1.1",
"fastify": "^4.18.0",
"fastify-metrics": "^10.3.0",
"fastify-plugin": "^4.5.0",
"fastify-print-routes": "^2.1.0",
"graphql": "^16.6.0",
"help-me": "^4.2.0",
"minimist": "^1.2.8",
"pino": "^8.14.1",
"pino-pretty": "^10.0.0",
"postgrator": "^7.1.1",
"rfdc": "^1.3.0",
"rimraf": "^4.4.1",
"ua-parser-js": "^1.0.35"
},
"bin": {
"plt-db": "db.mjs"
}
},
"node_modules/@platformatic/db-authorization": {
"version": "0.28.1",
"resolved": "https://registry.npmjs.org/@platformatic/db-authorization/-/db-authorization-0.28.1.tgz",
"integrity": "sha512-91sJOsDicuyDTdg/rBWIOdYgiP+8npBfE4/y39NhwzcSmrbIPJRhv36tz0olYigEJvqO9bFYnvfQrxROSzQONw==",
"dependencies": {
"@fastify/error": "^3.2.1",
"@fastify/jwt": "^7.0.0",
"fastify-plugin": "^4.5.0",
"fastify-user": "^0.1.2",
"get-jwks": "^8.1.0",
"leven": "~3.1.0",
"undici": "^5.22.1"
}
},
"node_modules/@platformatic/db-core": {
"version": "0.28.1",
"resolved": "https://registry.npmjs.org/@platformatic/db-core/-/db-core-0.28.1.tgz",
"integrity": "sha512-RGcFaOeo9XJHuKYR/8D1amUgOvqXj3STQPkXFbPUulItf7bIOdl65vJzmtBKKDQBu1406fnBUSqzpIP+9MGF5Q==",
"dependencies": {
"@platformatic/sql-events": "0.28.1",
"@platformatic/sql-graphql": "0.28.1",
"@platformatic/sql-mapper": "0.28.1",
"@platformatic/sql-openapi": "0.28.1",
"@platformatic/types": "0.28.1",
"fastify-plugin": "^4.5.0"
}
},
"node_modules/@platformatic/db-dashboard": {
"version": "0.28.1",
"resolved": "https://registry.npmjs.org/@platformatic/db-dashboard/-/db-dashboard-0.28.1.tgz",
"integrity": "sha512-1N0dARdC9AQUemVlWrDCDJvru9FXL9WoeHeKmsJKsz3hx3EZ8oEX2k3lAErh+kl78mEZ7Ink45b1WOgNq7pwaA==",
"dependencies": {
"@fastify/static": "^6.10.2",
"@platformatic/config": "0.28.1"
}
},
"node_modules/@platformatic/deploy-client": {
"version": "0.28.1",
"resolved": "https://registry.npmjs.org/@platformatic/deploy-client/-/deploy-client-0.28.1.tgz",
"integrity": "sha512-Ow6sIBp1G+FyIq0+fZeOFjHsbwEY442qn3ywJuM7JmyK+ZS1KU660FM7XP+1x0nhsx1SYrcVXvRX5zpT/nGtCQ==",
"dependencies": {
"@platformatic/config": "0.28.1",
"@platformatic/runtime": "0.28.1",
"@platformatic/service": "0.28.1",
"@platformatic/start": "0.28.1",
"tar": "^6.1.15",
"undici": "^5.22.1"
}
},
"node_modules/@platformatic/frontend-template": {
"version": "0.28.1",
"resolved": "https://registry.npmjs.org/@platformatic/frontend-template/-/frontend-template-0.28.1.tgz",
"integrity": "sha512-SU64wXR7D7qHOw8MlwYAGHbalQeLLHr0gSW9SZfaiPulnD7jnccnecbOBd+JrIC3SnfdKAp4OzvdRgJBpMh/uA==",
"dependencies": {
"@platformatic/client": "0.28.1",
"code-block-writer": "^12.0.0",
"desm": "^1.3.0",
"es-main": "^1.2.0",
"help-me": "^4.2.0",
"jsonpointer": "^5.0.1",
"minimist": "^1.2.8",
"undici": "^5.22.0"
}
},
"node_modules/@platformatic/metaconfig": {
"version": "0.28.1",
"resolved": "https://registry.npmjs.org/@platformatic/metaconfig/-/metaconfig-0.28.1.tgz",
"integrity": "sha512-0qW/dAN+CrxHZgip5+XTeva8G3MwQ0ZNWucsiEVZkgHwdxg7WXC8bRCP6sSHMSOiiJijaRKnvlfq6zjvXcW0tQ==",
"dependencies": {
"@iarna/toml": "^2.2.5",
"json5": "^2.2.3",
"rfdc": "^1.3.0",
"semver": "^7.5.1",
"yaml": "^2.3.1"
}
},
"node_modules/@platformatic/runtime": {
"version": "0.28.1",
"resolved": "https://registry.npmjs.org/@platformatic/runtime/-/runtime-0.28.1.tgz",
"integrity": "sha512-vn3je4l1j+NCPEJPwsmXBqs+2LJs1zpY0AdjvU73no6cw83kZgcYFQIA1iy5StDEEvyuOqZQCHjnH/Qhvrltlg==",
"dependencies": {
"@hapi/topo": "^6.0.2",
"@platformatic/composer": "0.28.1",
"@platformatic/config": "0.28.1",
"@platformatic/db": "0.28.1",
"@platformatic/service": "0.28.1",
"@platformatic/utils": "0.28.1",
"close-with-grace": "^1.2.0",
"commist": "^3.2.0",
"desm": "^1.3.0",
"es-main": "^1.2.0",
"fastify": "^4.18.0",
"fastify-undici-dispatcher": "^0.4.1",
"help-me": "^4.2.0",
"minimist": "^1.2.8",
"pino": "^8.14.1",
"pino-pretty": "^10.0.0",
"undici": "^5.22.1"
},
"bin": {
"plt-runtime": "runtime.mjs"
}
},
"node_modules/@platformatic/service": {
"version": "0.28.1",
"resolved": "https://registry.npmjs.org/@platformatic/service/-/service-0.28.1.tgz",
"integrity": "sha512-tb98cwp/43xOKgKcB60IFdjIYMs+T/BiMcyoGrySUYL4TbnkhQ0SJki0FVQUgVHR5E32w4c3+QNRpQIIhdiAqQ==",
"dependencies": {
"@fastify/accepts": "^4.2.0",
"@fastify/autoload": "^5.7.1",
"@fastify/basic-auth": "^5.0.0",
"@fastify/cors": "^8.3.0",
"@fastify/deepmerge": "^1.3.0",
"@fastify/restartable": "^2.1.0",
"@fastify/static": "^6.10.2",
"@fastify/swagger": "^8.5.1",
"@fastify/swagger-ui": "^1.9.0",
"@fastify/under-pressure": "^8.2.0",
"@mercuriusjs/federation": "^2.0.0",
"@platformatic/client": "0.28.1",
"@platformatic/config": "0.28.1",
"@platformatic/swagger-ui-theme": "0.28.1",
"@platformatic/types": "0.28.1",
"@platformatic/utils": "0.28.1",
"close-with-grace": "^1.2.0",
"commist": "^3.2.0",
"desm": "^1.3.0",
"env-schema": "^5.2.0",
"es-main": "^1.2.0",
"execa": "^7.1.1",
"fastify": "^4.18.0",
"fastify-metrics": "^10.3.0",
"fastify-plugin": "^4.5.0",
"graphql": "^16.6.0",
"help-me": "^4.2.0",
"mercurius": "^13.0.0",
"minimist": "^1.2.8",
"pino": "^8.14.1",
"pino-pretty": "^10.0.0",
"rfdc": "^1.3.0",
"ua-parser-js": "^1.0.35"
},
"bin": {
"plt-service": "service.mjs"
}
},
"node_modules/@platformatic/sql-events": {
"version": "0.28.1",
"resolved": "https://registry.npmjs.org/@platformatic/sql-events/-/sql-events-0.28.1.tgz",
"integrity": "sha512-mZsPOxVjyh0zfRXxvI34THZ4DjyiN3/yY5l9k+5njTm232SSFLOdW+ow/Mgd0eTzdQug1UnvYib6Ion8vt7/ug==",
"dependencies": {
"@platformatic/types": "0.28.1",
"camelcase": "^6.3.0",
"fastify-plugin": "^4.5.0",
"mqemitter": "^5.0.0",
"mqemitter-redis": "^5.0.0"
}
},
"node_modules/@platformatic/sql-graphql": {
"version": "0.28.1",
"resolved": "https://registry.npmjs.org/@platformatic/sql-graphql/-/sql-graphql-0.28.1.tgz",
"integrity": "sha512-Ki1MKzcIdaEW+mmRApXtu9yVX7qkaTTjq2GKWnDr7DqpoS+5mDV8dhE+jjyAsTVDR6o+Y7ANAbCFcve8n0xmqQ==",
"dependencies": {
"@mercuriusjs/federation": "^2.0.0",
"camelcase": "^6.3.0",
"fastify-plugin": "^4.5.0",
"graphql": "^16.6.0",
"graphql-scalars": "^1.22.2",
"graphql-type-json": "^0.3.2",
"inflected": "^2.1.0",
"mercurius": "^13.0.0"
}
},
"node_modules/@platformatic/sql-json-schema-mapper": {
"version": "0.28.1",
"resolved": "https://registry.npmjs.org/@platformatic/sql-json-schema-mapper/-/sql-json-schema-mapper-0.28.1.tgz",
"integrity": "sha512-ij+IWrOAIHQRTrZqpDMn9ei8xhKtElg/8okf8WyDPN7M5xo7U5fmgQZWjHVSa9KBl0PVw19wDiuxhwVXK758Ug==",
"dependencies": {
"code-block-writer": "^12.0.0",
"dtsgenerator": "^3.18.0",
"safe-identifier": "^0.4.2"
}
},
"node_modules/@platformatic/sql-mapper": {
"version": "0.28.1",
"resolved": "https://registry.npmjs.org/@platformatic/sql-mapper/-/sql-mapper-0.28.1.tgz",
"integrity": "sha512-MIk7+HCC726BxxvEZbs/OUd41eDg0mYaxh/xdA91rBeHLz5efyInqm2iPpEhGHjBexK3yhKLf6u3dwf3qkfu7w==",
"dependencies": {
"@databases/mysql": "^5.2.1",
"@databases/pg": "^5.4.1",
"@databases/sql": "^3.3.0",
"@databases/sqlite": "^4.0.2",
"@platformatic/types": "0.28.1",
"camelcase": "^6.3.0",
"fastify-plugin": "^4.5.0",
"inflected": "^2.1.0"
}
},
"node_modules/@platformatic/sql-openapi": {
"version": "0.28.1",
"resolved": "https://registry.npmjs.org/@platformatic/sql-openapi/-/sql-openapi-0.28.1.tgz",
"integrity": "sha512-iToVFo6Cuxf+r4i47c3cYn+8hQFs8BQ+Vvj9d/RiPBXUcwF+bZyuE7Nr15YhxWr+WsiXNhdOwGfmTAHg5o1tmA==",
"dependencies": {
"@fastify/deepmerge": "^1.3.0",
"@fastify/swagger": "^8.5.1",
"@fastify/swagger-ui": "^1.9.0",
"@platformatic/sql-json-schema-mapper": "0.28.1",
"@platformatic/swagger-ui-theme": "0.28.1",
"camelcase": "^6.3.0",
"fastify-plugin": "^4.5.0",
"inflected": "^2.1.0"
}
},
"node_modules/@platformatic/start": {
"version": "0.28.1",
"resolved": "https://registry.npmjs.org/@platformatic/start/-/start-0.28.1.tgz",
"integrity": "sha512-aMKUDmHLz3/Y7AGmyqGGiz0VSHftVZI8VGJK1mRHmRXKqYbEQvceq9E4LASGeQvt9OB54Oyn8uqxLuLUeAOBZQ==",
"dependencies": {
"@platformatic/runtime": "0.28.1"
}
},
"node_modules/@platformatic/swagger-ui-theme": {
"version": "0.28.1",
"resolved": "https://registry.npmjs.org/@platformatic/swagger-ui-theme/-/swagger-ui-theme-0.28.1.tgz",
"integrity": "sha512-p7oLiLGxQ2x58rz/QCbXj0k6v1psGx+cojE5lhqoSDGP6NiOk5Yc/wi0f3lLwzYxBN2EmC7DLw+GNb4hVGTFFg=="
},
"node_modules/@platformatic/types": {
"version": "0.28.1",
"resolved": "https://registry.npmjs.org/@platformatic/types/-/types-0.28.1.tgz",
"integrity": "sha512-EeNKI721ttIQjGqbha+4JvyeBMKYaar3WmZOaBgMI6tOUdRg9/1o4iCBA3aMuwggXEehb3e1xLxt4eFktIkJoA=="
},
"node_modules/@platformatic/utils": {
"version": "0.28.1",
"resolved": "https://registry.npmjs.org/@platformatic/utils/-/utils-0.28.1.tgz",
"integrity": "sha512-mj7+mLzLiAiGb/EeTR8rPE76NkQP+6TcRa/lbkiKvo9XG4fYrH+b7ScCQJgca/EFuCafPyjd896ZmP2Kgq0Mpg==",
"dependencies": {
"@fastify/deepmerge": "^1.3.0",
"minimatch": "^8.0.4"
}
},
"node_modules/@seriousme/openapi-schema-validator": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@seriousme/openapi-schema-validator/-/openapi-schema-validator-2.1.0.tgz",
"integrity": "sha512-J461zq7Qj4N/SQlUiyXFelGqtKJenW9DnTjX5fraLk9Lmybq7B6goBieAlMf3D2W+grrVz/hSDodB0faoD9y2Q==",
"dependencies": {
"ajv": "^8.11.0",
"ajv-draft-04": "^1.0.0",
"ajv-formats": "^2.1.1",
"js-yaml": "^4.1.0"
},
"bin": {
"validate-api": "bin/validate-api-cli.js"
}
},
"node_modules/@tootallnate/once": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz",
"integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==",
"optional": true,
"engines": {
"node": ">= 6"
}
},
"node_modules/@types/cuid": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/@types/cuid/-/cuid-1.3.1.tgz",
"integrity": "sha512-LwQOxZtpN3aEGElEicpHx1I6exi+mLBecAdLMWNRjGaYByD2CqGjSH1oVEQGeNSqgYBhLC1pIJQMDgcpxk0t8Q=="
},
"node_modules/@types/mysql": {