-
Notifications
You must be signed in to change notification settings - Fork 3
/
pnpm-lock.yaml
8919 lines (7118 loc) · 292 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:
sort-package-json:
specifier: 2.10.0
version: 2.10.0
devDependencies:
'@commitlint/cli':
specifier: 19.3.0
version: 19.3.0(@types/node@20.11.30)(typescript@4.9.5)
'@commitlint/config-conventional':
specifier: 19.2.2
version: 19.2.2
'@faker-js/faker':
specifier: 7.6.0
version: 7.6.0
'@frachtwerk/eslint-config-essencium':
specifier: workspace:*
version: link:packages/eslint-config
'@frachtwerk/essencium-types':
specifier: workspace:*
version: link:packages/types
'@frachtwerk/prettier-config-essencium':
specifier: workspace:*
version: link:packages/prettier-config
'@types/fs-extra':
specifier: 11.0.1
version: 11.0.1
'@types/node':
specifier: 20.11.30
version: 20.11.30
'@typescript-eslint/eslint-plugin':
specifier: 7.18.0
version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@4.9.5))(eslint@8.56.0)(typescript@4.9.5)
'@typescript-eslint/parser':
specifier: 7.18.0
version: 7.18.0(eslint@8.56.0)(typescript@4.9.5)
axios:
specifier: 1.7.4
version: 1.7.4
eslint:
specifier: 8.56.0
version: 8.56.0
eslint-config-airbnb:
specifier: 19.0.4
version: 19.0.4(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@4.9.5))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.7.1(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.0(eslint@8.56.0))(eslint-plugin-react@7.32.2(eslint@8.56.0))(eslint@8.56.0)
eslint-config-airbnb-typescript:
specifier: 18.0.0
version: 18.0.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@4.9.5))(eslint@8.56.0)(typescript@4.9.5))(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@4.9.5))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@4.9.5))(eslint@8.56.0))(eslint@8.56.0)
eslint-config-prettier:
specifier: 9.0.0
version: 9.0.0(eslint@8.56.0)
eslint-plugin-import:
specifier: 2.29.1
version: 2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@4.9.5))(eslint@8.56.0)
eslint-plugin-jsx-a11y:
specifier: 6.7.1
version: 6.7.1(eslint@8.56.0)
eslint-plugin-prettier:
specifier: 5.0.0
version: 5.0.0(eslint-config-prettier@9.0.0(eslint@8.56.0))(eslint@8.56.0)(prettier@3.0.3)
eslint-plugin-react:
specifier: 7.32.2
version: 7.32.2(eslint@8.56.0)
eslint-plugin-react-hooks:
specifier: 4.6.0
version: 4.6.0(eslint@8.56.0)
eslint-plugin-simple-import-sort:
specifier: 10.0.0
version: 10.0.0(eslint@8.56.0)
fs-extra:
specifier: 11.1.1
version: 11.1.1
husky:
specifier: 8.0.3
version: 8.0.3
lint-staged:
specifier: 15.2.10
version: 15.2.10
prettier:
specifier: 3.0.3
version: 3.0.3
rimraf:
specifier: 4.4.0
version: 4.4.0
ts-node:
specifier: 10.9.1
version: 10.9.1(@types/node@20.11.30)(typescript@4.9.5)
typescript:
specifier: 4.9.5
version: 4.9.5
packages/app:
dependencies:
'@emotion/react':
specifier: 11.10.6
version: 11.10.6(@types/react@19.0.2)(react@19.0.0)
'@emotion/server':
specifier: 11.11.0
version: 11.11.0
'@fortawesome/fontawesome-svg-core':
specifier: 6.3.0
version: 6.3.0
'@fortawesome/free-solid-svg-icons':
specifier: 6.3.0
version: 6.3.0
'@fortawesome/react-fontawesome':
specifier: 0.2.0
version: 0.2.0(@fortawesome/fontawesome-svg-core@6.3.0)(react@19.0.0)
'@frachtwerk/essencium-lib':
specifier: workspace:*
version: link:../lib
'@frachtwerk/essencium-types':
specifier: workspace:*
version: link:../types
'@hookform/resolvers':
specifier: 2.9.11
version: 2.9.11(react-hook-form@7.43.5(react@19.0.0))
'@mantine/core':
specifier: 7.15.1
version: 7.15.1(@mantine/hooks@7.15.1(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@mantine/dates':
specifier: 7.15.1
version: 7.15.1(@mantine/core@7.15.1(@mantine/hooks@7.15.1(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@mantine/hooks@7.15.1(react@19.0.0))(dayjs@1.11.7)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@mantine/hooks':
specifier: 7.15.1
version: 7.15.1(react@19.0.0)
'@mantine/modals':
specifier: 7.15.1
version: 7.15.1(@mantine/core@7.15.1(@mantine/hooks@7.15.1(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@mantine/hooks@7.15.1(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@mantine/notifications':
specifier: 7.15.1
version: 7.15.1(@mantine/core@7.15.1(@mantine/hooks@7.15.1(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@mantine/hooks@7.15.1(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@mantine/spotlight':
specifier: 7.15.1
version: 7.15.1(@mantine/core@7.15.1(@mantine/hooks@7.15.1(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@mantine/hooks@7.15.1(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@playwright/test':
specifier: 1.45.0
version: 1.45.0
'@tabler/icons-react':
specifier: 2.11.0
version: 2.11.0(react@19.0.0)
'@tanstack/react-query':
specifier: 5.32.0
version: 5.32.0(react@19.0.0)
'@tanstack/react-table':
specifier: 8.12.0
version: 8.12.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@types/node':
specifier: 20.11.30
version: 20.11.30
'@types/react':
specifier: 19.0.2
version: 19.0.2
'@types/react-dom':
specifier: 19.0.2
version: 19.0.2(@types/react@19.0.2)
axios:
specifier: 1.7.4
version: 1.7.4
dayjs:
specifier: 1.11.7
version: 1.11.7
dotenv:
specifier: 16.3.1
version: 16.3.1
i18next:
specifier: 23.11.2
version: 23.11.2
i18next-resources-to-backend:
specifier: 1.2.1
version: 1.2.1
jotai:
specifier: 2.0.3
version: 2.0.3(react@19.0.0)
next:
specifier: 15.1.1
version: 15.1.1(@playwright/test@1.45.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
next-i18n-router:
specifier: 5.5.1
version: 5.5.1
nodemailer:
specifier: 6.9.9
version: 6.9.9
react:
specifier: 19.0.0
version: 19.0.0
react-dom:
specifier: 19.0.0
version: 19.0.0(react@19.0.0)
react-hook-form:
specifier: 7.43.5
version: 7.43.5(react@19.0.0)
react-i18next:
specifier: 14.1.1
version: 14.1.1(i18next@23.11.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
react-json-tree:
specifier: 0.18.0
version: 0.18.0(@types/react@19.0.2)(react@19.0.0)
typescript:
specifier: 5.7.2
version: 5.7.2
zod:
specifier: 3.22.4
version: 3.22.4
devDependencies:
'@frachtwerk/eslint-config-essencium':
specifier: workspace:*
version: link:../eslint-config
'@frachtwerk/prettier-config-essencium':
specifier: workspace:*
version: link:../prettier-config
'@testing-library/react':
specifier: 14.3.1
version: 14.3.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@types/nodemailer':
specifier: 6.4.14
version: 6.4.14
'@typescript-eslint/eslint-plugin':
specifier: 7.18.0
version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2)
'@typescript-eslint/parser':
specifier: 7.18.0
version: 7.18.0(eslint@8.56.0)(typescript@5.7.2)
'@vitejs/plugin-react':
specifier: 4.2.1
version: 4.2.1(vite@5.4.11(@types/node@20.11.30)(sugarss@4.0.1(postcss@8.4.49))(terser@5.36.0))
eslint:
specifier: 8.56.0
version: 8.56.0
eslint-config-airbnb:
specifier: 19.0.4
version: 19.0.4(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.7.1(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.0(eslint@8.56.0))(eslint-plugin-react@7.32.2(eslint@8.56.0))(eslint@8.56.0)
eslint-config-airbnb-typescript:
specifier: 18.0.0
version: 18.0.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2))(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0))(eslint@8.56.0)
eslint-config-prettier:
specifier: 9.0.0
version: 9.0.0(eslint@8.56.0)
eslint-plugin-import:
specifier: 2.29.1
version: 2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)
eslint-plugin-jsx-a11y:
specifier: 6.7.1
version: 6.7.1(eslint@8.56.0)
eslint-plugin-prettier:
specifier: 5.0.0
version: 5.0.0(eslint-config-prettier@9.0.0(eslint@8.56.0))(eslint@8.56.0)(prettier@3.0.3)
eslint-plugin-react:
specifier: 7.32.2
version: 7.32.2(eslint@8.56.0)
eslint-plugin-react-hooks:
specifier: 4.6.0
version: 4.6.0(eslint@8.56.0)
eslint-plugin-simple-import-sort:
specifier: 10.0.0
version: 10.0.0(eslint@8.56.0)
postcss-preset-mantine:
specifier: 1.17.0
version: 1.17.0(postcss@8.4.49)
prettier:
specifier: 3.0.3
version: 3.0.3
vite:
specifier: 5.4.11
version: 5.4.11(@types/node@20.11.30)(sugarss@4.0.1(postcss@8.4.49))(terser@5.36.0)
vitest:
specifier: 2.1.4
version: 2.1.4(@types/node@20.11.30)(happy-dom@15.10.2)(sugarss@4.0.1(postcss@8.4.49))(terser@5.36.0)
packages/eslint-config:
dependencies:
'@typescript-eslint/eslint-plugin':
specifier: 7.18.0
version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2)
'@typescript-eslint/parser':
specifier: 7.18.0
version: 7.18.0(eslint@8.56.0)(typescript@5.7.2)
eslint:
specifier: 8.56.0
version: 8.56.0
eslint-config-airbnb:
specifier: 19.0.4
version: 19.0.4(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.7.1(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.0(eslint@8.56.0))(eslint-plugin-react@7.32.2(eslint@8.56.0))(eslint@8.56.0)
eslint-config-airbnb-typescript:
specifier: 18.0.0
version: 18.0.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2))(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0))(eslint@8.56.0)
eslint-config-prettier:
specifier: 9.0.0
version: 9.0.0(eslint@8.56.0)
eslint-plugin-import:
specifier: 2.29.1
version: 2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)
eslint-plugin-jsx-a11y:
specifier: 6.7.1
version: 6.7.1(eslint@8.56.0)
eslint-plugin-prettier:
specifier: 5.0.0
version: 5.0.0(eslint-config-prettier@9.0.0(eslint@8.56.0))(eslint@8.56.0)(prettier@3.0.3)
eslint-plugin-react:
specifier: 7.32.2
version: 7.32.2(eslint@8.56.0)
eslint-plugin-react-hooks:
specifier: 4.6.0
version: 4.6.0(eslint@8.56.0)
eslint-plugin-simple-import-sort:
specifier: 10.0.0
version: 10.0.0(eslint@8.56.0)
devDependencies:
'@frachtwerk/prettier-config-essencium':
specifier: workspace:*
version: link:../prettier-config
prettier:
specifier: 3.0.3
version: 3.0.3
packages/lib:
devDependencies:
'@babel/core':
specifier: 7.24.0
version: 7.24.0
'@emotion/react':
specifier: 11.10.6
version: 11.10.6(@types/react@19.0.2)(react@19.0.0)
'@emotion/server':
specifier: 11.11.0
version: 11.11.0
'@fortawesome/fontawesome-svg-core':
specifier: 6.3.0
version: 6.3.0
'@fortawesome/free-solid-svg-icons':
specifier: 6.3.0
version: 6.3.0
'@fortawesome/react-fontawesome':
specifier: 0.2.0
version: 0.2.0(@fortawesome/fontawesome-svg-core@6.3.0)(react@19.0.0)
'@frachtwerk/eslint-config-essencium':
specifier: workspace:*
version: link:../eslint-config
'@frachtwerk/essencium-types':
specifier: workspace:*
version: link:../types
'@frachtwerk/prettier-config-essencium':
specifier: workspace:*
version: link:../prettier-config
'@hookform/resolvers':
specifier: 2.9.11
version: 2.9.11(react-hook-form@7.43.5(react@19.0.0))
'@mantine/core':
specifier: 7.15.1
version: 7.15.1(@mantine/hooks@7.15.1(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@mantine/dates':
specifier: 7.15.1
version: 7.15.1(@mantine/core@7.15.1(@mantine/hooks@7.15.1(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@mantine/hooks@7.15.1(react@19.0.0))(dayjs@1.11.7)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@mantine/hooks':
specifier: 7.15.1
version: 7.15.1(react@19.0.0)
'@mantine/modals':
specifier: 7.15.1
version: 7.15.1(@mantine/core@7.15.1(@mantine/hooks@7.15.1(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@mantine/hooks@7.15.1(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@mantine/notifications':
specifier: 7.15.1
version: 7.15.1(@mantine/core@7.15.1(@mantine/hooks@7.15.1(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@mantine/hooks@7.15.1(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@mantine/spotlight':
specifier: 7.15.1
version: 7.15.1(@mantine/core@7.15.1(@mantine/hooks@7.15.1(react@19.0.0))(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@mantine/hooks@7.15.1(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@rollup/plugin-commonjs':
specifier: 28.0.1
version: 28.0.1(rollup@4.27.4)
'@rollup/plugin-node-resolve':
specifier: 15.3.0
version: 15.3.0(rollup@4.27.4)
'@rollup/plugin-terser':
specifier: 0.4.4
version: 0.4.4(rollup@4.27.4)
'@rollup/plugin-typescript':
specifier: 11.1.6
version: 11.1.6(rollup@4.27.4)(tslib@2.5.0)(typescript@5.7.2)
'@tabler/icons-react':
specifier: 2.11.0
version: 2.11.0(react@19.0.0)
'@tanstack/react-query':
specifier: 5.32.0
version: 5.32.0(react@19.0.0)
'@tanstack/react-table':
specifier: 8.12.0
version: 8.12.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@testing-library/react':
specifier: 14.0.0
version: 14.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
'@types/react':
specifier: 19.0.2
version: 19.0.2
'@types/react-dom':
specifier: 19.0.2
version: 19.0.2(@types/react@19.0.2)
'@typescript-eslint/eslint-plugin':
specifier: 7.18.0
version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2)
'@typescript-eslint/parser':
specifier: 7.18.0
version: 7.18.0(eslint@8.56.0)(typescript@5.7.2)
'@vitejs/plugin-react':
specifier: 4.2.1
version: 4.2.1(vite@5.4.11(@types/node@20.14.14)(sugarss@4.0.1(postcss@8.4.34))(terser@5.36.0))
'@vitest/coverage-v8':
specifier: 2.1.4
version: 2.1.4(vitest@2.1.4(@types/node@20.14.14)(happy-dom@15.10.2)(sugarss@4.0.1(postcss@8.4.34))(terser@5.36.0))
axios:
specifier: 1.7.4
version: 1.7.4
dayjs:
specifier: 1.11.7
version: 1.11.7
eslint:
specifier: 8.56.0
version: 8.56.0
eslint-config-airbnb:
specifier: 19.0.4
version: 19.0.4(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.7.1(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.0(eslint@8.56.0))(eslint-plugin-react@7.32.2(eslint@8.56.0))(eslint@8.56.0)
eslint-config-airbnb-typescript:
specifier: 18.0.0
version: 18.0.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2))(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0))(eslint@8.56.0)
eslint-config-prettier:
specifier: 9.0.0
version: 9.0.0(eslint@8.56.0)
eslint-plugin-import:
specifier: 2.29.1
version: 2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)
eslint-plugin-jsx-a11y:
specifier: 6.7.1
version: 6.7.1(eslint@8.56.0)
eslint-plugin-prettier:
specifier: 5.0.0
version: 5.0.0(eslint-config-prettier@9.0.0(eslint@8.56.0))(eslint@8.56.0)(prettier@3.0.3)
eslint-plugin-react:
specifier: 7.32.2
version: 7.32.2(eslint@8.56.0)
eslint-plugin-react-hooks:
specifier: 4.6.0
version: 4.6.0(eslint@8.56.0)
eslint-plugin-simple-import-sort:
specifier: 10.0.0
version: 10.0.0(eslint@8.56.0)
happy-dom:
specifier: 15.10.2
version: 15.10.2
html2canvas:
specifier: 1.4.1
version: 1.4.1
i18next:
specifier: 23.11.2
version: 23.11.2
jotai:
specifier: 2.0.3
version: 2.0.3(react@19.0.0)
next:
specifier: 15.1.1
version: 15.1.1(@babel/core@7.24.0)(@playwright/test@1.46.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
next-i18next:
specifier: 15.3.0
version: 15.3.0(i18next@23.11.2)(next@15.1.1(@babel/core@7.24.0)(@playwright/test@1.46.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-i18next@14.1.1(i18next@23.11.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)
next-router-mock:
specifier: 0.9.12
version: 0.9.12(next@15.1.1(@babel/core@7.24.0)(@playwright/test@1.46.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)
postcss:
specifier: 8.4.34
version: 8.4.34
postcss-preset-mantine:
specifier: 1.17.0
version: 1.17.0(postcss@8.4.34)
prettier:
specifier: 3.0.3
version: 3.0.3
react:
specifier: 19.0.0
version: 19.0.0
react-dom:
specifier: 19.0.0
version: 19.0.0(react@19.0.0)
react-hook-form:
specifier: 7.43.5
version: 7.43.5(react@19.0.0)
react-i18next:
specifier: 14.1.1
version: 14.1.1(i18next@23.11.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)
react-json-tree:
specifier: 0.18.0
version: 0.18.0(@types/react@19.0.2)(react@19.0.0)
rimraf:
specifier: 4.4.0
version: 4.4.0
rollup:
specifier: 4.27.4
version: 4.27.4
rollup-plugin-dts:
specifier: 6.1.1
version: 6.1.1(rollup@4.27.4)(typescript@5.7.2)
rollup-plugin-peer-deps-external:
specifier: 2.2.4
version: 2.2.4(rollup@4.27.4)
rollup-plugin-postcss:
specifier: 4.0.2
version: 4.0.2(postcss@8.4.34)(ts-node@10.9.1(@types/node@20.14.14)(typescript@5.7.2))
tslib:
specifier: 2.5.0
version: 2.5.0
typescript:
specifier: 5.7.2
version: 5.7.2
vite:
specifier: 5.4.11
version: 5.4.11(@types/node@20.14.14)(sugarss@4.0.1(postcss@8.4.34))(terser@5.36.0)
vitest:
specifier: 2.1.4
version: 2.1.4(@types/node@20.14.14)(happy-dom@15.10.2)(sugarss@4.0.1(postcss@8.4.34))(terser@5.36.0)
zod:
specifier: 3.22.4
version: 3.22.4
packages/prettier-config:
dependencies:
prettier:
specifier: 3.0.3
version: 3.0.3
packages/types:
devDependencies:
'@frachtwerk/eslint-config-essencium':
specifier: workspace:*
version: link:../eslint-config
'@frachtwerk/prettier-config-essencium':
specifier: workspace:*
version: link:../prettier-config
'@rollup/plugin-commonjs':
specifier: 28.0.1
version: 28.0.1(rollup@4.27.4)
'@rollup/plugin-node-resolve':
specifier: 15.3.0
version: 15.3.0(rollup@4.27.4)
'@rollup/plugin-terser':
specifier: 0.4.4
version: 0.4.4(rollup@4.27.4)
'@rollup/plugin-typescript':
specifier: 11.1.6
version: 11.1.6(rollup@4.27.4)(tslib@2.5.0)(typescript@5.7.2)
'@types/react':
specifier: 19.0.2
version: 19.0.2
'@typescript-eslint/eslint-plugin':
specifier: 7.18.0
version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2)
'@typescript-eslint/parser':
specifier: 7.18.0
version: 7.18.0(eslint@8.56.0)(typescript@5.7.2)
eslint:
specifier: 8.56.0
version: 8.56.0
eslint-config-airbnb:
specifier: 19.0.4
version: 19.0.4(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0))(eslint-plugin-jsx-a11y@6.7.1(eslint@8.56.0))(eslint-plugin-react-hooks@4.6.0(eslint@8.56.0))(eslint-plugin-react@7.32.2(eslint@8.56.0))(eslint@8.56.0)
eslint-config-airbnb-typescript:
specifier: 18.0.0
version: 18.0.0(@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)(typescript@5.7.2))(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0))(eslint@8.56.0)
eslint-config-prettier:
specifier: 8.6.0
version: 8.6.0(eslint@8.56.0)
eslint-plugin-import:
specifier: 2.29.1
version: 2.29.1(@typescript-eslint/parser@7.18.0(eslint@8.56.0)(typescript@5.7.2))(eslint@8.56.0)
eslint-plugin-jsx-a11y:
specifier: 6.7.1
version: 6.7.1(eslint@8.56.0)
eslint-plugin-prettier:
specifier: 5.0.0
version: 5.0.0(eslint-config-prettier@8.6.0(eslint@8.56.0))(eslint@8.56.0)(prettier@3.0.3)
eslint-plugin-react:
specifier: 7.32.2
version: 7.32.2(eslint@8.56.0)
eslint-plugin-react-hooks:
specifier: 4.6.0
version: 4.6.0(eslint@8.56.0)
eslint-plugin-simple-import-sort:
specifier: 10.0.0
version: 10.0.0(eslint@8.56.0)
prettier:
specifier: 3.0.3
version: 3.0.3
rollup:
specifier: 4.27.4
version: 4.27.4
rollup-plugin-dts:
specifier: 6.1.1
version: 6.1.1(rollup@4.27.4)(typescript@5.7.2)
rollup-plugin-peer-deps-external:
specifier: 2.2.4
version: 2.2.4(rollup@4.27.4)
tslib:
specifier: 2.5.0
version: 2.5.0
typescript:
specifier: 5.7.2
version: 5.7.2
zod:
specifier: 3.22.4
version: 3.22.4
packages:
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
'@babel/code-frame@7.26.2':
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.26.2':
resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==}
engines: {node: '>=6.9.0'}
'@babel/core@7.24.0':
resolution: {integrity: sha512-fQfkg0Gjkza3nf0c7/w6Xf34BW4YvzNfACRLmmb7XRLa6XHdR+K9AlJlxneFfWYf6uhOzuzZVTjF/8KfndZANw==}
engines: {node: '>=6.9.0'}
'@babel/core@7.26.0':
resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.26.2':
resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.25.9':
resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.25.9':
resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-transforms@7.26.0':
resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-plugin-utils@7.25.9':
resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.25.9':
resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.25.9':
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.25.9':
resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.26.0':
resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.26.2':
resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/plugin-transform-react-jsx-self@7.25.9':
resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-react-jsx-source@7.25.9':
resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/runtime@7.26.0':
resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
engines: {node: '>=6.9.0'}
'@babel/template@7.25.9':
resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.25.9':
resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
engines: {node: '>=6.9.0'}
'@babel/types@7.26.0':
resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
engines: {node: '>=6.9.0'}
'@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
'@commitlint/cli@19.3.0':
resolution: {integrity: sha512-LgYWOwuDR7BSTQ9OLZ12m7F/qhNY+NpAyPBgo4YNMkACE7lGuUnuQq1yi9hz1KA4+3VqpOYl8H1rY/LYK43v7g==}
engines: {node: '>=v18'}
hasBin: true
'@commitlint/config-conventional@19.2.2':
resolution: {integrity: sha512-mLXjsxUVLYEGgzbxbxicGPggDuyWNkf25Ht23owXIH+zV2pv1eJuzLK3t1gDY5Gp6pxdE60jZnWUY5cvgL3ufw==}
engines: {node: '>=v18'}
'@commitlint/config-validator@19.5.0':
resolution: {integrity: sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw==}
engines: {node: '>=v18'}
'@commitlint/ensure@19.5.0':
resolution: {integrity: sha512-Kv0pYZeMrdg48bHFEU5KKcccRfKmISSm9MvgIgkpI6m+ohFTB55qZlBW6eYqh/XDfRuIO0x4zSmvBjmOwWTwkg==}
engines: {node: '>=v18'}
'@commitlint/execute-rule@19.5.0':
resolution: {integrity: sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg==}
engines: {node: '>=v18'}
'@commitlint/format@19.5.0':
resolution: {integrity: sha512-yNy088miE52stCI3dhG/vvxFo9e4jFkU1Mj3xECfzp/bIS/JUay4491huAlVcffOoMK1cd296q0W92NlER6r3A==}
engines: {node: '>=v18'}
'@commitlint/is-ignored@19.6.0':
resolution: {integrity: sha512-Ov6iBgxJQFR9koOupDPHvcHU9keFupDgtB3lObdEZDroiG4jj1rzky60fbQozFKVYRTUdrBGICHG0YVmRuAJmw==}
engines: {node: '>=v18'}
'@commitlint/lint@19.6.0':
resolution: {integrity: sha512-LRo7zDkXtcIrpco9RnfhOKeg8PAnE3oDDoalnrVU/EVaKHYBWYL1DlRR7+3AWn0JiBqD8yKOfetVxJGdEtZ0tg==}
engines: {node: '>=v18'}
'@commitlint/load@19.5.0':
resolution: {integrity: sha512-INOUhkL/qaKqwcTUvCE8iIUf5XHsEPCLY9looJ/ipzi7jtGhgmtH7OOFiNvwYgH7mA8osUWOUDV8t4E2HAi4xA==}
engines: {node: '>=v18'}
'@commitlint/message@19.5.0':
resolution: {integrity: sha512-R7AM4YnbxN1Joj1tMfCyBryOC5aNJBdxadTZkuqtWi3Xj0kMdutq16XQwuoGbIzL2Pk62TALV1fZDCv36+JhTQ==}
engines: {node: '>=v18'}
'@commitlint/parse@19.5.0':
resolution: {integrity: sha512-cZ/IxfAlfWYhAQV0TwcbdR1Oc0/r0Ik1GEessDJ3Lbuma/MRO8FRQX76eurcXtmhJC//rj52ZSZuXUg0oIX0Fw==}
engines: {node: '>=v18'}
'@commitlint/read@19.5.0':
resolution: {integrity: sha512-TjS3HLPsLsxFPQj6jou8/CZFAmOP2y+6V4PGYt3ihbQKTY1Jnv0QG28WRKl/d1ha6zLODPZqsxLEov52dhR9BQ==}
engines: {node: '>=v18'}
'@commitlint/resolve-extends@19.5.0':
resolution: {integrity: sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==}
engines: {node: '>=v18'}
'@commitlint/rules@19.6.0':
resolution: {integrity: sha512-1f2reW7lbrI0X0ozZMesS/WZxgPa4/wi56vFuJENBmed6mWq5KsheN/nxqnl/C23ioxpPO/PL6tXpiiFy5Bhjw==}
engines: {node: '>=v18'}
'@commitlint/to-lines@19.5.0':
resolution: {integrity: sha512-R772oj3NHPkodOSRZ9bBVNq224DOxQtNef5Pl8l2M8ZnkkzQfeSTr4uxawV2Sd3ui05dUVzvLNnzenDBO1KBeQ==}
engines: {node: '>=v18'}
'@commitlint/top-level@19.5.0':
resolution: {integrity: sha512-IP1YLmGAk0yWrImPRRc578I3dDUI5A2UBJx9FbSOjxe9sTlzFiwVJ+zeMLgAtHMtGZsC8LUnzmW1qRemkFU4ng==}
engines: {node: '>=v18'}
'@commitlint/types@19.5.0':
resolution: {integrity: sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==}
engines: {node: '>=v18'}
'@cspotcode/source-map-support@0.8.1':
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
engines: {node: '>=12'}
'@emnapi/runtime@1.3.1':
resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==}
'@emotion/babel-plugin@11.12.0':
resolution: {integrity: sha512-y2WQb+oP8Jqvvclh8Q55gLUyb7UFvgv7eJfsj7td5TToBrIUtPay2kMrZi4xjq9qw2vD0ZR5fSho0yqoFgX7Rw==}
'@emotion/cache@11.13.5':
resolution: {integrity: sha512-Z3xbtJ+UcK76eWkagZ1onvn/wAVb1GOMuR15s30Fm2wrMgC7jzpnO2JZXr4eujTTqoQFUrZIw/rT0c6Zzjca1g==}
'@emotion/hash@0.9.2':
resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}
'@emotion/memoize@0.9.0':
resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==}
'@emotion/react@11.10.6':
resolution: {integrity: sha512-6HT8jBmcSkfzO7mc+N1L9uwvOnlcGoix8Zn7srt+9ga0MjREo6lRpuVX0kzo6Jp6oTqDhREOFsygN6Ew4fEQbw==}
peerDependencies:
'@types/react': '*'
react: '>=16.8.0'
peerDependenciesMeta:
'@types/react':
optional: true
'@emotion/serialize@1.3.3':
resolution: {integrity: sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==}
'@emotion/server@11.11.0':
resolution: {integrity: sha512-6q89fj2z8VBTx9w93kJ5n51hsmtYuFPtZgnc1L8VzRx9ti4EU6EyvF6Nn1H1x3vcCQCF7u2dB2lY4AYJwUW4PA==}
peerDependencies:
'@emotion/css': ^11.0.0-rc.0
peerDependenciesMeta:
'@emotion/css':
optional: true
'@emotion/sheet@1.4.0':
resolution: {integrity: sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==}
'@emotion/unitless@0.10.0':
resolution: {integrity: sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==}
'@emotion/use-insertion-effect-with-fallbacks@1.1.0':
resolution: {integrity: sha512-+wBOcIV5snwGgI2ya3u99D7/FJquOIniQT1IKyDsBmEgwvpxMNeS65Oib7OnE2d2aY+3BU4OiH+0Wchf8yk3Hw==}
peerDependencies:
react: '>=16.8.0'
'@emotion/utils@1.4.2':
resolution: {integrity: sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==}
'@emotion/weak-memoize@0.3.1':
resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==}
'@emotion/weak-memoize@0.4.0':
resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==}
'@esbuild/aix-ppc64@0.21.5':
resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [aix]
'@esbuild/android-arm64@0.21.5':
resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
'@esbuild/android-arm@0.21.5':
resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
'@esbuild/android-x64@0.21.5':
resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
'@esbuild/darwin-arm64@0.21.5':
resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
'@esbuild/darwin-x64@0.21.5':
resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
'@esbuild/freebsd-arm64@0.21.5':
resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
'@esbuild/freebsd-x64@0.21.5':
resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
'@esbuild/linux-arm64@0.21.5':
resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
'@esbuild/linux-arm@0.21.5':
resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
'@esbuild/linux-ia32@0.21.5':
resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
'@esbuild/linux-loong64@0.21.5':
resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
'@esbuild/linux-mips64el@0.21.5':
resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
'@esbuild/linux-ppc64@0.21.5':
resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
'@esbuild/linux-riscv64@0.21.5':
resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
'@esbuild/linux-s390x@0.21.5':
resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
'@esbuild/linux-x64@0.21.5':
resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
'@esbuild/netbsd-x64@0.21.5':
resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
'@esbuild/openbsd-x64@0.21.5':
resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
'@esbuild/sunos-x64@0.21.5':
resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
'@esbuild/win32-arm64@0.21.5':
resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
'@esbuild/win32-ia32@0.21.5':
resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
'@esbuild/win32-x64@0.21.5':
resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
'@eslint-community/eslint-utils@4.4.1':
resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
'@eslint-community/regexpp@4.12.1':
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
'@eslint/eslintrc@2.1.4':
resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
'@eslint/js@8.56.0':
resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
'@faker-js/faker@7.6.0':
resolution: {integrity: sha512-XK6BTq1NDMo9Xqw/YkYyGjSsg44fbNwYRx7QK2CuoQgyy+f1rrTDHoExVM5PsyXCtfl2vs2vVJ0MN0yN6LppRw==}
engines: {node: '>=14.0.0', npm: '>=6.0.0'}
'@floating-ui/core@1.6.8':
resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==}