-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpnpm-lock.yaml
More file actions
13088 lines (10449 loc) · 446 KB
/
Copy pathpnpm-lock.yaml
File metadata and controls
13088 lines (10449 loc) · 446 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
overrides:
'@module-federation/enhanced': 2.5.1
'@module-federation/runtime': 2.5.1
importers:
.:
dependencies:
'@babel/runtime':
specifier: ^7.28.4
version: 7.29.7
'@swc/helpers':
specifier: 0.5.15
version: 0.5.15
devDependencies:
'@react-native/eslint-config':
specifier: 0.80.2
version: 0.80.2(eslint@8.57.1)(jest@29.7.0(@types/node@22.17.2)(babel-plugin-macros@3.1.0))(prettier@3.8.4)(typescript@5.8.3)
'@types/node':
specifier: ^22.15.0
version: 22.17.2
concurrently:
specifier: ^8.2.2
version: 8.2.2
eslint:
specifier: ~8.57.1
version: 8.57.1
prettier:
specifier: ^3.4.2
version: 3.8.4
tsx:
specifier: ^4.19.4
version: 4.22.4
apps/travel-destinations:
dependencies:
'@babel/runtime':
specifier: ^7.28.4
version: 7.29.7
'@module-federation/enhanced':
specifier: 2.5.1
version: 2.5.1(@rspack/core@1.7.11(@swc/helpers@0.5.15))(typescript@5.8.3)(webpack@5.101.2)
react:
specifier: 19.1.0
version: 19.1.0
react-native:
specifier: 0.80.2
version: 0.80.2(@babel/core@7.28.3)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0)
react-native-config:
specifier: 1.5.6
version: 1.5.6
react-native-safe-area-context:
specifier: 5.4.0
version: 5.4.0(react-native@0.80.2(@babel/core@7.28.3)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0)
travel-core:
specifier: workspace:*
version: file:packages/travel-core(a54ffa88fd7a2743cbff4f4c8fd567f9)
dependenciesMeta:
travel-core:
injected: true
devDependencies:
'@callstack/repack':
specifier: 5.2.5
version: 5.2.5(@babel/core@7.28.3)(@module-federation/enhanced@2.5.1(@rspack/core@1.7.11(@swc/helpers@0.5.15))(typescript@5.8.3)(webpack@5.101.2))(@rspack/core@1.7.11(@swc/helpers@0.5.15))(react-native@0.80.2(@babel/core@7.28.3)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(webpack@5.101.2)
'@react-native-community/cli':
specifier: 15.0.1
version: 15.0.1(typescript@5.8.3)
'@react-native/eslint-config':
specifier: 0.80.2
version: 0.80.2(eslint@8.57.1)(jest@29.7.0(@types/node@22.17.2)(babel-plugin-macros@3.1.0))(prettier@3.8.4)(typescript@5.8.3)
'@react-native/typescript-config':
specifier: 0.80.2
version: 0.80.2
'@rspack/core':
specifier: ^1.4.0
version: 1.7.11(@swc/helpers@0.5.15)
'@types/jest':
specifier: ^29.5.14
version: 29.5.14
'@types/react':
specifier: 19.1.12
version: 19.1.12
babel-plugin-transform-remove-console:
specifier: ^6.9.4
version: 6.9.4
eslint:
specifier: ^8.57.0
version: 8.57.1
jest:
specifier: ^29.6.3
version: 29.7.0(@types/node@22.17.2)(babel-plugin-macros@3.1.0)
travel-sdk:
specifier: workspace:*
version: link:../../packages/travel-sdk
typescript:
specifier: ~5.8.3
version: 5.8.3
apps/travel-host:
dependencies:
'@babel/runtime':
specifier: ^7.28.4
version: 7.29.7
'@module-federation/enhanced':
specifier: 2.5.1
version: 2.5.1(@rspack/core@1.7.11(@swc/helpers@0.5.15))(typescript@5.8.3)(webpack@5.101.2)
'@module-federation/runtime':
specifier: 2.5.1
version: 2.5.1
'@react-native-async-storage/async-storage':
specifier: ^2.2.0
version: 2.2.0(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))
'@react-navigation/native':
specifier: ^7.1.17
version: 7.3.3(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0)
'@react-navigation/native-stack':
specifier: ^7.3.25
version: 7.17.5(@react-navigation/native@7.3.3(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.4.0(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0))(react-native-screens@4.12.0(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0))(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0)
expo:
specifier: ~53.0.22
version: 53.0.27(@babel/core@7.29.7)(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0)
expo-constants:
specifier: ~17.1.7
version: 17.1.8(expo@53.0.27(@babel/core@7.29.7)(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0))(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))
react:
specifier: 19.1.0
version: 19.1.0
react-native:
specifier: 0.80.2
version: 0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0)
react-native-config:
specifier: 1.5.6
version: 1.5.6
react-native-safe-area-context:
specifier: 5.4.0
version: 5.4.0(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0)
react-native-screens:
specifier: ~4.12.0
version: 4.12.0(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0)
travel-core:
specifier: workspace:*
version: link:../../packages/travel-core
dependenciesMeta:
travel-core:
injected: true
devDependencies:
'@babel/plugin-transform-runtime':
specifier: ^7.28.3
version: 7.29.7(@babel/core@7.29.7)
'@babel/preset-flow':
specifier: ^7.27.1
version: 7.29.7(@babel/core@7.29.7)
'@babel/preset-typescript':
specifier: ^7.27.1
version: 7.29.7(@babel/core@7.29.7)
'@callstack/repack':
specifier: 5.2.5
version: 5.2.5(@babel/core@7.29.7)(@module-federation/enhanced@2.5.1(@rspack/core@1.7.11(@swc/helpers@0.5.15))(typescript@5.8.3)(webpack@5.101.2))(@rspack/core@1.7.11(@swc/helpers@0.5.15))(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(webpack@5.101.2)
'@callstack/repack-plugin-expo-modules':
specifier: 5.2.5
version: 5.2.5(@callstack/repack@5.2.5(@babel/core@7.29.7)(@module-federation/enhanced@2.5.1(@rspack/core@1.7.11(@swc/helpers@0.5.15))(typescript@5.8.3)(webpack@5.101.2))(@rspack/core@1.7.11(@swc/helpers@0.5.15))(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(webpack@5.101.2))
'@react-native-community/cli':
specifier: 15.0.1
version: 15.0.1(typescript@5.8.3)
'@react-native/eslint-config':
specifier: 0.80.2
version: 0.80.2(eslint@8.57.1)(jest@29.7.0(@types/node@22.17.2)(babel-plugin-macros@3.1.0))(prettier@3.8.4)(typescript@5.8.3)
'@react-native/typescript-config':
specifier: 0.80.2
version: 0.80.2
'@rspack/core':
specifier: ^1.4.0
version: 1.7.11(@swc/helpers@0.5.15)
'@swc/helpers':
specifier: 0.5.15
version: 0.5.15
'@types/jest':
specifier: ^29.5.14
version: 29.5.14
'@types/react':
specifier: 19.1.12
version: 19.1.12
babel-plugin-transform-inline-environment-variables:
specifier: ^0.4.4
version: 0.4.4
dotenv:
specifier: ^17.2.1
version: 17.4.2
eslint:
specifier: ^8.57.0
version: 8.57.1
jest:
specifier: ^29.6.3
version: 29.7.0(@types/node@22.17.2)(babel-plugin-macros@3.1.0)
travel-sdk:
specifier: workspace:*
version: link:../../packages/travel-sdk
typescript:
specifier: ~5.8.3
version: 5.8.3
apps/travel-photos:
dependencies:
'@babel/runtime':
specifier: ^7.28.4
version: 7.29.7
'@module-federation/enhanced':
specifier: 2.5.1
version: 2.5.1(@rspack/core@1.7.11(@swc/helpers@0.5.15))(typescript@5.8.3)(webpack@5.101.2)
react:
specifier: 19.1.0
version: 19.1.0
react-native:
specifier: 0.80.2
version: 0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0)
react-native-config:
specifier: 1.5.6
version: 1.5.6
react-native-safe-area-context:
specifier: 5.4.0
version: 5.4.0(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0)
travel-core:
specifier: workspace:*
version: link:../../packages/travel-core
dependenciesMeta:
travel-core:
injected: true
devDependencies:
'@callstack/repack':
specifier: 5.2.5
version: 5.2.5(@babel/core@7.29.7)(@module-federation/enhanced@2.5.1(@rspack/core@1.7.11(@swc/helpers@0.5.15))(typescript@5.8.3)(webpack@5.101.2))(@rspack/core@1.7.11(@swc/helpers@0.5.15))(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(webpack@5.101.2)
'@react-native-community/cli':
specifier: 15.0.1
version: 15.0.1(typescript@5.8.3)
'@react-native/eslint-config':
specifier: 0.80.2
version: 0.80.2(eslint@8.57.1)(jest@29.7.0(@types/node@22.17.2)(babel-plugin-macros@3.1.0))(prettier@3.8.4)(typescript@5.8.3)
'@react-native/typescript-config':
specifier: 0.80.2
version: 0.80.2
'@rspack/core':
specifier: ^1.4.0
version: 1.7.11(@swc/helpers@0.5.15)
'@types/jest':
specifier: ^29.5.14
version: 29.5.14
'@types/react':
specifier: 19.1.12
version: 19.1.12
babel-plugin-transform-remove-console:
specifier: ^6.9.4
version: 6.9.4
eslint:
specifier: ^8.57.0
version: 8.57.1
jest:
specifier: ^29.6.3
version: 29.7.0(@types/node@22.17.2)(babel-plugin-macros@3.1.0)
travel-sdk:
specifier: workspace:*
version: link:../../packages/travel-sdk
typescript:
specifier: ~5.8.3
version: 5.8.3
apps/travel-search:
dependencies:
'@babel/runtime':
specifier: ^7.28.4
version: 7.29.7
'@module-federation/enhanced':
specifier: 2.5.1
version: 2.5.1(@rspack/core@1.7.11(@swc/helpers@0.5.15))(typescript@5.8.3)(webpack@5.101.2)
'@react-navigation/native':
specifier: ^7.1.17
version: 7.3.3(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0)
'@react-navigation/native-stack':
specifier: ^7.3.25
version: 7.17.5(@react-navigation/native@7.3.3(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.4.0(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0))(react-native-screens@4.12.0(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0))(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0)
react:
specifier: 19.1.0
version: 19.1.0
react-native:
specifier: 0.80.2
version: 0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0)
react-native-config:
specifier: 1.5.6
version: 1.5.6
react-native-paper:
specifier: ^5.12.5
version: 5.15.3(react-native-safe-area-context@5.4.0(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0))(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0)
react-native-safe-area-context:
specifier: 5.4.0
version: 5.4.0(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0)
react-native-screens:
specifier: ~4.12.0
version: 4.12.0(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0)
travel-core:
specifier: workspace:*
version: link:../../packages/travel-core
dependenciesMeta:
travel-core:
injected: true
devDependencies:
'@callstack/repack':
specifier: 5.2.5
version: 5.2.5(@babel/core@7.29.7)(@module-federation/enhanced@2.5.1(@rspack/core@1.7.11(@swc/helpers@0.5.15))(typescript@5.8.3)(webpack@5.101.2))(@rspack/core@1.7.11(@swc/helpers@0.5.15))(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(webpack@5.101.2)
'@react-native-community/cli':
specifier: 15.0.1
version: 15.0.1(typescript@5.8.3)
'@react-native/eslint-config':
specifier: 0.80.2
version: 0.80.2(eslint@8.57.1)(jest@29.7.0(@types/node@22.17.2)(babel-plugin-macros@3.1.0))(prettier@3.8.4)(typescript@5.8.3)
'@react-native/typescript-config':
specifier: 0.80.2
version: 0.80.2
'@rspack/core':
specifier: ^1.4.0
version: 1.7.11(@swc/helpers@0.5.15)
'@types/jest':
specifier: ^29.5.14
version: 29.5.14
'@types/react':
specifier: 19.1.12
version: 19.1.12
babel-plugin-transform-remove-console:
specifier: ^6.9.4
version: 6.9.4
eslint:
specifier: ^8.57.0
version: 8.57.1
jest:
specifier: ^29.6.3
version: 29.7.0(@types/node@22.17.2)(babel-plugin-macros@3.1.0)
travel-sdk:
specifier: workspace:*
version: link:../../packages/travel-sdk
typescript:
specifier: ~5.8.3
version: 5.8.3
apps/travel-weather:
dependencies:
'@babel/runtime':
specifier: ^7.28.4
version: 7.29.7
'@module-federation/enhanced':
specifier: 2.5.1
version: 2.5.1(@rspack/core@1.7.11(@swc/helpers@0.5.15))(typescript@5.8.3)(webpack@5.101.2)
'@react-navigation/elements':
specifier: ^2.6.3
version: 2.9.25(@react-navigation/native@7.3.3(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.4.0(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0))(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0)
'@react-navigation/native':
specifier: ^7.1.17
version: 7.3.3(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0)
'@react-navigation/native-stack':
specifier: ^7.3.25
version: 7.17.5(@react-navigation/native@7.3.3(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.4.0(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0))(react-native-screens@4.12.0(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0))(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0)
react:
specifier: 19.1.0
version: 19.1.0
react-native:
specifier: 0.80.2
version: 0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0)
react-native-config:
specifier: 1.5.6
version: 1.5.6
react-native-safe-area-context:
specifier: 5.4.0
version: 5.4.0(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0)
react-native-screens:
specifier: ~4.12.0
version: 4.12.0(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0)
travel-core:
specifier: workspace:*
version: link:../../packages/travel-core
dependenciesMeta:
travel-core:
injected: true
devDependencies:
'@callstack/repack':
specifier: 5.2.5
version: 5.2.5(@babel/core@7.29.7)(@module-federation/enhanced@2.5.1(@rspack/core@1.7.11(@swc/helpers@0.5.15))(typescript@5.8.3)(webpack@5.101.2))(@rspack/core@1.7.11(@swc/helpers@0.5.15))(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(webpack@5.101.2)
'@react-native-community/cli':
specifier: 15.0.1
version: 15.0.1(typescript@5.8.3)
'@react-native/eslint-config':
specifier: 0.80.2
version: 0.80.2(eslint@8.57.1)(jest@29.7.0(@types/node@22.17.2)(babel-plugin-macros@3.1.0))(prettier@3.8.4)(typescript@5.8.3)
'@react-native/typescript-config':
specifier: 0.80.2
version: 0.80.2
'@rspack/core':
specifier: ^1.4.0
version: 1.7.11(@swc/helpers@0.5.15)
'@types/jest':
specifier: ^29.5.14
version: 29.5.14
'@types/react':
specifier: 19.1.12
version: 19.1.12
babel-plugin-transform-remove-console:
specifier: ^6.9.4
version: 6.9.4
eslint:
specifier: ^8.57.0
version: 8.57.1
jest:
specifier: ^29.6.3
version: 29.7.0(@types/node@22.17.2)(babel-plugin-macros@3.1.0)
travel-sdk:
specifier: workspace:*
version: link:../../packages/travel-sdk
typescript:
specifier: ~5.8.3
version: 5.8.3
packages/travel-core:
dependencies:
'@babel/runtime':
specifier: ^7.28.4
version: 7.29.7
'@callstack/repack':
specifier: 5.2.5
version: 5.2.5(@babel/core@7.29.7)(@module-federation/enhanced@2.5.1(@rspack/core@1.7.11(@swc/helpers@0.5.15))(typescript@5.8.3)(webpack@5.101.2))(@rspack/core@1.7.11(@swc/helpers@0.5.15))(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(webpack@5.101.2)
'@react-native-async-storage/async-storage':
specifier: ^2.2.0
version: 2.2.0(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))
'@tanstack/react-query':
specifier: ^5.64.2
version: 5.101.0(react@19.1.0)
axios:
specifier: ^1.7.9
version: 1.18.0
react-hook-form:
specifier: ^7.54.2
version: 7.79.0(react@19.1.0)
zustand:
specifier: ^5.0.3
version: 5.0.14(@types/react@19.1.12)(react@19.1.0)(use-sync-external-store@1.6.0(react@19.1.0))
devDependencies:
'@react-native/eslint-config':
specifier: 0.80.2
version: 0.80.2(eslint@8.57.1)(jest@29.7.0(@types/node@22.17.2)(babel-plugin-macros@3.1.0))(prettier@3.8.4)(typescript@5.8.3)
'@react-native/typescript-config':
specifier: 0.80.2
version: 0.80.2
'@react-navigation/native-stack':
specifier: ^7.3.25
version: 7.17.5(@react-navigation/native@7.3.3(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.4.0(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0))(react-native-screens@4.12.0(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0))(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0)
'@swc/helpers':
specifier: 0.5.15
version: 0.5.15
'@types/events':
specifier: ^3.0.3
version: 3.0.3
'@types/jest':
specifier: ^29.5.14
version: 29.5.14
'@types/react':
specifier: 19.1.12
version: 19.1.12
eslint:
specifier: ^8.57.1
version: 8.57.1
jest:
specifier: ^29.7.0
version: 29.7.0(@types/node@22.17.2)(babel-plugin-macros@3.1.0)
react:
specifier: 19.1.0
version: 19.1.0
react-native:
specifier: 0.80.2
version: 0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0)
react-native-safe-area-context:
specifier: 5.4.0
version: 5.4.0(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(react@19.1.0)
typescript:
specifier: ~5.8.3
version: 5.8.3
packages/travel-sdk:
devDependencies:
'@callstack/repack':
specifier: 5.2.5
version: 5.2.5(@babel/core@7.29.7)(@module-federation/enhanced@2.5.1(@rspack/core@1.7.11(@swc/helpers@0.5.15))(typescript@5.8.3)(webpack@5.101.2))(@rspack/core@1.7.11(@swc/helpers@0.5.15))(react-native@0.80.2(@babel/core@7.29.7)(@react-native-community/cli@15.0.1(typescript@5.8.3))(@types/react@19.1.12)(react@19.1.0))(webpack@5.101.2)
'@rspack/core':
specifier: ^1.4.0
version: 1.7.11(@swc/helpers@0.5.15)
packages:
'@0no-co/graphql.web@1.3.2':
resolution: {integrity: sha512-Q1+pRlLhE31GOY/2c9BAEnFTNxO7Awtc6fhhEDlxyCBQ2N0IhD32cPVvPChrK9mwBNSgRdW/sF1kd2e0ojHj1Q==}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0
peerDependenciesMeta:
graphql:
optional: true
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
'@babel/code-frame@7.10.4':
resolution: {integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==}
'@babel/code-frame@7.27.1':
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
engines: {node: '>=6.9.0'}
'@babel/code-frame@7.29.7':
resolution: {integrity: sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.28.0':
resolution: {integrity: sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.29.7':
resolution: {integrity: sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==}
engines: {node: '>=6.9.0'}
'@babel/core@7.28.3':
resolution: {integrity: sha512-yDBHV9kQNcr2/sUr9jghVyz9C3Y5G2zUM2H2lo+9mKv4sFgbA8s8Z9t8D1jiTkGoO/NoIfKMyKWr4s6CN23ZwQ==}
engines: {node: '>=6.9.0'}
'@babel/core@7.29.7':
resolution: {integrity: sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==}
engines: {node: '>=6.9.0'}
'@babel/eslint-parser@7.28.0':
resolution: {integrity: sha512-N4ntErOlKvcbTt01rr5wj3y55xnIdx1ymrfIr8C2WnM1Y9glFgWaGDEULJIazOX3XM9NRzhfJ6zZnQ1sBNWU+w==}
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.28.3':
resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.29.7':
resolution: {integrity: sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.29.7':
resolution: {integrity: sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.27.2':
resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.29.7':
resolution: {integrity: sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==}
engines: {node: '>=6.9.0'}
'@babel/helper-create-class-features-plugin@7.29.7':
resolution: {integrity: sha512-IY3ZD9Tmooqr3TUhc3DUWxiuo8xx1DWLhd5M7hQ+ZWJamqM2BbalrBJb2MisSLoYorOj75U03qULCxQTY9r3hg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-create-regexp-features-plugin@7.29.7':
resolution: {integrity: sha512-907Uymvqgg1dwUA+7IGwFAOSYzQOuzPXKNJ1yxzwPffzkYFg2q2eHi1fIOs6sXkG9NbIUMunnUlkYsfRFNvomg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-define-polyfill-provider@0.6.5':
resolution: {integrity: sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
'@babel/helper-globals@7.28.0':
resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
engines: {node: '>=6.9.0'}
'@babel/helper-globals@7.29.7':
resolution: {integrity: sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==}
engines: {node: '>=6.9.0'}
'@babel/helper-member-expression-to-functions@7.29.7':
resolution: {integrity: sha512-j+7JYmk1JYDtACIGj0QJqqWZjoUpMoEikQGADMaHgCMCSDqd2+P32rfcibUNrGOMWrlzK1WJBdxrB3JJQZwWtg==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.29.7':
resolution: {integrity: sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-transforms@7.28.3':
resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-module-transforms@7.29.7':
resolution: {integrity: sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-optimise-call-expression@7.29.7':
resolution: {integrity: sha512-+kmGVjcT9RGYzoDwdwEqEvGgKe3BYq+O1iGzjFubaNgZHwYHP6lsF2Yghf4kEuv9BV7tYDZ913aBW9am6YKong==}
engines: {node: '>=6.9.0'}
'@babel/helper-plugin-utils@7.29.7':
resolution: {integrity: sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw==}
engines: {node: '>=6.9.0'}
'@babel/helper-remap-async-to-generator@7.29.7':
resolution: {integrity: sha512-16AMiW26DbXWBbr3B8wNozKM0ydMLB892vaOaJW/fPJdnT8vJk5sdkQcU/isqUxyCE0cEoa8wZOcbgDuC4b6Og==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-replace-supers@7.29.7':
resolution: {integrity: sha512-atfGXWSeCiF4DnKZIfmJfQRkSw9b9gNNXR1kqKjbhG4pGYCOnkp8OcTB8E3NXjBu8NpheSnOeNKz8KT7UNFTmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-skip-transparent-expression-wrappers@7.29.7':
resolution: {integrity: sha512-brcMGQaVzIeUb+6/bs1Av0f8YuNNjKY2JyvfRCsFuFsdKccEQ5Ges2y74D74NZ1Rz8lKJ9ksJkfqwQFJ/iNEyQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.27.1':
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.29.7':
resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.27.1':
resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.29.7':
resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.27.1':
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.29.7':
resolution: {integrity: sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==}
engines: {node: '>=6.9.0'}
'@babel/helper-wrap-function@7.29.7':
resolution: {integrity: sha512-iES0Skag9ERIF68aXadpO6dbXa03mNWK3sEqJaMnLNs/eC3l0lkImdfoy6Y09/SfkpawdAB4RjQ7PVA7TcVGdw==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.28.3':
resolution: {integrity: sha512-PTNtvUQihsAsDHMOP5pfobP8C6CM4JWXmP8DrEIt46c3r2bf87Ua1zoqevsMo9g+tWDwgWrFP5EIxuBx5RudAw==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.29.7':
resolution: {integrity: sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==}
engines: {node: '>=6.9.0'}
'@babel/highlight@7.25.9':
resolution: {integrity: sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.28.3':
resolution: {integrity: sha512-7+Ey1mAgYqFAx2h0RuoxcQT5+MlG3GTV0TQrgr7/ZliKsm/MNDxVVutlWaziMq7wJNAz8MTqz55XLpWvva6StA==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/parser@7.29.7':
resolution: {integrity: sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/plugin-proposal-decorators@7.29.7':
resolution: {integrity: sha512-EtU0Hi3GvrTqD56xKmZvV/uCXK2ZbwVNPNLAquVItcAZpUhkXwWlo3Fmj0c2LxgSf2I8IDULeAepwNP1OefLXg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-proposal-export-default-from@7.29.7':
resolution: {integrity: sha512-p+G5BNXDcy3bOXplhY4HybQ1GxH3i2Tppmdm/3epyRu2VgJJZuUlZ61MqRTg582Q7ZLBdP7fePYvsumSEkMxcQ==}
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.29.7':
resolution: {integrity: sha512-9MTTLbF39X6sqM92JPEsoI7++26hjZvzkxKZy64aMhWLH2mPkJ/Q3AV4QLmls3R14FpSpkOwQQfUh962JGQxxg==}
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-default-from@7.29.7':
resolution: {integrity: sha512-foag0BB37ROhdeIX9O8G0jX7hw0UekJc04cHMrYLOnrErsnBKqJGHJ8eDRpoCFZBvEPPygmmtw4qyU97qa4oOw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-flow@7.29.7':
resolution: {integrity: sha512-ajMX6QPcyomotqwpzhkYGxcK2i/us0rs1Qo9QvUpa+Fca0FTmqrzKrctoIYLMxcOhGZldGT/BAVkRGTWBiR8gQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-import-attributes@7.27.1':
resolution: {integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==}
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
'@babel/plugin-syntax-jsx@7.27.1':
resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-jsx@7.29.7':
resolution: {integrity: sha512-TSu8+mHCoEaaCDEZ0I3+6mvTBYR4PCxQwf2z9/r5Tbztv6NaLR3B9thGTTxX2WGuGHJqRiAbKPeGTJ5XWXVg6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-logical-assignment-operators@7.10.4':
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3':
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-numeric-separator@7.10.4':
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-object-rest-spread@7.8.3':
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-optional-catch-binding@7.8.3':
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-optional-chaining@7.8.3':
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-private-property-in-object@7.14.5':
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-top-level-await@7.14.5':
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-typescript@7.27.1':
resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-syntax-typescript@7.29.7':
resolution: {integrity: sha512-ngr+82Sh0xMz25TPCZi+nC2iTzjfCdWS2ONXTp/PtSCHCgaCNBpdMqgvJ2ccdLlClVZ7sisIgB914j/JFe+RZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-arrow-functions@7.29.7':
resolution: {integrity: sha512-N7zArUXWzAMzm+/N0uPBeVB3Fam5lMxtUwMmDK5f/IBBS7a7p1qeUoxd/6CckXoxUdgsntq1Dh8xNW06maZbDQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-async-generator-functions@7.29.7':
resolution: {integrity: sha512-d98gXZkgswvkyohMBABkhm3GeXhYj8psWfwQ2C7gtfrKGTykQa/iOIi+JJhwMjPlZ6Vm2XN+DCf3Es1EoG4ZLA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-async-to-generator@7.29.7':
resolution: {integrity: sha512-pcUb2SS+RMo9TWVBwKGI5ShtoG7R+zBsFmCKDa6fe8c+hPr3XJlZgoE5j6i8W7gDjhyvy+85vmYexanvXh3d1w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-block-scoping@7.29.7':
resolution: {integrity: sha512-ONyr4+AZhKh8yKWInVxU9AXA9EbsyeLcL6V0dJy6M2/62vuvpGm29zzuymbTpdc451GEpDIdAyPLP3r+P61yKQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-class-properties@7.29.7':
resolution: {integrity: sha512-GtcpjFvanPfzNQi3eTitsCqtRRmmqzpy/A+yhTR1HaZo1Ly3EA8ZXxlPyHdR8/IuRMYc3E4wdGBewB2QKQjAaA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-classes@7.29.7':
resolution: {integrity: sha512-qV0OGGBVacduzQHE649JyCneOFI/maT+YKsO+K4Yi3xv2wTPNjM/W2o2gdzMwEAZz7fXNTHAe0NcSg30bIN69g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-computed-properties@7.29.7':
resolution: {integrity: sha512-RK7/IyU5phpuCdBAuig5VkzG/EnbDaui5SQGdU9BFrHdV+mV4cUjLMQ9lJDjLNtWHsqtiefpGZUXQP2BiTYMsA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-destructuring@7.29.7':
resolution: {integrity: sha512-iPX8aD6H9zV5s7ZsqTdNocPN/MGQ5sSMnElKrktxjJRMnB2jN/1p2+R7GkfD6CAYoVFqy5A4XnSIUeGgJzIWpg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-export-namespace-from@7.29.7':
resolution: {integrity: sha512-24B2nOy2TeJSMheqwPD4DDQOV/elLSIlKxjZt4i05H5AgdPdWR3n18HnNrcJ+j76WJd9gbwb9jPjNYUy6RautA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-flow-strip-types@7.29.7':
resolution: {integrity: sha512-wRHeUjUjCZnMHmiO5bRgjFLcoEh7JyTdByOW11ahhwNa4V0bmeGEaIvt51yq0zQp2yWIpqfxXXPyUP6GFJZHOQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-for-of@7.29.7':
resolution: {integrity: sha512-zeSIHh0+E1Um1WJRXCFlHQYu2ieJNdivLLjlBEp+dIBu3S51n+SZZmIXjxnItw6pz56Cn+KvK68BIBVsxq2JiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-function-name@7.29.7':
resolution: {integrity: sha512-otRWaHXE6fbAGkePvaj/kvs3HsqXfPhlnzwSOlnFgbqCPMd975dW+4wZ00WFBt+/YlBGcJwNrARQTOJOb4ZrIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-literals@7.29.7':
resolution: {integrity: sha512-DZ/oLP21ZuWx1vKqnoNv6/tvEK48AQOBRai40CX9dTjGluvT/YZCyY3rryDtyUqCEoyNroy5KKPwX2iQCiRvyw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-logical-assignment-operators@7.29.7':
resolution: {integrity: sha512-A0H91hh6W8MFRkp5TqJmMr39jzGD1A1E1Ysiv2O06Sfbhkapm+XyIzxWCEh5kqwOZ1/8QZ0dY3SeQ7XBqfJd5Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-modules-commonjs@7.29.7':
resolution: {integrity: sha512-j0vCldybPC5b5dwCQOJ21uKtHzt7hxLygJTg9eF1ScfaikEDNfzn94XoW5Fi+seBR0nCyL23xaBFFkq7dTM8XQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-named-capturing-groups-regex@7.29.7':
resolution: {integrity: sha512-vuFoLwr4qnv2xbZ16SQd6uPcH5FNrLHhk/Jzo++0XJFcaDsr4gjJVg6j398oMHiC+83k/GiBzviwF5KBJkPUtQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/plugin-transform-nullish-coalescing-operator@7.29.7':
resolution: {integrity: sha512-idmp1dFaekP9GbcMvG24Kvw2BfhFZjHnNJCkV4WuIY4PskJzwI3f1N5OdgYke38T7rftO6ERulFRn2cFeZwRkg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-numeric-separator@7.29.7':
resolution: {integrity: sha512-zR7fv/z14OjgHl4AgRtkDBvBMhIzCxqV/qN/2BCRC7LjFwvuzjYe7gDWxC4Wl/SNsLM6SE1IWvRPYMgSJaUvNw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-object-rest-spread@7.29.7':
resolution: {integrity: sha512-Ld98jn4c0smUywL57m7SgsHq3OpThOa6LqZJif3G6jYOovPleoFhVrBJ1WegRApSFB2wu4+RelAj9AC9G08Z4A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-optional-catch-binding@7.29.7':
resolution: {integrity: sha512-sLsyndxK2VwX6yNUOakMb7Sh553ZTe/vVM1XJ+9Z5aW1ytsc8xOIwmyk05NNjN60vkc5/KqoTH6hB4V41LJhng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-optional-chaining@7.29.7':
resolution: {integrity: sha512-6GM1dhvK3gNODkXcEcMCOLEDCLSoZ/sBbro2Ax8HURyasQ4NshagQixkRFdh5niI6E4gmA/jYI/4aT7rRos3ZQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-parameters@7.29.7':
resolution: {integrity: sha512-ZDOBqV/qLYJI0YElr8DcENEyARsFQeESqWXH6gZlghYXuPPjvweuDhP4VyEi4BlUBlLRFZVjxoZDMjxhLW766g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-private-methods@7.29.7':
resolution: {integrity: sha512-/6Rz4DK1ETDEM/bWHsPHcaEe7ZaT1EqSXjtSP/L0DijOYuaUhiRiOKcwpZ8P7zR4xXEHc2ITdiCgBm9Tpyv9ug==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-private-property-in-object@7.29.7':
resolution: {integrity: sha512-+BNo06dnrzdNNqCm1X6YUaVv0DKk8Q+JYcoZfOkLhYWNCXzlwTSRq8zGWayT1csjcpNXV9CQTBRRbmTLZac5cA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-react-display-name@7.29.7':
resolution: {integrity: sha512-+1wdDMGNb4UPeY3Q4L5yLiYe6TXPXubs4NjrgRFw13hPRLJfEMw2Q5OXkee6/IfdqePIeW4Jjwe3aBh7SdKz4Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-react-jsx-development@7.29.7':
resolution: {integrity: sha512-Xfy3UVMF04+ypnFbkhvfqtmvwfe92qwQdbGZVonhE+6v35GzlofmOnA1szaZqzb9xYWr0nl1e5EMmzi0DNON1g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-react-jsx-self@7.29.7':
resolution: {integrity: sha512-TL0hMc9xzy86VD31nUiwzd5otRAcyEPcsegCxolO0PvcXuH1v0kECe/UIznYFihpkvU5wg/jk4v0TTEFfm53fw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-react-jsx-source@7.29.7':
resolution: {integrity: sha512-06IyK09H3wi4cGbhDBwp5gUGo0IKtnYa8tyTiephirPCK6fbobVGiXMMI5zLQ4aKEYP3wZ3ArU44o+8KMrSG/Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-react-jsx@7.29.7':
resolution: {integrity: sha512-WsZulLVBUHXVj2cUcPVx6UE21TpalB6bHbSFErKT0Ib++ax24jjXe73FqlWvdylFOjiuPHYi6VCcgRad1ItN+A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
'@babel/plugin-transform-react-pure-annotations@7.29.7':
resolution: {integrity: sha512-H5E+HBgDpr6Q5t+Aj11tL7XkIui1jhbIoArVQnqjgXo5/3YxkN7ZEBcWF4RQlB0T4rrxJQbXS6kiFV6B7XTqUA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0