-
Notifications
You must be signed in to change notification settings - Fork 3
/
pnpm-lock.yaml
18954 lines (15260 loc) · 696 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
importers:
.:
dependencies:
'@changesets/cli':
specifier: ^2.27.8
version: 2.27.8
devDependencies:
'@jsx-mail/eslint-config':
specifier: workspace:*
version: link:packages/eslint-config
'@jsx-mail/typescript-config':
specifier: workspace:*
version: link:packages/typescript-config
prettier:
specifier: ^3.1.0
version: 3.3.3
turbo:
specifier: latest
version: 2.1.3
apps/api:
dependencies:
'@aws-sdk/client-s3':
specifier: ^3.515.0
version: 3.654.0
'@aws-sdk/client-ses':
specifier: ^3.662.0
version: 3.662.0
'@jsx-mail/core':
specifier: ^2.2.2
version: 2.2.2
'@nestjs/bullmq':
specifier: ^10.2.1
version: 10.2.1(@nestjs/common@10.4.4(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.1.14)(rxjs@7.8.1))(@nestjs/core@10.4.4)(bullmq@5.15.0)
'@nestjs/common':
specifier: ^10.0.0
version: 10.4.4(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.1.14)(rxjs@7.8.1)
'@nestjs/core':
specifier: ^10.0.0
version: 10.4.4(@nestjs/common@10.4.4(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.1.14)(rxjs@7.8.1))(@nestjs/platform-express@10.4.4)(reflect-metadata@0.1.14)(rxjs@7.8.1)
'@nestjs/platform-express':
specifier: ^10.3.1
version: 10.4.4(@nestjs/common@10.4.4(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.1.14)(rxjs@7.8.1))(@nestjs/core@10.4.4)
'@prisma/client':
specifier: ^5.9.1
version: 5.19.1(prisma@5.19.1)
axios:
specifier: ^1.6.7
version: 1.7.7
bcryptjs:
specifier: ^2.4.3
version: 2.4.3
body-parser:
specifier: ^1.20.2
version: 1.20.3
bullmq:
specifier: ^5.15.0
version: 5.15.0
class-transformer:
specifier: ^0.5.1
version: 0.5.1
class-validator:
specifier: ^0.14.1
version: 0.14.1
country-to-currency:
specifier: ^1.1.5
version: 1.1.5
dotenv:
specifier: ^16.4.4
version: 16.4.5
jsx-mail:
specifier: ^2.3.2
version: 2.3.2
moment:
specifier: ^2.30.1
version: 2.30.1
multer:
specifier: 1.4.5-lts.1
version: 1.4.5-lts.1
reflect-metadata:
specifier: ^0.1.13
version: 0.1.14
rxjs:
specifier: ^7.8.1
version: 7.8.1
stripe:
specifier: ^14.15.0
version: 14.25.0
devDependencies:
'@nestjs/cli':
specifier: ^10.0.0
version: 10.4.5
'@nestjs/schematics':
specifier: ^10.0.0
version: 10.1.4(chokidar@3.6.0)(typescript@5.6.2)
'@types/bcryptjs':
specifier: ^2.4.6
version: 2.4.6
'@types/express':
specifier: ^4.17.17
version: 4.17.21
'@types/multer':
specifier: ^1.4.11
version: 1.4.12
'@typescript-eslint/eslint-plugin':
specifier: ^6.0.0
version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2)
'@typescript-eslint/parser':
specifier: ^6.0.0
version: 6.21.0(eslint@8.57.1)(typescript@5.6.2)
eslint:
specifier: ^8.42.0
version: 8.57.1
eslint-config-prettier:
specifier: ^9.0.0
version: 9.1.0(eslint@8.57.1)
eslint-plugin-prettier:
specifier: ^5.0.0
version: 5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)
prettier:
specifier: ^3.0.0
version: 3.3.3
prisma:
specifier: ^5.9.0
version: 5.19.1
source-map-support:
specifier: ^0.5.21
version: 0.5.21
ts-loader:
specifier: ^9.4.3
version: 9.5.1(typescript@5.6.2)(webpack@5.94.0)
ts-node:
specifier: ^10.9.2
version: 10.9.2(@types/node@22.6.0)(typescript@5.6.2)
tsconfig-paths:
specifier: ^4.2.0
version: 4.2.0
typescript:
specifier: ^5.1.3
version: 5.6.2
apps/cloud:
dependencies:
'@hookform/resolvers':
specifier: ^3.9.0
version: 3.9.0(react-hook-form@7.53.0(react@18.3.1))
'@internationalized/date':
specifier: ^3.5.5
version: 3.5.5
'@next/third-parties':
specifier: ^14.2.15
version: 14.2.15(next@14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
'@nextui-org/react':
specifier: ^2.4.8
version: 2.4.8(@types/react@18.3.3)(framer-motion@11.1.9(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4)))
'@nextui-org/theme':
specifier: ^2.2.11
version: 2.2.11(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4)))
'@react-aria/ssr':
specifier: 3.9.4
version: 3.9.4(react@18.3.1)
'@react-aria/visually-hidden':
specifier: 3.8.12
version: 3.8.12(react@18.3.1)
axios:
specifier: ^1.7.7
version: 1.7.7
chart.js:
specifier: ^4.4.1
version: 4.4.4
clsx:
specifier: 2.1.1
version: 2.1.1
country-to-currency:
specifier: ^1.1.5
version: 1.1.5
framer-motion:
specifier: ~11.1.1
version: 11.1.9(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
iconsax-react:
specifier: ^0.0.8
version: 0.0.8(react@18.3.1)
intl-messageformat:
specifier: ^10.5.0
version: 10.5.14
moment:
specifier: ^2.30.1
version: 2.30.1
next:
specifier: 14.2.4
version: 14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
next-themes:
specifier: ^0.2.1
version: 0.2.1(next@14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: 18.3.1
version: 18.3.1
react-chartjs-2:
specifier: ^5.2.0
version: 5.2.0(chart.js@4.4.4)(react@18.3.1)
react-dom:
specifier: 18.3.1
version: 18.3.1(react@18.3.1)
react-hook-form:
specifier: ^7.53.0
version: 7.53.0(react@18.3.1)
react-phone-number-input:
specifier: ^3.4.8
version: 3.4.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-toastify:
specifier: ^10.0.4
version: 10.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
swr:
specifier: ^2.2.5
version: 2.2.5(react@18.3.1)
zod:
specifier: ^3.23.8
version: 3.23.8
devDependencies:
'@types/node':
specifier: 20.5.7
version: 20.5.7
'@types/react':
specifier: 18.3.3
version: 18.3.3
'@types/react-dom':
specifier: 18.3.0
version: 18.3.0
'@typescript-eslint/eslint-plugin':
specifier: 7.2.0
version: 7.2.0(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.0.4))(eslint@8.57.1)(typescript@5.0.4)
'@typescript-eslint/parser':
specifier: 7.2.0
version: 7.2.0(eslint@8.57.1)(typescript@5.0.4)
autoprefixer:
specifier: 10.4.19
version: 10.4.19(postcss@8.4.38)
eslint:
specifier: ^8.57.0
version: 8.57.1
eslint-config-next:
specifier: 14.2.1
version: 14.2.1(eslint@8.57.1)(typescript@5.0.4)
eslint-config-prettier:
specifier: ^8.2.0
version: 8.10.0(eslint@8.57.1)
eslint-plugin-import:
specifier: ^2.26.0
version: 2.30.0(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.0.4))(eslint@8.57.1)
eslint-plugin-jsx-a11y:
specifier: ^6.4.1
version: 6.10.0(eslint@8.57.1)
eslint-plugin-node:
specifier: ^11.1.0
version: 11.1.0(eslint@8.57.1)
eslint-plugin-prettier:
specifier: ^5.1.3
version: 5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@8.10.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)
eslint-plugin-react:
specifier: ^7.23.2
version: 7.36.1(eslint@8.57.1)
eslint-plugin-react-hooks:
specifier: ^4.6.0
version: 4.6.2(eslint@8.57.1)
eslint-plugin-unused-imports:
specifier: ^3.2.0
version: 3.2.0(@typescript-eslint/eslint-plugin@7.2.0(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.0.4))(eslint@8.57.1)(typescript@5.0.4))(eslint@8.57.1)
postcss:
specifier: 8.4.38
version: 8.4.38
tailwind-variants:
specifier: 0.1.20
version: 0.1.20(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4)))
tailwindcss:
specifier: 3.4.3
version: 3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4))
typescript:
specifier: 5.0.4
version: 5.0.4
apps/edge-api:
dependencies:
'@cloudflare/itty-router-openapi':
specifier: ^1.0.1
version: 1.1.1
devDependencies:
'@cloudflare/workers-types':
specifier: ^4.20240208.0
version: 4.20240919.0
'@types/node':
specifier: ^20.5.7
version: 20.16.5
'@types/service-worker-mock':
specifier: ^2.0.1
version: 2.0.4
wrangler:
specifier: ^3.0.0
version: 3.78.7(@cloudflare/workers-types@4.20240919.0)
apps/institutional:
dependencies:
'@next/third-parties':
specifier: ^14.2.15
version: 14.2.15(next@14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
'@nextui-org/button':
specifier: 2.0.38
version: 2.0.38(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4))))(framer-motion@11.1.9(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4))))(framer-motion@11.1.9(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@nextui-org/code':
specifier: 2.0.33
version: 2.0.33(@nextui-org/theme@2.2.11(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4))))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@nextui-org/input':
specifier: 2.2.5
version: 2.2.5(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4))))(framer-motion@11.1.9(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4))))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@nextui-org/kbd':
specifier: 2.0.34
version: 2.0.34(@nextui-org/theme@2.2.11(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4))))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@nextui-org/link':
specifier: 2.0.35
version: 2.0.35(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4))))(framer-motion@11.1.9(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4))))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@nextui-org/listbox':
specifier: 2.1.27
version: 2.1.27(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4))))(framer-motion@11.1.9(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4))))(framer-motion@11.1.9(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@nextui-org/navbar':
specifier: 2.0.37
version: 2.0.37(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4))))(framer-motion@11.1.9(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4))))(@types/react@18.3.3)(framer-motion@11.1.9(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@nextui-org/slider':
specifier: ^2.2.17
version: 2.2.17(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4))))(framer-motion@11.1.9(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4))))(framer-motion@11.1.9(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@nextui-org/snippet':
specifier: 2.0.43
version: 2.0.43(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4))))(framer-motion@11.1.9(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4))))(framer-motion@11.1.9(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@nextui-org/switch':
specifier: 2.0.34
version: 2.0.34(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4))))(framer-motion@11.1.9(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4))))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@nextui-org/system':
specifier: 2.2.6
version: 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4))))(framer-motion@11.1.9(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@nextui-org/theme':
specifier: 2.2.11
version: 2.2.11(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4)))
'@react-aria/ssr':
specifier: 3.9.4
version: 3.9.4(react@18.3.1)
'@react-aria/visually-hidden':
specifier: 3.8.12
version: 3.8.12(react@18.3.1)
'@tanstack/query-sync-storage-persister':
specifier: ^5.62.0
version: 5.62.0
'@tanstack/react-query':
specifier: ^5.62.0
version: 5.62.0(react@18.3.1)
'@tanstack/react-query-persist-client':
specifier: ^5.62.0
version: 5.62.0(@tanstack/react-query@5.62.0(react@18.3.1))(react@18.3.1)
axios:
specifier: ^1.7.7
version: 1.7.7
clsx:
specifier: 2.1.1
version: 2.1.1
framer-motion:
specifier: ~11.1.1
version: 11.1.9(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
intl-messageformat:
specifier: ^10.5.0
version: 10.5.14
next:
specifier: 14.2.4
version: 14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
next-themes:
specifier: ^0.2.1
version: 0.2.1(next@14.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(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)
devDependencies:
'@types/node':
specifier: 20.5.7
version: 20.5.7
'@types/react':
specifier: 18.3.3
version: 18.3.3
'@types/react-dom':
specifier: 18.3.0
version: 18.3.0
'@typescript-eslint/eslint-plugin':
specifier: 7.2.0
version: 7.2.0(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.0.4))(eslint@8.57.1)(typescript@5.0.4)
'@typescript-eslint/parser':
specifier: 7.2.0
version: 7.2.0(eslint@8.57.1)(typescript@5.0.4)
autoprefixer:
specifier: 10.4.19
version: 10.4.19(postcss@8.4.38)
eslint:
specifier: ^8.57.0
version: 8.57.1
eslint-config-next:
specifier: 14.2.1
version: 14.2.1(eslint@8.57.1)(typescript@5.0.4)
eslint-config-prettier:
specifier: ^8.2.0
version: 8.10.0(eslint@8.57.1)
eslint-plugin-import:
specifier: ^2.26.0
version: 2.30.0(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.0.4))(eslint@8.57.1)
eslint-plugin-jsx-a11y:
specifier: ^6.4.1
version: 6.10.0(eslint@8.57.1)
eslint-plugin-node:
specifier: ^11.1.0
version: 11.1.0(eslint@8.57.1)
eslint-plugin-prettier:
specifier: ^5.1.3
version: 5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@8.10.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)
eslint-plugin-react:
specifier: ^7.23.2
version: 7.36.1(eslint@8.57.1)
eslint-plugin-react-hooks:
specifier: ^4.6.0
version: 4.6.2(eslint@8.57.1)
eslint-plugin-unused-imports:
specifier: ^3.2.0
version: 3.2.0(@typescript-eslint/eslint-plugin@7.2.0(@typescript-eslint/parser@7.2.0(eslint@8.57.1)(typescript@5.0.4))(eslint@8.57.1)(typescript@5.0.4))(eslint@8.57.1)
postcss:
specifier: 8.4.38
version: 8.4.38
tailwind-variants:
specifier: 0.1.20
version: 0.1.20(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4)))
tailwindcss:
specifier: 3.4.3
version: 3.4.3(ts-node@10.9.2(@types/node@20.5.7)(typescript@5.0.4))
typescript:
specifier: 5.0.4
version: 5.0.4
packages/core:
dependencies:
'@aws-sdk/client-s3':
specifier: ^3.462.0
version: 3.654.0
axios:
specifier: ^1.6.2
version: 1.7.7
esbuild:
specifier: ^0.19.7
version: 0.19.12
form-data:
specifier: ^4.0.0
version: 4.0.0
imagemin:
specifier: ^8.0.1
version: 8.0.1
imagemin-giflossy:
specifier: ^5.1.10
version: 5.1.10
imagemin-jpegoptim:
specifier: ^8.0.0
version: 8.0.0
imagemin-pngquant:
specifier: ^9.0.2
version: 9.0.2
mime-types:
specifier: ^2.1.35
version: 2.1.35
node-localstorage:
specifier: ^3.0.5
version: 3.0.5
devDependencies:
'@jsx-mail/eslint-config':
specifier: workspace:*
version: link:../eslint-config
'@jsx-mail/typescript-config':
specifier: workspace:*
version: link:../typescript-config
'@types/eslint':
specifier: ^8.44.7
version: 8.56.12
'@types/imagemin':
specifier: ^8.0.5
version: 8.0.5
'@types/imagemin-pngquant':
specifier: ^8.0.0
version: 8.0.0
'@types/mime-types':
specifier: ^2.1.4
version: 2.1.4
'@types/node':
specifier: ^20.10.1
version: 20.16.5
'@types/node-localstorage':
specifier: ^1.3.3
version: 1.3.3
eslint:
specifier: ^8.53.0
version: 8.57.1
typescript:
specifier: ^5.2.2
version: 5.6.2
packages/eslint-config:
devDependencies:
'@typescript-eslint/eslint-plugin':
specifier: ^6.11.0
version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2))(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
'@typescript-eslint/parser':
specifier: ^6.11.0
version: 6.21.0(eslint@9.11.0(jiti@1.21.6))(typescript@5.6.2)
'@vercel/style-guide':
specifier: ^5.1.0
version: 5.2.0(@next/eslint-plugin-next@14.2.13)(eslint@9.11.0(jiti@1.21.6))(prettier@3.3.3)(typescript@5.6.2)
eslint-config-prettier:
specifier: ^9.0.0
version: 9.1.0(eslint@9.11.0(jiti@1.21.6))
eslint-config-turbo:
specifier: ^1.10.12
version: 1.13.4(eslint@9.11.0(jiti@1.21.6))
eslint-plugin-only-warn:
specifier: ^1.1.0
version: 1.1.0
eslint-plugin-prettier:
specifier: ^5.0.1
version: 5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@9.11.0(jiti@1.21.6)))(eslint@9.11.0(jiti@1.21.6))(prettier@3.3.3)
prettier:
specifier: ^3.1.0
version: 3.3.3
typescript:
specifier: ^5.2.2
version: 5.6.2
packages/jsx-mail:
dependencies:
'@jsx-mail/core':
specifier: workspace:*
version: link:../core
archiver:
specifier: ^7.0.1
version: 7.0.1
axios:
specifier: ^1.6.7
version: 1.7.7
chokidar:
specifier: ^3.5.3
version: 3.6.0
dotenv:
specifier: ^16.4.4
version: 16.4.5
express:
specifier: ^4.18.2
version: 4.21.0
gluegun:
specifier: ^5.1.6
version: 5.2.0
json5:
specifier: ^2.2.3
version: 2.2.3
loading-cli:
specifier: ^1.1.2
version: 1.1.2
open:
specifier: ^10.0.3
version: 10.1.0
socket.io:
specifier: ^4.7.2
version: 4.8.0
devDependencies:
'@jsx-mail/eslint-config':
specifier: workspace:*
version: link:../eslint-config
'@jsx-mail/typescript-config':
specifier: workspace:*
version: link:../typescript-config
'@types/archiver':
specifier: ^6.0.2
version: 6.0.2
'@types/axios':
specifier: ^0.14.0
version: 0.14.0
'@types/eslint':
specifier: ^8.44.8
version: 8.56.12
'@types/express':
specifier: ^4.17.21
version: 4.17.21
'@types/node':
specifier: ^20.10.2
version: 20.16.5
'@types/open':
specifier: ^6.2.1
version: 6.2.1
eslint:
specifier: ^8.55.0
version: 8.57.1
ts-node:
specifier: ^10.9.1
version: 10.9.2(@types/node@20.16.5)(typescript@5.6.2)
typescript:
specifier: ^5.3.2
version: 5.6.2
packages/typescript-config: {}
packages:
'@alloc/quick-lru@5.2.0':
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
'@angular-devkit/core@17.3.8':
resolution: {integrity: sha512-Q8q0voCGudbdCgJ7lXdnyaxKHbNQBARH68zPQV72WT8NWy+Gw/tys870i6L58NWbBaCJEUcIj/kb6KoakSRu+Q==}
engines: {node: ^18.13.0 || >=20.9.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-cli@17.3.8':
resolution: {integrity: sha512-TjmiwWJarX7oqvNiRAroQ5/LeKUatxBOCNEuKXO/PV8e7pn/Hr/BqfFm+UcYrQoFdZplmtNAfqmbqgVziKvCpA==}
engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
hasBin: true
'@angular-devkit/schematics@17.3.8':
resolution: {integrity: sha512-QRVEYpIfgkprNHc916JlPuNbLzOgrm9DZalHasnLUz4P6g7pR21olb8YCyM2OTJjombNhya9ZpckcADU5Qyvlg==}
engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
'@asteasolutions/zod-to-openapi@6.4.0':
resolution: {integrity: sha512-8cxfF7AHHx2PqnN4Cd8/O8CBu/nVYJP9DpnfVLW3BFb66VJDnqI/CczZnkqMc3SNh6J9GiX7JbJ5T4BSP4HZ2Q==}
peerDependencies:
zod: ^3.20.2
'@aws-crypto/crc32@5.2.0':
resolution: {integrity: sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==}
engines: {node: '>=16.0.0'}
'@aws-crypto/crc32c@5.2.0':
resolution: {integrity: sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag==}
'@aws-crypto/sha1-browser@5.2.0':
resolution: {integrity: sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg==}
'@aws-crypto/sha256-browser@5.2.0':
resolution: {integrity: sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==}
'@aws-crypto/sha256-js@5.2.0':
resolution: {integrity: sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==}
engines: {node: '>=16.0.0'}
'@aws-crypto/supports-web-crypto@5.2.0':
resolution: {integrity: sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==}
'@aws-crypto/util@5.2.0':
resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}
'@aws-sdk/client-s3@3.654.0':
resolution: {integrity: sha512-EsyeZJhkZD2VMdZpNt4NhlQ3QUAF24gMC+5w2wpGg6Yw+Bv7VLdg1t3PkTQovriJX1KTJAYHcGAuy92OFmWIng==}
engines: {node: '>=16.0.0'}
'@aws-sdk/client-ses@3.662.0':
resolution: {integrity: sha512-lFCkWufa7Y0pBbAQeZL691KguZQe+AllpNXJ54J456V7WtcH8JfdLxj1m0Jx3tjpmhJEuFWOQcB8tFwfyPusIA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/client-sso-oidc@3.654.0':
resolution: {integrity: sha512-gbHrKsEnaAtmkNCVQzLyiqMzpDaThV/bWl/ODEklI+t6stW3Pe3oDMstEHLfJ6JU5g8sYnx4VLuxlnJMtUkvPw==}
engines: {node: '>=16.0.0'}
peerDependencies:
'@aws-sdk/client-sts': ^3.654.0
'@aws-sdk/client-sso-oidc@3.662.0':
resolution: {integrity: sha512-YZrH0sftdmjvEIY8u0LCrfEhyaMVpN0+K0K9WsUrFRMZ7DK6nB9YD1f5EaKUN5UjNw5S7gbjSdI8neSCoELjhw==}
engines: {node: '>=16.0.0'}
peerDependencies:
'@aws-sdk/client-sts': ^3.662.0
'@aws-sdk/client-sso@3.654.0':
resolution: {integrity: sha512-4kBxs2IzCDtj6a6lRXa/lXK5wWpMGzwKtb+HMXf/rJYVM6x7wYRzc1hYrOd3DYkFQ/sR3dUFj+0mTP0os3aAbA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/client-sso@3.662.0':
resolution: {integrity: sha512-4j3+eNSnNblcIYCJrsRRdyXFjAWGpGa7s7pdIyDMLwtYA7AKNlnlyQV14jtezhMrN2j6qZ7zZmnwEyFGipgfWA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/client-sts@3.654.0':
resolution: {integrity: sha512-tyHa8jsBy+/NQZFHm6Q2Q09Vi9p3EH4yPy6PU8yPewpi2klreObtrUd0anJa6nzjS9SSuqnlZWsRic3cQ4QwCg==}
engines: {node: '>=16.0.0'}
'@aws-sdk/client-sts@3.662.0':
resolution: {integrity: sha512-RjiXvfW3a36ybHuzYuZ6ZgddYiENiXLDGC3tlZMsKWuoVQNeoh2grx1wxUA6e4ajAIqJLXs5dAYTSXzGaAqHTA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/core@3.654.0':
resolution: {integrity: sha512-4Rwx7BVaNaFqmXBDmnOkMbyuIFFbpZ+ru4lr660p45zY1QoNNSalechfoRffcokLFOZO+VWEJkdcorPUUU993w==}
engines: {node: '>=16.0.0'}
'@aws-sdk/core@3.662.0':
resolution: {integrity: sha512-w64Fa4dsgM8vN7Z+QPR3n+aAl5GXThQRH8deT/iF1rLrzfq7V8xxACJ/CLVaxrZMZUPUUgG7DUAo95nXFWmGjA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/credential-provider-env@3.654.0':
resolution: {integrity: sha512-kogsx3Ql81JouHS7DkheCDU9MYAvK0AokxjcshDveGmf7BbgbWCA8Fnb9wjQyNDaOXNvkZu8Z8rgkX91z324/w==}
engines: {node: '>=16.0.0'}
'@aws-sdk/credential-provider-env@3.662.0':
resolution: {integrity: sha512-Dgwb0c/FH4xT5QZZFdLTFmCkdG3woXIAgLx5HCoH9Ty5G7T8keHOU9Jm4Vpe2ZJXL7JJHlLakGS65+bgXTuLSQ==}
engines: {node: '>=16.0.0'}
'@aws-sdk/credential-provider-http@3.654.0':
resolution: {integrity: sha512-tgmAH4MBi/aDR882lfw48+tDV95ZH3GWc1Eoe6DpNLiM3GN2VfU/cZwuHmi6aq+vAbdIlswBHJ/+va0fOvlyjw==}
engines: {node: '>=16.0.0'}
'@aws-sdk/credential-provider-http@3.662.0':
resolution: {integrity: sha512-Wnle/uJI4Ku9ABJHof9sio28VlaSbF3jVQKTSVCJftvbKELlFOlY5aXSjtu0wwcJqDS5r78N5KM7aARUJES+DA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/credential-provider-ini@3.654.0':
resolution: {integrity: sha512-DKSdaNu2hwdmuvnm9KnA0NLqMWxxmxSOLWjSUSoFIm++wGXUjPrRMFYKvMktaXnPuyf5my8gF/yGbwzPZ8wlTg==}
engines: {node: '>=16.0.0'}
peerDependencies:
'@aws-sdk/client-sts': ^3.654.0
'@aws-sdk/credential-provider-ini@3.662.0':
resolution: {integrity: sha512-jk+A5B0NRYG4KrjJ8ef1+r9bFjhpwUm/A9grJmp3JOwcHKXvI2Gy9BXNqfqqVgrK0Gns+WyhJZy6rsRaC+v1oQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
'@aws-sdk/client-sts': ^3.662.0
'@aws-sdk/credential-provider-node@3.654.0':
resolution: {integrity: sha512-wPV7CNYaXDEc+SS+3R0v8SZwkHRUE1z2k2j1d49tH5QBDT4tb/k2V/biXWkwSk3hbR+IMWXmuhJDv/5lybhIvg==}
engines: {node: '>=16.0.0'}
'@aws-sdk/credential-provider-node@3.662.0':
resolution: {integrity: sha512-2O9wjxdLcU1b+bWVkp3YYbPHo15SU3pW4KfWTca5bB/C01i1eqiHnwsOFz/WKPYYKNj0FhXtJJjeDQLtNFYI8A==}
engines: {node: '>=16.0.0'}
'@aws-sdk/credential-provider-process@3.654.0':
resolution: {integrity: sha512-PmQoo8sZ9Q2Ow8OMzK++Z9lI7MsRUG7sNq3E72DVA215dhtTICTDQwGlXH2AAmIp7n+G9LLRds+4wo2ehG4mkg==}
engines: {node: '>=16.0.0'}
'@aws-sdk/credential-provider-process@3.662.0':
resolution: {integrity: sha512-1QUdtr/JiuvRjVgA8enpgCwjq7Eud8eVUT0i/vpWuFp5TV2FFq/8BD3GBkesTdy4Ylms6QVGf7J6INdfUWQEmw==}
engines: {node: '>=16.0.0'}
'@aws-sdk/credential-provider-sso@3.654.0':
resolution: {integrity: sha512-7GFme6fWEdA/XYKzZPOAdj/jS6fMBy1NdSIZsDXikS0v9jU+ZzHrAaWt13YLzHyjgxB9Sg9id9ncdY1IiubQXQ==}
engines: {node: '>=16.0.0'}
'@aws-sdk/credential-provider-sso@3.662.0':
resolution: {integrity: sha512-zxze6pDPgwBwl7S3h4JDALCCz93pTAfulbCY8FqMEd7GvnAiofHpL9svyt4+gytXwwUSsQ6KxCMVLbi+8k8YIg==}
engines: {node: '>=16.0.0'}
'@aws-sdk/credential-provider-web-identity@3.654.0':
resolution: {integrity: sha512-6a2g9gMtZToqSu+CusjNK5zvbLJahQ9di7buO3iXgbizXpLXU1rnawCpWxwslMpT5fLgMSKDnKDrr6wdEk7jSw==}
engines: {node: '>=16.0.0'}
peerDependencies:
'@aws-sdk/client-sts': ^3.654.0
'@aws-sdk/credential-provider-web-identity@3.662.0':
resolution: {integrity: sha512-GhPwxmHSFtwCckuT+34JG+U99qKfDWVYPLJOPI6b35+aLhfVqW5CHPmVjtM4WZqbxzsA0a3KAYA/U1ZaluI4SA==}
engines: {node: '>=16.0.0'}
peerDependencies:
'@aws-sdk/client-sts': ^3.662.0
'@aws-sdk/middleware-bucket-endpoint@3.654.0':
resolution: {integrity: sha512-/lWkyeLESiK+rAB4+NCw1cVPle9RN7RW/v7B4b8ORiCn1FwZLUPmEiZSYzyh4in5oa3Mri+W/g+KafZDH6LCbA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-expect-continue@3.654.0':
resolution: {integrity: sha512-S7fSlo8vdjkQTy9DmdF54ZsPwc+aA4z5Y9JVqAlGL9QiZe/fPtRE3GZ8BBbMICjBfMEa12tWjzhDz9su2c6PIA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-flexible-checksums@3.654.0':
resolution: {integrity: sha512-ZSRC+Lf9WxyoDLuTkd7JrFRrBLPLXcTOZzX6tDsnHc6tgdneBNwV3/ZOYUwQ8bdwLLnzSaQUU+X5B2BkEFKIhQ==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-host-header@3.654.0':
resolution: {integrity: sha512-rxGgVHWKp8U2ubMv+t+vlIk7QYUaRCHaVpmUlJv0Wv6Q0KeO9a42T9FxHphjOTlCGQOLcjCreL9CF8Qhtb4mdQ==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-host-header@3.662.0':
resolution: {integrity: sha512-Gkb0J1LTvD8LOS8uwoRI5weFXvvJwP1jfnYwzQrFgLymRFHJm5JtORQZtmw34dtdou+IBTUsH1mgI8b3QVVH3w==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-location-constraint@3.654.0':
resolution: {integrity: sha512-Duvv5c4DEQ7P6c0YlcvEUW3xCJi6X2uktafNGjILhVDMQwShSF/aFqNv/ikWU/luQcmWHZ9DtDjTR9UKLh6eTA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-logger@3.654.0':
resolution: {integrity: sha512-OQYb+nWlmASyXfRb989pwkJ9EVUMP1CrKn2eyTk3usl20JZmKo2Vjis6I0tLUkMSxMhnBJJlQKyWkRpD/u1FVg==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-logger@3.662.0':
resolution: {integrity: sha512-aSpwVHtfMlqzpmnmmUgRNCaIcxXdRrGqGWG+VWXuYR1F6jJARDDCxGkSuKiPEOLX0h0BroUo4gqbM8ILXQ8rVw==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-recursion-detection@3.654.0':
resolution: {integrity: sha512-gKSomgltKVmsT8sC6W7CrADZ4GHwX9epk3GcH6QhebVO3LA9LRbkL3TwOPUXakxxOLLUTYdOZLIOtFf7iH00lg==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-recursion-detection@3.662.0':
resolution: {integrity: sha512-V/MYE+LOFIQDLnpWMHLxnKu+ELhD3pLOrWXVhKpVit6YcHxaOz6nvB40CPamSPDXenA11FGXKAGNHZ0loTpDQg==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-sdk-s3@3.654.0':
resolution: {integrity: sha512-6prq+GK6hLMAbxEb83tBMb1YiTWWK196fJhFO/7gE5TUPL1v756RhQZzKV/njbwB1fIBjRBTuhYLh5Bn98HhdA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-ssec@3.654.0':
resolution: {integrity: sha512-k7hkQDJh4hcRJC7YojQ11kc37SY4foryen26Eafj5qYjeG2OGMW0oZTJDl1TVFJ7AcCjqIuMIo0Ho2US/2JspQ==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-user-agent@3.654.0':
resolution: {integrity: sha512-liCcqPAyRsr53cy2tYu4qeH4MMN0eh9g6k56XzI5xd4SghXH5YWh4qOYAlQ8T66ZV4nPMtD8GLtLXGzsH8moFg==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-user-agent@3.662.0':
resolution: {integrity: sha512-NT940BLSSys/A8W3zO3g2Kj+zpeydqGbSQgN6qz84jTskQjnrlamoq+Zl9Rrp8Cn8sC10UQ09kGg97lvjVOlmg==}
engines: {node: '>=16.0.0'}
'@aws-sdk/region-config-resolver@3.654.0':
resolution: {integrity: sha512-ydGOrXJxj3x0sJhsXyTmvJVLAE0xxuTWFJihTl67RtaO7VRNtd82I3P3bwoMMaDn5WpmV5mPo8fEUDRlBm3fPg==}
engines: {node: '>=16.0.0'}
'@aws-sdk/region-config-resolver@3.662.0':
resolution: {integrity: sha512-MDiWl4wZSVnnTELLb+jFSe0nj9HwxJPX2JnghXKkOXmbKEiE2/21DCQwU9mr9VUq2ZOQqaSnMFPr94iRu0AVTQ==}
engines: {node: '>=16.0.0'}
'@aws-sdk/signature-v4-multi-region@3.654.0':
resolution: {integrity: sha512-f8kyvbzgD3lSK1kFc3jsDCYjdutcqGO3tOzYO/QIK7BTl5lxc4rm6IKTcF2UYJsn8jiNqih7tVK8aVIGi8IF/w==}
engines: {node: '>=16.0.0'}
'@aws-sdk/token-providers@3.654.0':
resolution: {integrity: sha512-D8GeJYmvbfWkQDtTB4owmIobSMexZel0fOoetwvgCQ/7L8VPph3Q2bn1TRRIXvH7wdt6DcDxA3tKMHPBkT3GlA==}
engines: {node: '>=16.0.0'}
peerDependencies:
'@aws-sdk/client-sso-oidc': ^3.654.0
'@aws-sdk/token-providers@3.662.0':
resolution: {integrity: sha512-OqtBPutNC9Am10P1W5IwqRvzCVQAHRxWxZnfDBh1FQjNmoboGWYSriKxbrCRYLFffusNuzo8KnOFOmg1sRlhJQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
'@aws-sdk/client-sso-oidc': ^3.662.0
'@aws-sdk/types@3.654.0':
resolution: {integrity: sha512-VWvbED3SV+10QJIcmU/PKjsKilsTV16d1I7/on4bvD/jo1qGeMXqLDBSen3ks/tuvXZF/mFc7ZW/W2DiLVtO7A==}
engines: {node: '>=16.0.0'}
'@aws-sdk/types@3.662.0':
resolution: {integrity: sha512-Ff9/KRmIm8iEzodxzISLj4/pB/0hX2nVw1RFeOBC65OuM6nHrAdWHHog/CVx25hS5JPU0uE3h6NlWRaBJ7AV5w==}
engines: {node: '>=16.0.0'}
'@aws-sdk/util-arn-parser@3.568.0':
resolution: {integrity: sha512-XUKJWWo+KOB7fbnPP0+g/o5Ulku/X53t7i/h+sPHr5xxYTJJ9CYnbToo95mzxe7xWvkLrsNtJ8L+MnNn9INs2w==}
engines: {node: '>=16.0.0'}
'@aws-sdk/util-endpoints@3.654.0':
resolution: {integrity: sha512-i902fcBknHs0Irgdpi62+QMvzxE+bczvILXigYrlHL4+PiEnlMVpni5L5W1qCkNZXf8AaMrSBuR1NZAGp6UOUw==}
engines: {node: '>=16.0.0'}
'@aws-sdk/util-endpoints@3.662.0':
resolution: {integrity: sha512-RQ/78yNUxZZZULFg7VxT7oObGOR/FBc0ojiFoCAKC20ycY8VvVX5Eof4gyxoVpwOP7EoZO3UlWSIqtaEV/X70w==}
engines: {node: '>=16.0.0'}
'@aws-sdk/util-locate-window@3.568.0':
resolution: {integrity: sha512-3nh4TINkXYr+H41QaPelCceEB2FXP3fxp93YZXB/kqJvX0U9j0N0Uk45gvsjmEPzG8XxkPEeLIfT2I1M7A6Lig==}
engines: {node: '>=16.0.0'}
'@aws-sdk/util-user-agent-browser@3.654.0':
resolution: {integrity: sha512-ykYAJqvnxLt7wfrqya28wuH3/7NdrwzfiFd7NqEVQf7dXVxL5RPEpD7DxjcyQo3DsHvvdUvGZVaQhozycn1pzA==}
'@aws-sdk/util-user-agent-browser@3.662.0':
resolution: {integrity: sha512-5wQd+HbNTY1r1Gndxf93dAEFtKz1DqcalI4Ym40To+RIonSsYQNRomFoizYNgJ1P+Mkfsr4P1dy/MNTlkqTZuQ==}
'@aws-sdk/util-user-agent-node@3.654.0':
resolution: {integrity: sha512-a0ojjdBN6pqv6gB4H/QPPSfhs7mFtlVwnmKCM/QrTaFzN0U810PJ1BST3lBx5sa23I5jWHGaoFY+5q65C3clLQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
aws-crt: '>=1.0.0'
peerDependenciesMeta:
aws-crt:
optional: true
'@aws-sdk/util-user-agent-node@3.662.0':
resolution: {integrity: sha512-vBRbZ9Hr1OGmdJPWj36X0fR8/VdI2JiwK6+oJRa6qfJ6AnhqCYZbCyeA6JIDeEu3M9iu1OLjenU8NdXhTz8c2w==}
engines: {node: '>=16.0.0'}
peerDependencies:
aws-crt: '>=1.0.0'
peerDependenciesMeta:
aws-crt:
optional: true
'@aws-sdk/xml-builder@3.654.0':
resolution: {integrity: sha512-qA2diK3d/ztC8HUb7NwPKbJRV01NpzTzxFn+L5G3HzJBNeKbjLcprQ/9uG9gp2UEx2Go782FI1ddrMNa0qBICA==}
engines: {node: '>=16.0.0'}
'@babel/code-frame@7.23.5':
resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==}
engines: {node: '>=6.9.0'}
'@babel/code-frame@7.24.7':
resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.25.4':
resolution: {integrity: sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==}
engines: {node: '>=6.9.0'}
'@babel/core@7.25.2':
resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==}
engines: {node: '>=6.9.0'}
'@babel/eslint-parser@7.25.1':
resolution: {integrity: sha512-Y956ghgTT4j7rKesabkh5WeqgSFZVFwaPR0IWFm7KFHFmmJ4afbG49SmfW4S+GyRPx0Dy5jxEWA5t0rpxfElWg==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
peerDependencies:
'@babel/core': ^7.11.0
eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
'@babel/generator@7.25.6':
resolution: {integrity: sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.25.2':
resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.24.7':
resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-transforms@7.25.2':
resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-simple-access@7.24.7':
resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.24.8':
resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.24.7':
resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.24.8':
resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.25.6':
resolution: {integrity: sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q==}
engines: {node: '>=6.9.0'}
'@babel/highlight@7.23.4':
resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==}
engines: {node: '>=6.9.0'}
'@babel/highlight@7.24.7':
resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.25.6':
resolution: {integrity: sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/runtime@7.25.6':
resolution: {integrity: sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==}
engines: {node: '>=6.9.0'}
'@babel/template@7.25.0':
resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.25.6':
resolution: {integrity: sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==}
engines: {node: '>=6.9.0'}
'@babel/types@7.25.6':
resolution: {integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==}
engines: {node: '>=6.9.0'}