forked from ts-rest/ts-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
24307 lines (19441 loc) · 826 KB
/
pnpm-lock.yaml
File metadata and controls
24307 lines (19441 loc) · 826 KB
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
patchedDependencies:
'@nx/rollup@17.1.1':
hash: srgoyw37bnhowwxu725en4tk2y
path: patches/@nx__rollup@17.1.1.patch
importers:
.:
dependencies:
'@actions/core':
specifier: ^1.10.0
version: 1.10.0
'@anatine/zod-openapi':
specifier: ^2.0.1
version: 2.0.1(openapi3-ts@2.0.2)(zod@3.22.3)
'@azure/functions':
specifier: ^4.5.0
version: 4.5.0
'@babel/runtime':
specifier: ^7.20.6
version: 7.23.2
'@changesets/cli':
specifier: ^2.26.2
version: 2.26.2
'@docusaurus/core':
specifier: 2.4.1
version: 2.4.1(@docusaurus/types@2.4.1(@swc/core@1.3.96(@swc/helpers@0.5.3))(esbuild@0.17.19)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@swc/core@1.3.96(@swc/helpers@0.5.3))(esbuild@0.17.19)(eslint@8.53.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.2.2)
'@docusaurus/preset-classic':
specifier: 2.4.1
version: 2.4.1(@algolia/client-search@4.14.2)(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/react@18.3.1)(esbuild@0.17.19)(eslint@8.53.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.2.2)
'@mdx-js/react':
specifier: 1.6.22
version: 1.6.22(react@18.3.1)
'@nestjs/common':
specifier: 10.3.10
version: 10.3.10(reflect-metadata@0.1.13)(rxjs@7.8.1)
'@nestjs/core':
specifier: 10.3.10
version: 10.3.10(@nestjs/common@10.3.10(reflect-metadata@0.1.13)(rxjs@7.8.1))(@nestjs/platform-express@10.3.10)(reflect-metadata@0.1.13)(rxjs@7.8.1)
'@nestjs/platform-express':
specifier: 10.3.10
version: 10.3.10(@nestjs/common@10.3.10(reflect-metadata@0.1.13)(rxjs@7.8.1))(@nestjs/core@10.3.10)
'@nestjs/platform-fastify':
specifier: 10.3.10
version: 10.3.10(@nestjs/common@10.3.10(reflect-metadata@0.1.13)(rxjs@7.8.1))(@nestjs/core@10.3.10(@nestjs/common@10.3.10(reflect-metadata@0.1.13)(rxjs@7.8.1))(@nestjs/platform-express@10.3.10)(reflect-metadata@0.1.13)(rxjs@7.8.1))
'@nestjs/swagger':
specifier: 7.1.4
version: 7.1.4(@nestjs/common@10.3.10(reflect-metadata@0.1.13)(rxjs@7.8.1))(@nestjs/core@10.3.10(@nestjs/common@10.3.10(reflect-metadata@0.1.13)(rxjs@7.8.1))(@nestjs/platform-express@10.3.10)(reflect-metadata@0.1.13)(rxjs@7.8.1))(reflect-metadata@0.1.13)
'@openapi-contrib/json-schema-to-openapi-schema':
specifier: ^4.0.0
version: 4.0.0(eslint@8.53.0)(typescript@5.2.2)
'@prisma/client':
specifier: 6.3.1
version: 6.3.1(prisma@6.3.1(typescript@5.2.2))(typescript@5.2.2)
'@stackblitz/sdk':
specifier: ^1.8.0
version: 1.8.0
'@swc/helpers':
specifier: 0.5.3
version: 0.5.3
'@tailwindcss/typography':
specifier: ^0.5.4
version: 0.5.7(tailwindcss@3.2.4(postcss@8.4.40)(ts-node@10.9.1(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(typescript@5.2.2)))
'@tanstack/query-core':
specifier: ^5.51.9
version: 5.51.9
'@tanstack/react-query':
specifier: ^5.51.9
version: 5.51.11(react@18.3.1)
'@tanstack/react-query-devtools':
specifier: ^5.51.9
version: 5.51.11(@tanstack/react-query@5.51.11(react@18.3.1))(react@18.3.1)
'@tanstack/solid-query':
specifier: ^4.33.0
version: 4.33.0(solid-js@1.6.11)
'@tanstack/vue-query':
specifier: ^4.33.0
version: 4.33.0(vue@3.3.4)
'@types/body-parser':
specifier: ^1.19.2
version: 1.19.2
'@types/multer':
specifier: ^1.4.7
version: 1.4.7
'@types/qs':
specifier: ^6.9.7
version: 6.9.7
'@types/uuid':
specifier: ^8.3.4
version: 8.3.4
'@valibot/to-json-schema':
specifier: ^1.2.0
version: 1.2.0(valibot@1.1.0(typescript@5.2.2))
'@vitejs/plugin-react':
specifier: 4.0.3
version: 4.0.3(vite@4.5.3(@types/node@20.16.1)(less@4.1.3)(sass@1.55.0)(stylus@0.59.0)(terser@5.17.3))
'@vitejs/plugin-vue':
specifier: ^4.2.3
version: 4.2.3(vite@4.5.3(@types/node@20.16.1)(less@4.1.3)(sass@1.55.0)(stylus@0.59.0)(terser@5.17.3))(vue@3.3.4)
'@vitest/coverage-v8':
specifier: 0.34.1
version: 0.34.1(vitest@0.32.4(@vitest/ui@0.32.4)(jsdom@22.1.0)(less@4.1.3)(sass@1.55.0)(stylus@0.59.0)(terser@5.17.3))
arktype:
specifier: ^2.1.20
version: 2.1.20
autoprefixer:
specifier: 10.4.13
version: 10.4.13(postcss@8.4.40)
body-parser:
specifier: ^1.20.0
version: 1.20.2
classnames:
specifier: ^2.3.1
version: 2.3.2
clsx:
specifier: ^1.1.1
version: 1.2.1
core-js:
specifier: ^3.25.0
version: 3.25.1
cors:
specifier: ^2.8.5
version: 2.8.5
daisyui:
specifier: ^2.24.0
version: 2.28.0(autoprefixer@10.4.13(postcss@8.4.40))(postcss@8.4.40)(ts-node@10.9.1(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(typescript@5.2.2))
docusaurus-plugin-typedoc:
specifier: ^0.20.0
version: 0.20.0(typedoc-plugin-markdown@3.16.0(typedoc@0.25.0(typescript@5.2.2)))(typedoc@0.25.0(typescript@5.2.2))
express:
specifier: ^5.0.0
version: 5.1.0
fastify:
specifier: 4.28.0
version: 4.28.0
itty-router:
specifier: ^5.0.18
version: 5.0.18
jsonwebtoken:
specifier: ^9.0.0
version: 9.0.0
lodash:
specifier: ^4.17.21
version: 4.17.21
multer:
specifier: 1.4.5-lts.1
version: 1.4.5-lts.1
next:
specifier: 13.5.6
version: 13.5.6(@babel/core@7.22.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.55.0)
openapi3-ts:
specifier: ^2.0.2
version: 2.0.2
passport:
specifier: ^0.6.0
version: 0.6.0
passport-jwt:
specifier: ^4.0.1
version: 4.0.1
postcss:
specifier: 8.4.40
version: 8.4.40
prism-react-renderer:
specifier: ^1.2.1
version: 1.3.5(react@18.3.1)
react:
specifier: 18.3.1
version: 18.3.1
react-dom:
specifier: 18.3.1
version: 18.3.1(react@18.3.1)
react-error-boundary:
specifier: ^4.0.13
version: 4.0.13(react@18.3.1)
react-hook-form:
specifier: ^7.34.2
version: 7.35.0(react@18.3.1)
react-hot-toast:
specifier: ^2.3.0
version: 2.4.0(csstype@3.1.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
reflect-metadata:
specifier: ^0.1.13
version: 0.1.13
solid-js:
specifier: ^1.6.11
version: 1.6.11
swagger-ui-express:
specifier: ^4.5.0
version: 4.5.0(express@5.1.0)
tailwindcss:
specifier: 3.2.4
version: 3.2.4(postcss@8.4.40)(ts-node@10.9.1(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(typescript@5.2.2))
tslib:
specifier: ^2.6.2
version: 2.6.3
typedoc:
specifier: ^0.25.0
version: 0.25.0(typescript@5.2.2)
typedoc-plugin-markdown:
specifier: ^3.16.0
version: 3.16.0(typedoc@0.25.0(typescript@5.2.2))
uuid:
specifier: ^8.3.2
version: 8.3.2
valibot:
specifier: ^1.1.0
version: 1.1.0(typescript@5.2.2)
vitest:
specifier: 0.32.4
version: 0.32.4(@vitest/ui@0.32.4)(jsdom@22.1.0)(less@4.1.3)(sass@1.55.0)(stylus@0.59.0)(terser@5.17.3)
vue:
specifier: ^3.3.4
version: 3.3.4
zod:
specifier: 3.22.3
version: 3.22.3
zod4:
specifier: npm:zod@3.25.47
version: zod@3.25.47
zustand:
specifier: ^4.1.1
version: 4.1.1(immer@9.0.15)(react@18.3.1)
devDependencies:
'@babel/core':
specifier: ^7.14.5
version: 7.22.9
'@babel/preset-react':
specifier: ^7.14.5
version: 7.18.6(@babel/core@7.22.9)
'@cloudflare/workers-types':
specifier: ^4.20240405.0
version: 4.20240405.0
'@docusaurus/module-type-aliases':
specifier: 2.4.1
version: 2.4.1(@swc/core@1.3.96(@swc/helpers@0.5.3))(esbuild@0.17.19)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@nestjs/schematics':
specifier: 10.0.1
version: 10.0.1(chokidar@3.5.3)(typescript@5.2.2)
'@nestjs/testing':
specifier: 10.1.2
version: 10.1.2(@nestjs/common@10.3.10(reflect-metadata@0.1.13)(rxjs@7.8.1))(@nestjs/core@10.3.10(@nestjs/common@10.3.10(reflect-metadata@0.1.13)(rxjs@7.8.1))(@nestjs/platform-express@10.3.10)(reflect-metadata@0.1.13)(rxjs@7.8.1))(@nestjs/platform-express@10.3.10(@nestjs/common@10.3.10(reflect-metadata@0.1.13)(rxjs@7.8.1))(@nestjs/core@10.3.10))
'@nx-plus/docusaurus':
specifier: 14.1.0
version: 14.1.0(@nrwl/workspace@17.1.1(@swc/core@1.3.96(@swc/helpers@0.5.3)))(nx@17.1.1(@swc/core@1.3.96(@swc/helpers@0.5.3)))(typescript@5.2.2)
'@nx/detox':
specifier: 17.1.1
version: 17.1.1(@babel/traverse@7.22.8)(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(detox@20.11.3(jest@29.4.3(@types/node@20.16.1)(ts-node@10.9.1(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(typescript@5.2.2))))(eslint@8.53.0)(nx@17.1.1(@swc/core@1.3.96(@swc/helpers@0.5.3)))(ts-node@10.9.1(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(typescript@5.2.2))(typescript@5.2.2)(webpack@5.82.0(@swc/core@1.3.96(@swc/helpers@0.5.3))(esbuild@0.17.19))
'@nx/devkit':
specifier: 17.1.1
version: 17.1.1(nx@17.1.1(@swc/core@1.3.96(@swc/helpers@0.5.3)))
'@nx/eslint':
specifier: 17.1.1
version: 17.1.1(@babel/traverse@7.22.8)(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(eslint@8.53.0)(nx@17.1.1(@swc/core@1.3.96(@swc/helpers@0.5.3)))
'@nx/eslint-plugin':
specifier: 17.1.1
version: 17.1.1(@babel/traverse@7.22.8)(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(@typescript-eslint/parser@6.10.0(eslint@8.53.0)(typescript@5.2.2))(eslint-config-prettier@9.0.0(eslint@8.53.0))(eslint@8.53.0)(nx@17.1.1(@swc/core@1.3.96(@swc/helpers@0.5.3)))(typescript@5.2.2)
'@nx/express':
specifier: 17.1.1
version: 17.1.1(@babel/traverse@7.22.8)(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(eslint@8.53.0)(express@5.1.0)(nx@17.1.1(@swc/core@1.3.96(@swc/helpers@0.5.3)))(ts-node@10.9.1(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(typescript@5.2.2))(typescript@5.2.2)
'@nx/jest':
specifier: 17.1.1
version: 17.1.1(@babel/traverse@7.22.8)(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(nx@17.1.1(@swc/core@1.3.96(@swc/helpers@0.5.3)))(ts-node@10.9.1(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(typescript@5.2.2))(typescript@5.2.2)
'@nx/js':
specifier: 17.1.1
version: 17.1.1(@babel/traverse@7.22.8)(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(nx@17.1.1(@swc/core@1.3.96(@swc/helpers@0.5.3)))(typescript@5.2.2)
'@nx/nest':
specifier: 17.1.1
version: 17.1.1(@babel/traverse@7.22.8)(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(chokidar@3.5.3)(eslint@8.53.0)(nx@17.1.1(@swc/core@1.3.96(@swc/helpers@0.5.3)))(ts-node@10.9.1(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(typescript@5.2.2))(typescript@5.2.2)
'@nx/next':
specifier: 17.1.1
version: 17.1.1(@babel/core@7.22.9)(@babel/traverse@7.22.8)(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(eslint@8.53.0)(file-loader@6.2.0(webpack@5.82.0(@swc/core@1.3.96(@swc/helpers@0.5.3))(esbuild@0.17.19)))(next@13.5.6(@babel/core@7.22.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.55.0))(nx@17.1.1(@swc/core@1.3.96(@swc/helpers@0.5.3)))(typescript@5.2.2)(webpack@5.82.0(@swc/core@1.3.96(@swc/helpers@0.5.3))(esbuild@0.17.19))
'@nx/node':
specifier: 17.1.1
version: 17.1.1(@babel/traverse@7.22.8)(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(eslint@8.53.0)(nx@17.1.1(@swc/core@1.3.96(@swc/helpers@0.5.3)))(ts-node@10.9.1(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(typescript@5.2.2))(typescript@5.2.2)
'@nx/react':
specifier: 17.1.1
version: 17.1.1(@babel/traverse@7.22.8)(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(eslint@8.53.0)(nx@17.1.1(@swc/core@1.3.96(@swc/helpers@0.5.3)))(typescript@5.2.2)(webpack@5.82.0(@swc/core@1.3.96(@swc/helpers@0.5.3))(esbuild@0.17.19))
'@nx/rollup':
specifier: 17.1.1
version: 17.1.1(patch_hash=srgoyw37bnhowwxu725en4tk2y)(@babel/core@7.22.9)(@babel/traverse@7.22.8)(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/babel__core@7.1.19)(@types/node@20.16.1)(nx@17.1.1(@swc/core@1.3.96(@swc/helpers@0.5.3)))(ts-node@10.9.1(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(typescript@5.2.2))(typescript@5.2.2)
'@nx/vite':
specifier: 17.1.1
version: 17.1.1(@babel/traverse@7.22.8)(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(nx@17.1.1(@swc/core@1.3.96(@swc/helpers@0.5.3)))(typescript@5.2.2)(vite@4.5.3(@types/node@20.16.1)(less@4.1.3)(sass@1.55.0)(stylus@0.59.0)(terser@5.17.3))(vitest@0.32.4(@vitest/ui@0.32.4)(jsdom@22.1.0)(less@4.1.3)(sass@1.55.0)(stylus@0.59.0)(terser@5.17.3))
'@nx/web':
specifier: 17.1.1
version: 17.1.1(@babel/traverse@7.22.8)(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(nx@17.1.1(@swc/core@1.3.96(@swc/helpers@0.5.3)))(typescript@5.2.2)
'@nx/webpack':
specifier: 17.1.1
version: 17.1.1(@babel/traverse@7.22.8)(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(esbuild@0.17.19)(html-webpack-plugin@5.5.0(webpack@5.82.0(@swc/core@1.3.96(@swc/helpers@0.5.3))(esbuild@0.17.19)))(nx@17.1.1(@swc/core@1.3.96(@swc/helpers@0.5.3)))(typescript@5.2.2)
'@nx/workspace':
specifier: 17.1.1
version: 17.1.1(@swc/core@1.3.96(@swc/helpers@0.5.3))
'@pmmmwh/react-refresh-webpack-plugin':
specifier: ^0.5.7
version: 0.5.11(react-refresh@0.14.0)(type-fest@3.13.1)(webpack-dev-server@4.15.0(webpack@5.82.0(@swc/core@1.3.96(@swc/helpers@0.5.3))(esbuild@0.17.19)))(webpack@5.82.0(@swc/core@1.3.96(@swc/helpers@0.5.3))(esbuild@0.17.19))
'@svgr/webpack':
specifier: ^6.1.2
version: 6.5.1
'@swc/cli':
specifier: 0.1.62
version: 0.1.62(@swc/core@1.3.96(@swc/helpers@0.5.3))(chokidar@3.5.3)
'@swc/core':
specifier: 1.3.96
version: 1.3.96(@swc/helpers@0.5.3)
'@swc/jest':
specifier: 0.2.29
version: 0.2.29(@swc/core@1.3.96(@swc/helpers@0.5.3))
'@testing-library/jest-dom':
specifier: 6.4.6
version: 6.4.6(@jest/globals@29.5.0)(@types/jest@29.4.4)(jest@29.4.3(@types/node@20.16.1)(ts-node@10.9.1(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(typescript@5.2.2)))(vitest@0.32.4(@vitest/ui@0.32.4)(jsdom@22.1.0)(less@4.1.3)(sass@1.55.0)(stylus@0.59.0)(terser@5.17.3))
'@testing-library/react':
specifier: ^16.0.0
version: 16.0.0(@testing-library/dom@10.4.0)(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@testing-library/vue':
specifier: ^7.0.0
version: 7.0.0(@vue/compiler-sfc@3.3.4)(@vue/server-renderer@3.3.4(vue@3.3.4))(vue@3.3.4)
'@types/aws-lambda':
specifier: ^8.10.115
version: 8.10.136
'@types/cors':
specifier: ^2.8.12
version: 2.8.12
'@types/express':
specifier: ^5.0.0
version: 5.0.1
'@types/fs-extra':
specifier: ^11.0.4
version: 11.0.4
'@types/jest':
specifier: 29.4.4
version: 29.4.4
'@types/jsonwebtoken':
specifier: ^9.0.2
version: 9.0.2
'@types/lodash':
specifier: ^4.14.195
version: 4.14.195
'@types/node':
specifier: 20.16.1
version: 20.16.1
'@types/passport':
specifier: ^1.0.12
version: 1.0.12
'@types/passport-jwt':
specifier: ^3.0.8
version: 3.0.8
'@types/react':
specifier: 18.3.1
version: 18.3.1
'@types/react-dom':
specifier: 18.3.0
version: 18.3.0
'@types/supertest':
specifier: ^2.0.12
version: 2.0.12
'@types/swagger-ui-express':
specifier: ^4.1.3
version: 4.1.3
'@types/wait-on':
specifier: ^5.3.1
version: 5.3.4
'@typescript-eslint/eslint-plugin':
specifier: 6.10.0
version: 6.10.0(@typescript-eslint/parser@6.10.0(eslint@8.53.0)(typescript@5.2.2))(eslint@8.53.0)(typescript@5.2.2)
'@typescript-eslint/parser':
specifier: 6.10.0
version: 6.10.0(eslint@8.53.0)(typescript@5.2.2)
'@vitest/ui':
specifier: 0.32.4
version: 0.32.4(vitest@0.32.4)
'@wanews/nx-vite':
specifier: ^0.11.0
version: 0.11.0(@nrwl/devkit@17.1.1(nx@17.1.1(@swc/core@1.3.96(@swc/helpers@0.5.3))))(nx@17.1.1(@swc/core@1.3.96(@swc/helpers@0.5.3)))(vite-tsconfig-paths@4.2.0(typescript@5.2.2)(vite@4.5.3(@types/node@20.16.1)(less@4.1.3)(sass@1.55.0)(stylus@0.59.0)(terser@5.17.3)))(vite@4.5.3(@types/node@20.16.1)(less@4.1.3)(sass@1.55.0)(stylus@0.59.0)(terser@5.17.3))(vitest@0.32.4(@vitest/ui@0.32.4)(jsdom@22.1.0)(less@4.1.3)(sass@1.55.0)(stylus@0.59.0)(terser@5.17.3))
azure-functions-core-tools:
specifier: ^4.0.5858
version: 4.0.5858
babel-jest:
specifier: 29.4.3
version: 29.4.3(@babel/core@7.22.9)
commander:
specifier: ^10.0.1
version: 10.0.1
css-loader:
specifier: ^6.4.0
version: 6.7.1(webpack@5.82.0(@swc/core@1.3.96(@swc/helpers@0.5.3))(esbuild@0.17.19))
eslint:
specifier: 8.53.0
version: 8.53.0
eslint-config-next:
specifier: 13.1.1
version: 13.1.1(eslint@8.53.0)(typescript@5.2.2)
eslint-config-prettier:
specifier: 9.0.0
version: 9.0.0(eslint@8.53.0)
eslint-plugin-import:
specifier: 2.29.0
version: 2.29.0(@typescript-eslint/parser@6.10.0(eslint@8.53.0)(typescript@5.2.2))(eslint@8.53.0)
eslint-plugin-jsx-a11y:
specifier: 6.8.0
version: 6.8.0(eslint@8.53.0)
eslint-plugin-prettier:
specifier: 5.1.3
version: 5.1.3(@types/eslint@8.4.6)(eslint-config-prettier@9.0.0(eslint@8.53.0))(eslint@8.53.0)(prettier@3.0.3)
eslint-plugin-react:
specifier: 7.33.2
version: 7.33.2(eslint@8.53.0)
eslint-plugin-react-hooks:
specifier: 4.6.0
version: 4.6.0(eslint@8.53.0)
fetch-mock-jest:
specifier: ^1.5.1
version: 1.5.1(node-fetch@2.6.7)
fs-extra:
specifier: ^11.2.0
version: 11.2.0
jest:
specifier: 29.4.3
version: 29.4.3(@types/node@20.16.1)(ts-node@10.9.1(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(typescript@5.2.2))
jest-circus:
specifier: 28.1.1
version: 28.1.1
jest-environment-jsdom:
specifier: 29.4.3
version: 29.4.3
jsdom:
specifier: 22.1.0
version: 22.1.0
node-mocks-http:
specifier: ^1.13.0
version: 1.13.0
nx:
specifier: 17.1.1
version: 17.1.1(@swc/core@1.3.96(@swc/helpers@0.5.3))
parse-multipart-data:
specifier: ^1.5.0
version: 1.5.0
prettier:
specifier: ^3.0.3
version: 3.0.3
prisma:
specifier: 6.3.1
version: 6.3.1(typescript@5.2.2)
qs:
specifier: ^6.11.0
version: 6.11.0
rollup:
specifier: ^3.10.1
version: 3.29.4
rollup-plugin-preserve-directives:
specifier: ^0.4.0
version: 0.4.0(rollup@3.29.4)
sass:
specifier: 1.55.0
version: 1.55.0
sort-package-json:
specifier: ^2.10.0
version: 2.10.0
style-loader:
specifier: ^3.3.0
version: 3.3.1(webpack@5.82.0(@swc/core@1.3.96(@swc/helpers@0.5.3))(esbuild@0.17.19))
supertest:
specifier: ^6.2.4
version: 6.2.4
ts-deepmerge:
specifier: ^6.0.3
version: 6.2.0
ts-jest:
specifier: 29.1.0
version: 29.1.0(@babel/core@7.22.9)(@jest/types@29.6.1)(babel-jest@29.4.3(@babel/core@7.22.9))(esbuild@0.17.19)(jest@29.4.3(@types/node@20.16.1)(ts-node@10.9.1(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(typescript@5.2.2)))(typescript@5.2.2)
ts-node:
specifier: ^10.9.1
version: 10.9.1(@swc/core@1.3.96(@swc/helpers@0.5.3))(@types/node@20.16.1)(typescript@5.2.2)
tsd:
specifier: ^0.22.0
version: 0.22.0
type-fest:
specifier: ^3.11.1
version: 3.13.1
typescript:
specifier: 5.2.2
version: 5.2.2
vite:
specifier: 4.5.3
version: 4.5.3(@types/node@20.16.1)(less@4.1.3)(sass@1.55.0)(stylus@0.59.0)(terser@5.17.3)
vite-plugin-dts:
specifier: 2.3.0
version: 2.3.0(@types/node@20.16.1)(rollup@3.29.4)(vite@4.5.3(@types/node@20.16.1)(less@4.1.3)(sass@1.55.0)(stylus@0.59.0)(terser@5.17.3))
vite-plugin-eslint:
specifier: ^1.8.1
version: 1.8.1(eslint@8.53.0)(vite@4.5.3(@types/node@20.16.1)(less@4.1.3)(sass@1.55.0)(stylus@0.59.0)(terser@5.17.3))
vite-plugin-solid:
specifier: 2.5.0
version: 2.5.0(solid-js@1.6.11)(vite@4.5.3(@types/node@20.16.1)(less@4.1.3)(sass@1.55.0)(stylus@0.59.0)(terser@5.17.3))
vite-tsconfig-paths:
specifier: ~4.2.0
version: 4.2.0(typescript@5.2.2)(vite@4.5.3(@types/node@20.16.1)(less@4.1.3)(sass@1.55.0)(stylus@0.59.0)(terser@5.17.3))
wait-on:
specifier: ^7.0.1
version: 7.2.0
webpack:
specifier: ^5.76.0
version: 5.82.0(@swc/core@1.3.96(@swc/helpers@0.5.3))(esbuild@0.17.19)
webpack-merge:
specifier: ^5.8.0
version: 5.8.0
wrangler:
specifier: ^3.1.0
version: 3.34.2(@cloudflare/workers-types@4.20240405.0)
apps/example-azure-function: {}
apps/example-express: {}
apps/example-microservice/web-app: {}
apps/example-microservice/web-app-solid: {}
apps/example-microservice/web-app-vue: {}
apps/example-nest: {}
apps/example-next: {}
libs/example-contracts: {}
libs/example-microservice/util-posts-api: {}
libs/example-microservice/util-users-api: {}
libs/non-strict-mode-test: {}
libs/ts-rest/core:
dependencies:
'@types/node':
specifier: ^18.18.7 || >=20.8.4
version: 18.18.7
libs/ts-rest/express:
dependencies:
express:
specifier: ^4.0.0 || ^5.0.0
version: 5.1.0
libs/ts-rest/fastify:
dependencies:
fastify:
specifier: ^4.0.0
version: 4.28.0
libs/ts-rest/nest:
dependencies:
'@nestjs/common':
specifier: ^9.0.0 || ^10.0.0 || ^11.0.0
version: 10.3.10(reflect-metadata@0.1.13)(rxjs@7.8.1)
'@nestjs/core':
specifier: ^9.0.0 || ^10.0.0 || ^11.0.0
version: 10.3.10(@nestjs/common@10.3.10(reflect-metadata@0.1.13)(rxjs@7.8.1))(@nestjs/platform-express@10.3.10)(reflect-metadata@0.1.13)(rxjs@7.8.1)
rxjs:
specifier: ^7.1.0
version: 7.8.1
devDependencies:
'@nestjs/platform-express':
specifier: ^9.0.0 || ^10.0.0 || ^11.0.0
version: 10.3.10(@nestjs/common@10.3.10(reflect-metadata@0.1.13)(rxjs@7.8.1))(@nestjs/core@10.3.10)
'@nestjs/platform-fastify':
specifier: ^9.0.0 || ^10.0.0 || ^11.0.0
version: 10.3.10(@nestjs/common@10.3.10(reflect-metadata@0.1.13)(rxjs@7.8.1))(@nestjs/core@10.3.10(@nestjs/common@10.3.10(reflect-metadata@0.1.13)(rxjs@7.8.1))(@nestjs/platform-express@10.3.10)(reflect-metadata@0.1.13)(rxjs@7.8.1))
fastify:
specifier: ^4.0.0
version: 4.28.0
libs/ts-rest/next:
dependencies:
next:
specifier: ^12.0.0 || ^13.0.0 || ^14.0.0
version: 13.5.6(@babel/core@7.22.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.55.0)
libs/ts-rest/open-api:
dependencies:
'@anatine/zod-openapi':
specifier: ^1.12.0
version: 1.12.0(openapi3-ts@2.0.2)(zod@3.22.3)
openapi3-ts:
specifier: ^2.0.2
version: 2.0.2
zod:
specifier: ^3.22.3
version: 3.22.3
libs/ts-rest/react-query:
dependencies:
'@tanstack/react-query':
specifier: ^4.0.0
version: 4.36.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: ^16.8.0 || ^17.0.0 || ^18.0.0
version: 18.3.1
libs/ts-rest/react-query-v5:
dependencies:
'@tanstack/react-query':
specifier: ^5.0.0
version: 5.51.11(react@18.3.1)
react:
specifier: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
version: 18.3.1
libs/ts-rest/serverless:
dependencies:
'@azure/functions':
specifier: ^4.0.0
version: 4.5.0
'@types/aws-lambda':
specifier: ^8.10.115
version: 8.10.136
itty-router:
specifier: ^5.0.9
version: 5.0.18
next:
specifier: ^12.0.0 || ^13.0.0 || ^14.0.0
version: 13.5.6(@babel/core@7.22.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.55.0)
libs/ts-rest/solid-query:
dependencies:
'@tanstack/solid-query':
specifier: ^4.0.0
version: 4.33.0(solid-js@1.6.11)
libs/ts-rest/vue-query:
dependencies:
'@tanstack/vue-query':
specifier: ^4.0.0
version: 4.33.0(vue@3.3.4)
packages:
'@aashutoshrathi/word-wrap@1.2.6':
resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
engines: {node: '>=0.10.0'}
'@actions/core@1.10.0':
resolution: {integrity: sha512-2aZDDa3zrrZbP5ZYg159sNoLRb61nQ7awl5pSvIq5Qpj81vwDzdMRKzkWJGJuwVvWpvZKx7vspJALyvaaIQyug==}
'@actions/http-client@2.0.1':
resolution: {integrity: sha512-PIXiMVtz6VvyaRsGY268qvj57hXQEpsYogYOu2nrQhlf+XCGmZstmuZBbAybUl1nQGnvS1k1eEsQ69ZoD7xlSw==}
'@adobe/css-tools@4.4.0':
resolution: {integrity: sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==}
'@algolia/autocomplete-core@1.7.1':
resolution: {integrity: sha512-eiZw+fxMzNQn01S8dA/hcCpoWCOCwcIIEUtHHdzN5TGB3IpzLbuhqFeTfh2OUhhgkE8Uo17+wH+QJ/wYyQmmzg==}
'@algolia/autocomplete-preset-algolia@1.7.1':
resolution: {integrity: sha512-pJwmIxeJCymU1M6cGujnaIYcY3QPOVYZOXhFkWVM7IxKzy272BwCvMFMyc5NpG/QmiObBxjo7myd060OeTNJXg==}
peerDependencies:
'@algolia/client-search': ^4.9.1
algoliasearch: ^4.9.1
'@algolia/autocomplete-shared@1.7.1':
resolution: {integrity: sha512-eTmGVqY3GeyBTT8IWiB2K5EuURAqhnumfktAEoHxfDY2o7vg2rSnO16ZtIG0fMgt3py28Vwgq42/bVEuaQV7pg==}
'@algolia/cache-browser-local-storage@4.14.2':
resolution: {integrity: sha512-FRweBkK/ywO+GKYfAWbrepewQsPTIEirhi1BdykX9mxvBPtGNKccYAxvGdDCumU1jL4r3cayio4psfzKMejBlA==}
'@algolia/cache-common@4.14.2':
resolution: {integrity: sha512-SbvAlG9VqNanCErr44q6lEKD2qoK4XtFNx9Qn8FK26ePCI8I9yU7pYB+eM/cZdS9SzQCRJBbHUumVr4bsQ4uxg==}
'@algolia/cache-in-memory@4.14.2':
resolution: {integrity: sha512-HrOukWoop9XB/VFojPv1R5SVXowgI56T9pmezd/djh2JnVN/vXswhXV51RKy4nCpqxyHt/aGFSq2qkDvj6KiuQ==}
'@algolia/client-account@4.14.2':
resolution: {integrity: sha512-WHtriQqGyibbb/Rx71YY43T0cXqyelEU0lB2QMBRXvD2X0iyeGl4qMxocgEIcbHyK7uqE7hKgjT8aBrHqhgc1w==}
'@algolia/client-analytics@4.14.2':
resolution: {integrity: sha512-yBvBv2mw+HX5a+aeR0dkvUbFZsiC4FKSnfqk9rrfX+QrlNOKEhCG0tJzjiOggRW4EcNqRmaTULIYvIzQVL2KYQ==}
'@algolia/client-common@4.14.2':
resolution: {integrity: sha512-43o4fslNLcktgtDMVaT5XwlzsDPzlqvqesRi4MjQz2x4/Sxm7zYg5LRYFol1BIhG6EwxKvSUq8HcC/KxJu3J0Q==}
'@algolia/client-personalization@4.14.2':
resolution: {integrity: sha512-ACCoLi0cL8CBZ1W/2juehSltrw2iqsQBnfiu/Rbl9W2yE6o2ZUb97+sqN/jBqYNQBS+o0ekTMKNkQjHHAcEXNw==}
'@algolia/client-search@4.14.2':
resolution: {integrity: sha512-L5zScdOmcZ6NGiVbLKTvP02UbxZ0njd5Vq9nJAmPFtjffUSOGEp11BmD2oMJ5QvARgx2XbX4KzTTNS5ECYIMWw==}
'@algolia/events@4.0.1':
resolution: {integrity: sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==}
'@algolia/logger-common@4.14.2':
resolution: {integrity: sha512-/JGlYvdV++IcMHBnVFsqEisTiOeEr6cUJtpjz8zc0A9c31JrtLm318Njc72p14Pnkw3A/5lHHh+QxpJ6WFTmsA==}
'@algolia/logger-console@4.14.2':
resolution: {integrity: sha512-8S2PlpdshbkwlLCSAB5f8c91xyc84VM9Ar9EdfE9UmX+NrKNYnWR1maXXVDQQoto07G1Ol/tYFnFVhUZq0xV/g==}
'@algolia/requester-browser-xhr@4.14.2':
resolution: {integrity: sha512-CEh//xYz/WfxHFh7pcMjQNWgpl4wFB85lUMRyVwaDPibNzQRVcV33YS+63fShFWc2+42YEipFGH2iPzlpszmDw==}
'@algolia/requester-common@4.14.2':
resolution: {integrity: sha512-73YQsBOKa5fvVV3My7iZHu1sUqmjjfs9TteFWwPwDmnad7T0VTCopttcsM3OjLxZFtBnX61Xxl2T2gmG2O4ehg==}
'@algolia/requester-node-http@4.14.2':
resolution: {integrity: sha512-oDbb02kd1o5GTEld4pETlPZLY0e+gOSWjWMJHWTgDXbv9rm/o2cF7japO6Vj1ENnrqWvLBmW1OzV9g6FUFhFXg==}
'@algolia/transporter@4.14.2':
resolution: {integrity: sha512-t89dfQb2T9MFQHidjHcfhh6iGMNwvuKUvojAj+JsrHAGbuSy7yE4BylhLX6R0Q1xYRoC4Vvv+O5qIw/LdnQfsQ==}
'@ampproject/remapping@2.2.1':
resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
engines: {node: '>=6.0.0'}
'@anatine/zod-openapi@1.12.0':
resolution: {integrity: sha512-ZdkmQFXdc2us0nTBPWiJ3joHxsZoc5G79hKB8QzUuo73zp2A4t4TlBmOjS+hJfMnTBATfJutrlN/wK4DUq6ztg==}
peerDependencies:
openapi3-ts: ^2.0.0 || ^3.0.0
zod: ^3.20.0
'@anatine/zod-openapi@2.0.1':
resolution: {integrity: sha512-ks13oMq3wKFobQ6W+C9h893b2kYAff4Giqwmr5gxgP1HyoBhM4Iub1Z/Q3x5EsAfqfTi8qEOBuqTf0Tnv10D2w==}
peerDependencies:
openapi3-ts: ^4.1.2
zod: ^3.20.0
'@angular-devkit/core@15.2.4':
resolution: {integrity: sha512-yl+0j1bMwJLKShsyCXw77tbJG8Sd21+itisPLL2MgEpLNAO252kr9zG4TLlFRJyKVftm2l1h78KjqvM5nbOXNg==}
engines: {node: ^14.20.0 || ^16.13.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/core@16.1.0':
resolution: {integrity: sha512-mrWpuDvttmhrCGcLc68RIXKtTzUhkBTsE5ZZFZNO1+FSC+vO/ZpyCpPd6C+6coM68NfXYjHlms5XF6KbxeGn/Q==}
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@15.2.4':
resolution: {integrity: sha512-/W7/vvn59PAVLzhcvD4/N/E8RDhub8ny1A7I96LTRjC5o+yvVV16YJ4YJzolrRrIEN01KmLVQJ9A58VCaweMgw==}
engines: {node: ^14.20.0 || ^16.13.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
'@angular-devkit/schematics@16.1.0':
resolution: {integrity: sha512-LM35PH9DT3eQRSZgrkk2bx1ZQjjVh8BCByTlr37/c+FnF9mNbeBsa1YkxrlsN/CwO+045OwEwRHnkM9Zcx0U/A==}
engines: {node: ^16.14.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
'@apidevtools/json-schema-ref-parser@12.0.2':
resolution: {integrity: sha512-SoZWqQz4YMKdw4kEMfG5w6QAy+rntjsoAT1FtvZAnVEnCR4uy9YSuDBNoVAFHgzSz0dJbISLLCSrGR2Zd7bcvA==}
engines: {node: '>= 16'}
'@ark/schema@0.46.0':
resolution: {integrity: sha512-c2UQdKgP2eqqDArfBqQIJppxJHvNNXuQPeuSPlDML4rjw+f1cu0qAlzOG4b8ujgm9ctIDWwhpyw6gjG5ledIVQ==}
'@ark/util@0.46.0':
resolution: {integrity: sha512-JPy/NGWn/lvf1WmGCPw2VGpBg5utZraE84I7wli18EDF3p3zc/e9WolT35tINeZO3l7C77SjqRJeAUoT0CvMRg==}
'@azure/functions@4.5.0':
resolution: {integrity: sha512-WNCiOHMQEZpezxgThD3o2McKEjUEljtQBvdw4X4oE5714eTw76h33kIj0660ZJGEnxYSx4dx18oAbg5kLMs9iQ==}
engines: {node: '>=18.0'}
'@babel/code-frame@7.22.5':
resolution: {integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.22.9':
resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==}
engines: {node: '>=6.9.0'}
'@babel/core@7.12.9':
resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==}
engines: {node: '>=6.9.0'}
'@babel/core@7.22.9':
resolution: {integrity: sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.22.9':
resolution: {integrity: sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==}
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.10':
resolution: {integrity: sha512-Av0qubwDQxC56DoUReVDeLfMEjYYSN1nZrTUrWkXd7hpU73ymRANkbuDm3yni9npkn+RXy9nNbEJZEzXr7xrfQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.22.10':
resolution: {integrity: sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==}
engines: {node: '>=6.9.0'}
'@babel/helper-create-class-features-plugin@7.22.10':
resolution: {integrity: sha512-5IBb77txKYQPpOEdUdIhBx8VrZyDCQ+H82H0+5dX1TmuscP5vJKEE3cKurjtIw/vFwzbVH48VweE78kVDBrqjA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-create-regexp-features-plugin@7.22.9':
resolution: {integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-define-polyfill-provider@0.4.2':
resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
'@babel/helper-environment-visitor@7.22.5':
resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==}
engines: {node: '>=6.9.0'}
'@babel/helper-function-name@7.22.5':
resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-hoist-variables@7.22.5':
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
'@babel/helper-member-expression-to-functions@7.22.5':
resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.18.6':
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.22.5':
resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-transforms@7.22.9':
resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-optimise-call-expression@7.22.5':
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
'@babel/helper-plugin-utils@7.10.4':
resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==}
'@babel/helper-plugin-utils@7.22.5':
resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
engines: {node: '>=6.9.0'}
'@babel/helper-remap-async-to-generator@7.22.9':
resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-replace-supers@7.22.9':
resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-simple-access@7.22.5':
resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
engines: {node: '>=6.9.0'}
'@babel/helper-skip-transparent-expression-wrappers@7.22.5':
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
'@babel/helper-split-export-declaration@7.22.6':
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.22.5':
resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.22.5':
resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.22.5':
resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==}
engines: {node: '>=6.9.0'}
'@babel/helper-wrap-function@7.22.10':
resolution: {integrity: sha512-OnMhjWjuGYtdoO3FmsEFWvBStBAe2QOgwOLsLNDjN+aaiMD8InJk1/O3HSD8lkqTjCgg5YI34Tz15KNNA3p+nQ==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.22.6':
resolution: {integrity: sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==}
engines: {node: '>=6.9.0'}
'@babel/highlight@7.22.5':
resolution: {integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.22.7':
resolution: {integrity: sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5':
resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5':
resolution: {integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
'@babel/plugin-proposal-decorators@7.22.10':
resolution: {integrity: sha512-KxN6TqZzcFi4uD3UifqXElBTBNLAEH1l3vzMQj6JwJZbL2sZlThxSViOKCYY+4Ah4V4JhQ95IVB7s/Y6SJSlMQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-proposal-object-rest-spread@7.12.1':
resolution: {integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==}
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2':
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-async-generators@7.8.4':
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-bigint@7.8.3':
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-class-properties@7.12.13':
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-class-static-block@7.14.5':
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-decorators@7.22.10':
resolution: {integrity: sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-dynamic-import@7.8.3':
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-export-namespace-from@7.8.3':
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-import-assertions@7.22.5':
resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-import-attributes@7.22.5':
resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-import-meta@7.10.4':
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-json-strings@7.8.3':
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0