-
Notifications
You must be signed in to change notification settings - Fork 0
/
pnpm-lock.yaml
3571 lines (3142 loc) · 128 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: '6.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
dependencies:
'@contentful/app-sdk':
specifier: 4.22.0
version: 4.22.0
'@contentful/f36-components':
specifier: 4.45.0
version: 4.45.0(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icons':
specifier: ^4.27.0
version: 4.27.0(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens':
specifier: 4.0.2
version: 4.0.2
'@contentful/react-apps-toolkit':
specifier: 1.2.16
version: 1.2.16(@contentful/app-sdk@4.22.0)(react@18.2.0)
'@contentful/rich-text-links':
specifier: ^16.5.0
version: 16.5.0
'@contentful/rich-text-plain-text-renderer':
specifier: ^16.0.7
version: 16.0.7
contentful-management:
specifier: 10.38.3
version: 10.38.3
emotion:
specifier: 10.0.27
version: 10.0.27
markdown-to-txt:
specifier: ^2.0.1
version: 2.0.1
react:
specifier: 18.2.0
version: 18.2.0
react-dom:
specifier: 18.2.0
version: 18.2.0(react@18.2.0)
reading-time:
specifier: ^1.5.0
version: 1.5.0
devDependencies:
'@contentful/app-scripts':
specifier: 1.10.2
version: 1.10.2
'@testing-library/react':
specifier: 14.0.0
version: 14.0.0(react-dom@18.2.0)(react@18.2.0)
'@types/node':
specifier: 16.18.38
version: 16.18.38
'@types/react':
specifier: 18.2.14
version: 18.2.14
'@types/react-dom':
specifier: 18.2.6
version: 18.2.6
'@vitejs/plugin-react':
specifier: 4.0.1
version: 4.0.1(vite@4.3.9)
happy-dom:
specifier: 9.20.3
version: 9.20.3
typescript:
specifier: 5.1.6
version: 5.1.6
vite:
specifier: 4.3.9
version: 4.3.9(@types/node@16.18.38)
vitest:
specifier: 0.32.4
version: 0.32.4(happy-dom@9.20.3)
packages:
/@ampproject/remapping@2.2.1:
resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.20
dev: true
/@babel/code-frame@7.22.13:
resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.22.20
chalk: 2.4.2
/@babel/compat-data@7.23.2:
resolution: {integrity: sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==}
engines: {node: '>=6.9.0'}
dev: true
/@babel/core@7.23.2:
resolution: {integrity: sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.1
'@babel/code-frame': 7.22.13
'@babel/generator': 7.23.0
'@babel/helper-compilation-targets': 7.22.15
'@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2)
'@babel/helpers': 7.23.2
'@babel/parser': 7.23.0
'@babel/template': 7.22.15
'@babel/traverse': 7.23.2
'@babel/types': 7.23.0
convert-source-map: 2.0.0
debug: 4.3.4
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
/@babel/generator@7.23.0:
resolution: {integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.23.0
'@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.20
jsesc: 2.5.2
dev: true
/@babel/helper-compilation-targets@7.22.15:
resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/compat-data': 7.23.2
'@babel/helper-validator-option': 7.22.15
browserslist: 4.22.1
lru-cache: 5.1.1
semver: 6.3.1
dev: true
/@babel/helper-environment-visitor@7.22.20:
resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
engines: {node: '>=6.9.0'}
dev: true
/@babel/helper-function-name@7.23.0:
resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.22.15
'@babel/types': 7.23.0
dev: true
/@babel/helper-hoist-variables@7.22.5:
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.23.0
dev: true
/@babel/helper-module-imports@7.22.15:
resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.23.0
/@babel/helper-module-transforms@7.23.0(@babel/core@7.23.2):
resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.23.2
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-module-imports': 7.22.15
'@babel/helper-simple-access': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
'@babel/helper-validator-identifier': 7.22.20
dev: true
/@babel/helper-plugin-utils@7.22.5:
resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
engines: {node: '>=6.9.0'}
dev: true
/@babel/helper-simple-access@7.22.5:
resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.23.0
dev: true
/@babel/helper-split-export-declaration@7.22.6:
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.23.0
dev: true
/@babel/helper-string-parser@7.22.5:
resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==}
engines: {node: '>=6.9.0'}
/@babel/helper-validator-identifier@7.22.20:
resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
engines: {node: '>=6.9.0'}
/@babel/helper-validator-option@7.22.15:
resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==}
engines: {node: '>=6.9.0'}
dev: true
/@babel/helpers@7.23.2:
resolution: {integrity: sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.22.15
'@babel/traverse': 7.23.2
'@babel/types': 7.23.0
transitivePeerDependencies:
- supports-color
dev: true
/@babel/highlight@7.22.20:
resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': 7.22.20
chalk: 2.4.2
js-tokens: 4.0.0
/@babel/parser@7.23.0:
resolution: {integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': 7.23.0
dev: true
/@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.23.2):
resolution: {integrity: sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.23.2):
resolution: {integrity: sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.23.2
'@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/runtime@7.23.2:
resolution: {integrity: sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.14.0
/@babel/template@7.22.15:
resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.22.13
'@babel/parser': 7.23.0
'@babel/types': 7.23.0
dev: true
/@babel/traverse@7.23.2:
resolution: {integrity: sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.22.13
'@babel/generator': 7.23.0
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-hoist-variables': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
'@babel/parser': 7.23.0
'@babel/types': 7.23.0
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: true
/@babel/types@7.23.0:
resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': 7.22.5
'@babel/helper-validator-identifier': 7.22.20
to-fast-properties: 2.0.0
/@contentful/app-scripts@1.10.2:
resolution: {integrity: sha512-MPhzVXsw9TZMt3S5YVvFCO99ksFqGC8QqdcO3cYHn22CvtkUX9qJylnMwF9gUzLwUsFA0kAJG1NpB9bzaEN9sg==}
engines: {node: '>=14', npm: '>=6'}
hasBin: true
dependencies:
adm-zip: 0.5.10
analytics-node: 6.2.0
bottleneck: 2.19.5
chalk: 4.1.2
commander: 10.0.1
contentful-management: 10.35.4
dotenv: 16.0.3
ignore: 5.2.4
inquirer: 8.2.5
lodash: 4.17.21
open: 8.4.2
ora: 5.4.1
transitivePeerDependencies:
- debug
dev: true
/@contentful/app-sdk@4.22.0:
resolution: {integrity: sha512-ljXNwqdCA1GCsD32SKGcUpLnuQAmAHSyW9ebHw185UBwNgqM02n20tODWftUYH94TlPiQnQmqDSDFX7TGRYW2g==}
dependencies:
contentful-management: 10.38.3
transitivePeerDependencies:
- debug
dev: false
/@contentful/f36-accordion@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-z7CDPZPb/mNjQQdmddopF3wSBDDOGwaKx1Xnjkn6AXp3YWpIoSHN29e+41PX5uibIvmm87SXpf+7A8tJc5IjNQ==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-collapse': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icons': 4.27.0(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
'@contentful/f36-typography': 4.52.3(react-dom@18.2.0)(react@18.2.0)
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-asset@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-j9TzdAUhOT1h1pU3dt4ZX+peBITvaj6MNd8gVCCVTEPlWPwFmfCCtOLXkVF+j0R29L0yrdCE2cgcp4VLMaGxrQ==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icon': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icons': 4.27.0(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
'@contentful/f36-typography': 4.52.3(react-dom@18.2.0)(react@18.2.0)
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-autocomplete@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-WdxpNwBY3T7RXL2qctPMF/r88ab3SCbdHWJGI68OXAvn/cJi3Wgvx32d7fQBYyQpprdqj9se6D2b6kgPDc1XhA==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-button': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-forms': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icons': 4.27.0(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-popover': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-skeleton': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
'@contentful/f36-typography': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-utils': 4.24.1(react-dom@18.2.0)(react@18.2.0)
downshift: 6.1.12(react@18.2.0)
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-badge@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-8Qp2Rgg3u/oEWFAbFJnWgMR24SJyteavrFvGX6YEBakiz3XAgNfVDe1KVo9hvpmNZsTWtyyL33NkmgKKLwZksg==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icons': 4.27.0(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-button@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-kU4qPKanAZ5RoaZhvIMyuMnYyXfhsddIULGzm8455W28SOvkV+MqnfjW2vpD0V7aR77JS2HjSiA/4QS9sKtcjQ==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-spinner': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
'@contentful/f36-utils': 4.24.1(react-dom@18.2.0)(react@18.2.0)
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-card@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-RYnX70UOd4mQfQwzdtnD27th0UNKKelfY3wPk9ZO3ZxRY9NapWKmSJyXXisjWTIZmGKIyEK9ZoCRHngevnCR9w==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-asset': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-badge': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-button': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-drag-handle': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icon': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icons': 4.27.0(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-menu': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-skeleton': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
'@contentful/f36-tooltip': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-typography': 4.52.3(react-dom@18.2.0)(react@18.2.0)
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
truncate: 3.0.0
dev: false
/@contentful/f36-collapse@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-RO+hpGYhmYTIzqFZuapx3+yncRRCFfp7hyEty6fYwUe/+H5+M3oh2JI0JJjt/InAaw0PRVVeLF8dN8E8BLLbaA==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-components@4.45.0(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-vxEWAHlcbfSmhHh5wfjNY3NsdN3vpTxK2pg1MvqECFBFxwTVfA2UxYwioM0cgd1W/rLRNTf+sCLSryKr2F3JCg==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-accordion': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-asset': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-autocomplete': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-badge': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-button': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-card': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-collapse': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-copybutton': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-datepicker': 4.52.3(@types/react@16.14.22)(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-datetime': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-drag-handle': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-empty-state': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-entity-list': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-forms': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icon': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icons': 4.27.0(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-list': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-menu': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-modal': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-navbar': 4.1.0(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-note': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-notification': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-pagination': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-pill': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-popover': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-skeleton': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-spinner': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-table': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tabs': 4.52.3(@types/react-dom@16.9.14)(@types/react@16.14.22)(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-text-link': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
'@contentful/f36-tooltip': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-typography': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-utils': 4.24.1(react-dom@18.2.0)(react@18.2.0)
'@types/react': 16.14.22
'@types/react-dom': 16.9.14
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-copybutton@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-rWYBIO3VnLZNle9gHP4dSFo0FGels4g/NPwn9jRsVzA692nKubHtV/sAO+zA2n23jJ9rVRfvQR5xd7ZDJv4taQ==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-button': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icons': 4.27.0(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
'@contentful/f36-tooltip': 4.52.3(react-dom@18.2.0)(react@18.2.0)
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-core@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-amiKICOzlUkyO8Ef6BVqnUBw25RA8PqL7mEWRtBV3DUEVNMebKSFrMlyS1eEDt7E4kUBoBKZ8vEf4Lyper9wbQ==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-tokens': 4.0.2
'@emotion/core': 10.3.1(react@18.2.0)
'@emotion/is-prop-valid': 1.2.1
csstype: 3.1.2
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-datepicker@4.52.3(@types/react@16.14.22)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-YVUvVSz1rr61e2HwCje2jgbnpS5aFgN5bf5moO1BA4iMVQQwbAXD1JmOW+Vl+9emCpElAXmgTJL0AIibT22h1Q==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-button': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-forms': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icons': 4.27.0(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-popover': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
'@contentful/f36-typography': 4.52.3(react-dom@18.2.0)(react@18.2.0)
date-fns: 2.30.0
emotion: 10.0.27
react: 18.2.0
react-day-picker: 8.9.1(date-fns@2.30.0)(react@18.2.0)
react-dom: 18.2.0(react@18.2.0)
react-focus-lock: 2.9.6(@types/react@16.14.22)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
dev: false
/@contentful/f36-datetime@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-Asac5DEqxr58cc4UVrfaefnxZ7mDo6J2KX3mVjTZfbb6LOtF72GD/VM/WkLCofBWjzOVWVeYB1Nyv0rdzXxDZQ==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
dayjs: 1.11.10
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-drag-handle@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-K4AbEimGG49B7zX2aauS4PN5My0OMp1vGMFami2tTKrAlUr1gvjDd49/MnXuFszyqaG/XHP3bNgKoLRo0Bspdg==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icons': 4.27.0(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
'@contentful/f36-utils': 4.24.1(react-dom@18.2.0)(react@18.2.0)
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-empty-state@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-wVtmnQ3R5tmaiMvl9our8iNzyZDxvG5R2J7CXwmwNzTwUc4qdJkSV8LIdGJK2vPS5YXFz6hL0C7foeuSbRuoCQ==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-tokens': 4.0.2
'@contentful/f36-typography': 4.52.3(react-dom@18.2.0)(react@18.2.0)
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-entity-list@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-LTHeY0HnRs8cP7vT+y6agnS17pTm8fE+QplhZf+z4k/xypsAR0Jm+Ae94yMlVXYR9aJurJfG2Dqo8WKTRjWi0g==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-badge': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-button': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-drag-handle': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icon': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icons': 4.27.0(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-menu': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-skeleton': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
'@contentful/f36-typography': 4.52.3(react-dom@18.2.0)(react@18.2.0)
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-forms@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-2BTE/rsRw+xDdfK8d8XCcBmPOukrI7agUKHbp73x/gt2fWukXZn7satHWsBmz6Ek1169Q5GyfAUm+84asIhSHg==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icons': 4.27.0(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
'@contentful/f36-typography': 4.52.3(react-dom@18.2.0)(react@18.2.0)
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-icon@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-kobypjFcH5FvhkJ3sPgiZUR9qSUEBtQk/c79FnWlefIBqEdWGYYmduMjQ4eSOMEhnJo8ZUqs7f/NB/6akrvHag==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-icons@4.27.0(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-sEQ5xorjQ2zMOCCv6uljpM+z46Miw5WTa5e1jf0bvRXPWLFYF0hkuQestL/JedObaB3ZEnq0B4NpfI2fslWH+Q==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icon': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-list@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-B2J/GYXP3WvHGPqS9rLdwd+rDLuMC2XfP5t7XfhlTUCNKtaO56vnyxlih1sI6KnnhGiuoYugrMzGlFb2cC+NIA==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-menu@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-LJzq3Ah4g5Uib9Hnt3AWjnmosQNdxdLIdCLeXTHaICEdHNaffLVrKSRY08k6B2q7RjzUFExogtdvEkVKwanBmw==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icons': 4.27.0(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-popover': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
'@contentful/f36-typography': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-utils': 4.24.1(react-dom@18.2.0)(react@18.2.0)
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-modal@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-b147S+B8H9lD8FVS5zInxhHdzkYi440wjYBFQeNOHO2QrMF4+bYCwloRY21WGAZ/wakqWiqsAxxPuyb0j9oxnw==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-button': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icons': 4.27.0(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
'@contentful/f36-typography': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@types/react-modal': 3.16.2
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-modal: 3.16.1(react-dom@18.2.0)(react@18.2.0)
dev: false
/@contentful/f36-navbar@4.1.0(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-tFzg4px28dGq2zD+/rKsVmZ684WItZ+xNGI7et6QeAmevwIzifE1JGblJr/BC1Nn2nWLlF0LZn4URekIf7ijkA==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icon': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icons': 4.27.0(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-menu': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-skeleton': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
'@contentful/f36-utils': 4.24.1(react-dom@18.2.0)(react@18.2.0)
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-note@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-nbXsq2PCGFsUYhoARbqQWUn65MNXboealtoNUmuEUvi5SEpTd8TQDZh2U0L3dSYRkNWUQdjx7y/im6GowKCmYQ==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-button': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icon': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icons': 4.27.0(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
'@contentful/f36-typography': 4.52.3(react-dom@18.2.0)(react@18.2.0)
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-notification@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-aa2weMcI2l49UJta+kc6gRYAx/EC06/51Vk27ykkevrwtHeZjq7PEN3lhzfYS1qdBo5Lnkt1MLb/MBkdwG4mSg==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-button': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icons': 4.27.0(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-text-link': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
'@contentful/f36-typography': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@swc/helpers': 0.4.36
emotion: 10.0.27
react: 18.2.0
react-animate-height: 3.2.2(react-dom@18.2.0)(react@18.2.0)
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-pagination@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-FuxBv9UiNekwi5ryJdEKg2S7eti+KF++2dISLUacPJyqmgPT2tGudqLc3t8QBclmLlPWEHtayg4BTZ8MmKexrQ==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-button': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-forms': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icons': 4.27.0(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
'@contentful/f36-typography': 4.52.3(react-dom@18.2.0)(react@18.2.0)
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-pill@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-eHzs6renbheOT8YqwIt+jb3dm+58pcRFmF1WY123/OadLlvngfQcJQOtJKBTQ8hB2+Iupzoj1QT678U3GKZ8Gg==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-button': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-drag-handle': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icons': 4.27.0(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
'@contentful/f36-tooltip': 4.52.3(react-dom@18.2.0)(react@18.2.0)
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-popover@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-hCc+Ax1fkWQ8F2PrEt/x2KLHIUa+VoeuPRUQyTQjiUMpzdZOQa9qja7IPoKO8MklNjlnquLJAAto8NPe6Cuqgg==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
'@contentful/f36-utils': 4.24.1(react-dom@18.2.0)(react@18.2.0)
'@popperjs/core': 2.11.8
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-popper: 2.3.0(@popperjs/core@2.11.8)(react-dom@18.2.0)(react@18.2.0)
dev: false
/@contentful/f36-skeleton@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-nJspEE6CTPduiAoCdVR2jDA8b0Om8LMIp32UjcPwxEczHvHfTpoNLDa1g39pSSFtMlk/en4jtRqHTUKn2yMIsw==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-table': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-spinner@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-zLJ0YVIFqPN7wCFr3CFkfb2b/q6pAKqdSOa2yGm8BEQ+Rz7ERkSmj9x394Q3BhFPXQ3pjIppQ5uPiTbmUnXXTA==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-table@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-BhwZq03uBsloDmq6931n9vRA8tztsHgBVEkDiUq5aHCrHp6tXbsxwHHveDXRQO5G7uhllF6aW8CLLbTNBbdk7Q==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-icons': 4.27.0(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
'@contentful/f36-typography': 4.52.3(react-dom@18.2.0)(react@18.2.0)
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-tabs@4.52.3(@types/react-dom@16.9.14)(@types/react@16.14.22)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-aKUNkEQY+f1xE4hz5DOCDpwHcC72YAPd2QxOiCxl0u0uFgUvV7aqmLjEthL4h9Q4sWO/pQpVOPjhvcJJxTIgMQ==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
'@radix-ui/react-tabs': 1.0.4(@types/react-dom@16.9.14)(@types/react@16.14.22)(react-dom@18.2.0)(react@18.2.0)
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- '@types/react-dom'
dev: false
/@contentful/f36-text-link@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-2hz0RzvNXw9u+jmKVFYHEwEuwZgO/Ac8fHMYzVJ3t3HsPV1gIr/ediXeFEJUZiO3VsAIzqp3j0XjV9SK4IItGg==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-tokens@4.0.2:
resolution: {integrity: sha512-sM2AM/8Qn4K0mm2H14nDJMIYoAUv7+tHGUyGqnXEyOVD/5O9lzLTkELEA9R0UgtPPcTywCYC6aZCCggy/Ezd/g==}
dev: false
/@contentful/f36-tooltip@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-0xOq5FF7Uv+VcI2+yGs4iBz6Ti3iOLO68EFsnBP3PVvKL3Qc0e8IQBp/oBC8z4e/rqn0w8qDxRJ9abOSRK6n9g==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
'@contentful/f36-utils': 4.24.1(react-dom@18.2.0)(react@18.2.0)
'@popperjs/core': 2.11.8
csstype: 3.1.2
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-popper: 2.3.0(@popperjs/core@2.11.8)(react-dom@18.2.0)(react@18.2.0)
dev: false
/@contentful/f36-typography@4.52.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-ojbwmJ4W1Sb6hvquZ0YeZDj1r2/r7YgRHx0+th7QjHWpBGTGfXlHr7P0SF2c5VoeDpOcma3RaT+i3BYoix03Qg==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@contentful/f36-core': 4.52.3(react-dom@18.2.0)(react@18.2.0)
'@contentful/f36-tokens': 4.0.2
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/f36-utils@4.24.1(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-jr+61KiKn7oA38WXgAJoqVNdr6gXzmJSA+MCl7Djapxxf+jsC1vsi8j8okISCm4a/ZcPncKekDYzzWu+kkI7VQ==}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
emotion: 10.0.27
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
/@contentful/react-apps-toolkit@1.2.16(@contentful/app-sdk@4.22.0)(react@18.2.0):
resolution: {integrity: sha512-vx7+T4h+w1XBbn7OfRoXr8YUTtiyRNLaltF2ziM4xMqBryu/3Y71nBbhbxD6NIfOui3QIo3TR9Q5sPTZvGbIVw==}
peerDependencies:
'@contentful/app-sdk': '>=4.0.0'
react: '>=16.8.0'
dependencies:
'@contentful/app-sdk': 4.22.0
contentful-management: 10.38.3
react: 18.2.0
transitivePeerDependencies:
- debug
dev: false
/@contentful/rich-text-links@16.5.0:
resolution: {integrity: sha512-y88Um51KiC8RV3kv4sVZj/5zG1z7/7ZdganiP+2qQ3sJ1hBTelHxbcqmSHmVPy+dkBpRzKDgHhYv/lc+21UBng==}
engines: {node: '>=6.0.0'}
dependencies:
'@contentful/rich-text-types': 16.3.0
dev: false
/@contentful/rich-text-plain-text-renderer@16.0.7:
resolution: {integrity: sha512-ryFZP3Q279kG5xfL5XmdxFv2peoivGdVq+ZglOlGPfSmpV/fXlrEW9eg/zY7vRJpLQt/XOpf2dQo4giecKPhCA==}
engines: {node: '>=6.0.0'}
dependencies:
'@contentful/rich-text-types': 16.3.0
dev: false
/@contentful/rich-text-types@16.3.0:
resolution: {integrity: sha512-OfQmAu5bxE0CgQA3WlUleVej+ifFG/iXmB2DmUl4EyWyFue1aiIvfjxQhcDRSH4n1jUNMJ6L1wInZL8uV5m3TQ==}
engines: {node: '>=6.0.0'}
/@emotion/cache@10.0.29:
resolution: {integrity: sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==}
dependencies:
'@emotion/sheet': 0.9.4
'@emotion/stylis': 0.8.5
'@emotion/utils': 0.11.3
'@emotion/weak-memoize': 0.2.5
dev: false
/@emotion/core@10.3.1(react@18.2.0):
resolution: {integrity: sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==}
peerDependencies:
react: '>=16.3.0'
dependencies:
'@babel/runtime': 7.23.2
'@emotion/cache': 10.0.29
'@emotion/css': 10.0.27
'@emotion/serialize': 0.11.16
'@emotion/sheet': 0.9.4
'@emotion/utils': 0.11.3
react: 18.2.0
dev: false
/@emotion/css@10.0.27:
resolution: {integrity: sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==}
dependencies:
'@emotion/serialize': 0.11.16
'@emotion/utils': 0.11.3
babel-plugin-emotion: 10.2.2
dev: false
/@emotion/hash@0.8.0:
resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
dev: false
/@emotion/is-prop-valid@1.2.1:
resolution: {integrity: sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==}
dependencies:
'@emotion/memoize': 0.8.1
dev: false