-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
9296 lines (9296 loc) · 358 KB
/
package-lock.json
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
{
"name": "adapt-essentials-asset-fields",
"version": "1.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "adapt-essentials-asset-fields",
"version": "1.0.0",
"dependencies": {
"@contentful/app-sdk": "^4.19.1",
"@contentful/f36-components": "^4.43.0",
"@contentful/f36-image": "^4.0.0-alpha.0",
"@contentful/f36-workbench": "^4.21.0",
"@contentful/react-apps-toolkit": "^1.2.15",
"@uidotdev/usehooks": "^2.0.1",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-focus-lock": "^2.9.4",
"react-router-dom": "^6.13.0",
"use-local-storage-extended": "^0.1.1"
},
"devDependencies": {
"@contentful/app-scripts": "^1.15.0",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"happy-dom": "^9.20.3",
"type-fest": "^4.2.0",
"typescript": "^5.0.2",
"vite": "^4.5.3"
}
},
"node_modules/@aashutoshrathi/word-wrap": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
"integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@babel/code-frame": {
"version": "7.22.5",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz",
"integrity": "sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==",
"dependencies": {
"@babel/highlight": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-imports": {
"version": "7.22.5",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz",
"integrity": "sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==",
"dependencies": {
"@babel/types": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-string-parser": {
"version": "7.22.5",
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz",
"integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.22.5",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz",
"integrity": "sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight": {
"version": "7.22.5",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz",
"integrity": "sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.22.5",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight/node_modules/ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"dependencies": {
"color-convert": "^1.9.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dependencies": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/color-convert": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"dependencies": {
"color-name": "1.1.3"
}
},
"node_modules/@babel/highlight/node_modules/color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
},
"node_modules/@babel/highlight/node_modules/escape-string-regexp": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
"engines": {
"node": ">=0.8.0"
}
},
"node_modules/@babel/highlight/node_modules/has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
"integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/supports-color": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"dependencies": {
"has-flag": "^3.0.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/runtime": {
"version": "7.22.5",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.5.tgz",
"integrity": "sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA==",
"dependencies": {
"regenerator-runtime": "^0.13.11"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/types": {
"version": "7.22.5",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz",
"integrity": "sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==",
"dependencies": {
"@babel/helper-string-parser": "^7.22.5",
"@babel/helper-validator-identifier": "^7.22.5",
"to-fast-properties": "^2.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@contentful/app-scripts": {
"version": "1.15.0",
"resolved": "https://registry.npmjs.org/@contentful/app-scripts/-/app-scripts-1.15.0.tgz",
"integrity": "sha512-rUJe/wQUSm3cZO3RifrBxNmWsUGJsvFn45GW9fMGYuzuEbfj0frkuTCsOAITjUVC2Buy2xodxP753vDNy2Of3w==",
"dev": true,
"dependencies": {
"@segment/analytics-node": "^2.0.0",
"adm-zip": "0.5.10",
"bottleneck": "2.19.5",
"chalk": "4.1.2",
"commander": "12.0.0",
"contentful-management": "11.16.0",
"dotenv": "16.4.4",
"ignore": "5.3.1",
"inquirer": "8.2.6",
"lodash": "4.17.21",
"open": "8.4.2",
"ora": "5.4.1"
},
"bin": {
"contentful-app-scripts": "lib/bin.js"
},
"engines": {
"node": ">=14",
"npm": ">=6"
}
},
"node_modules/@contentful/app-sdk": {
"version": "4.19.1",
"resolved": "https://registry.npmjs.org/@contentful/app-sdk/-/app-sdk-4.19.1.tgz",
"integrity": "sha512-Z1XHrvKLaTkJOHtbA0sBi5tUtg0lJ8YPzrc+rWCsxiVaRZuaX8i/iZk1zdYZJ5VgwGpaoPUDWc9jNGeqMykgNg==",
"peerDependencies": {
"contentful-management": ">=7.30.0"
}
},
"node_modules/@contentful/f36-accordion": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-accordion/-/f36-accordion-4.43.0.tgz",
"integrity": "sha512-2VV0FDOZaDgYyFBBo9zw3TVU2ETLOwW6EPwvaKtnTlaM7nGtyn/qsljz66wPtnIxKD5DRWFoaQR5Qoba7SO1UQ==",
"dependencies": {
"@contentful/f36-collapse": "^4.43.0",
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-icons": "^4.23.2",
"@contentful/f36-tokens": "^4.0.2",
"@contentful/f36-typography": "^4.43.0",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-asset": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-asset/-/f36-asset-4.43.0.tgz",
"integrity": "sha512-xBvx/KIQ2C153VJ5ftG9LYjsVdaTc3nAzveSyWibxTaHL6fw6b19qgyMGpKn8ro+E/jShItPAsELRDXCATQGig==",
"dependencies": {
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-icon": "^4.43.0",
"@contentful/f36-icons": "^4.23.2",
"@contentful/f36-tokens": "^4.0.2",
"@contentful/f36-typography": "^4.43.0",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-autocomplete": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-autocomplete/-/f36-autocomplete-4.43.0.tgz",
"integrity": "sha512-u1V7RnSBlhVeG+ExhLkE5AIaFiQxLLv4y5tpNnBAxtqkLGjhNU7F4WNUIoUTrRn1yB3AaBzCLXlGooOtRIlJTA==",
"dependencies": {
"@contentful/f36-button": "^4.43.0",
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-forms": "^4.43.0",
"@contentful/f36-icons": "^4.23.2",
"@contentful/f36-popover": "^4.43.0",
"@contentful/f36-skeleton": "^4.43.0",
"@contentful/f36-tokens": "^4.0.2",
"@contentful/f36-typography": "^4.43.0",
"@contentful/f36-utils": "^4.23.2",
"downshift": "^6.1.12",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-badge": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-badge/-/f36-badge-4.43.0.tgz",
"integrity": "sha512-D79UpheXebGn1xDkQNJ9qLzKANIf4rBByNLde9ix9LW2SLf2ydQvyaQfFQFcG+LSfZiXVXgbk0zc3s70bpnFtg==",
"dependencies": {
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-icons": "^4.25.0",
"@contentful/f36-tokens": "^4.0.2",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-button": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-button/-/f36-button-4.43.0.tgz",
"integrity": "sha512-re0RnpGrikvAIyBk2F8dj/CR/SE+xJ5IXN9yyGHuVh9yrSNOQ+nLm7KF6824HokkWd/N3dPFGm2iKAq1g/yGew==",
"dependencies": {
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-spinner": "^4.43.0",
"@contentful/f36-tokens": "^4.0.2",
"@contentful/f36-utils": "^4.24.1",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-card": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-card/-/f36-card-4.43.0.tgz",
"integrity": "sha512-4EECfdsVLS0nHObHNEHgy5te+CZnFB5NkkUZpGh4nLm/4B94jRUQ8nJI5UADjojLa/9AqQtbmKwGQHUXm+CsgA==",
"dependencies": {
"@contentful/f36-asset": "^4.43.0",
"@contentful/f36-badge": "^4.43.0",
"@contentful/f36-button": "^4.43.0",
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-drag-handle": "^4.43.0",
"@contentful/f36-icon": "^4.43.0",
"@contentful/f36-icons": "^4.23.2",
"@contentful/f36-menu": "^4.43.0",
"@contentful/f36-skeleton": "^4.43.0",
"@contentful/f36-tokens": "^4.0.2",
"@contentful/f36-tooltip": "^4.43.0",
"@contentful/f36-typography": "^4.43.0",
"emotion": "^10.0.17",
"truncate": "^3.0.0"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-collapse": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-collapse/-/f36-collapse-4.43.0.tgz",
"integrity": "sha512-IIJ4II/HrE7mRvB4mKxTvygyctg+P1jLQ9HaQ0NH1PEyyjf2MUofoDAuoMEgn2tdS2ekGMaCCcdvE6VSKeC0sw==",
"dependencies": {
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-tokens": "^4.0.2",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-components": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-components/-/f36-components-4.43.0.tgz",
"integrity": "sha512-loB4Xg87Up98LzDgCHG4GOFjbyPUBzCf6A4rWmGYbB1QitXsAOdyphd2XluknlX/JxHJj2EsZwgarIvNZvIqpg==",
"dependencies": {
"@contentful/f36-accordion": "^4.43.0",
"@contentful/f36-asset": "^4.43.0",
"@contentful/f36-autocomplete": "^4.43.0",
"@contentful/f36-badge": "^4.43.0",
"@contentful/f36-button": "^4.43.0",
"@contentful/f36-card": "^4.43.0",
"@contentful/f36-collapse": "^4.43.0",
"@contentful/f36-copybutton": "^4.43.0",
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-datepicker": "^4.43.0",
"@contentful/f36-datetime": "^4.43.0",
"@contentful/f36-drag-handle": "^4.43.0",
"@contentful/f36-empty-state": "^4.43.0",
"@contentful/f36-entity-list": "^4.43.0",
"@contentful/f36-forms": "^4.43.0",
"@contentful/f36-icon": "^4.43.0",
"@contentful/f36-icons": "^4.23.2",
"@contentful/f36-list": "^4.43.0",
"@contentful/f36-menu": "^4.43.0",
"@contentful/f36-modal": "^4.43.0",
"@contentful/f36-note": "^4.43.0",
"@contentful/f36-notification": "^4.43.0",
"@contentful/f36-pagination": "^4.43.0",
"@contentful/f36-pill": "^4.43.0",
"@contentful/f36-popover": "^4.43.0",
"@contentful/f36-skeleton": "^4.43.0",
"@contentful/f36-spinner": "^4.43.0",
"@contentful/f36-table": "^4.43.0",
"@contentful/f36-tabs": "^4.43.0",
"@contentful/f36-text-link": "^4.43.0",
"@contentful/f36-tokens": "^4.0.2",
"@contentful/f36-tooltip": "^4.43.0",
"@contentful/f36-typography": "^4.43.0",
"@contentful/f36-utils": "^4.23.2",
"@types/react": "16.14.22",
"@types/react-dom": "16.9.14"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-components/node_modules/@types/react": {
"version": "16.14.22",
"resolved": "https://registry.npmjs.org/@types/react/-/react-16.14.22.tgz",
"integrity": "sha512-4NnkxKDd2UO9SiCckuhCQOCzdO+RtE4Epf1D6eGz3f9jZjiIXOVo+Bk3jqSad+8EOT+LBXwKdkFX0V0F+NFzDQ==",
"dependencies": {
"@types/prop-types": "*",
"@types/scheduler": "*",
"csstype": "^3.0.2"
}
},
"node_modules/@contentful/f36-components/node_modules/@types/react-dom": {
"version": "16.9.14",
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.14.tgz",
"integrity": "sha512-FIX2AVmPTGP30OUJ+0vadeIFJJ07Mh1m+U0rxfgyW34p3rTlXI+nlenvAxNn4BP36YyI9IJ/+UJ7Wu22N1pI7A==",
"dependencies": {
"@types/react": "^16"
}
},
"node_modules/@contentful/f36-copybutton": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-copybutton/-/f36-copybutton-4.43.0.tgz",
"integrity": "sha512-UTiyy5vqac4faJtUKMC/fZ5YWteTtwpCbY4Cr7TgBP8k5z5XZ/GAOC/cckXYiMpEgCYpZelr6YuAZsZ74e9kWA==",
"dependencies": {
"@contentful/f36-button": "^4.43.0",
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-icons": "^4.23.2",
"@contentful/f36-tokens": "^4.0.2",
"@contentful/f36-tooltip": "^4.43.0",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-core": {
"version": "4.50.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-core/-/f36-core-4.50.0.tgz",
"integrity": "sha512-h2c6JD4lPhcNoSHf1GtLobETbe24D8h6dfUXdV9KAVDybGfTAEzN54hby0jDEfqqHqCBh2j5oAYWmFwZ0+AZCg==",
"dependencies": {
"@contentful/f36-tokens": "^4.0.2",
"@emotion/core": "^10.1.1",
"@emotion/is-prop-valid": "^1.2.0",
"csstype": "^3.1.1",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-datepicker": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-datepicker/-/f36-datepicker-4.43.0.tgz",
"integrity": "sha512-md5WF6GHqzS5h6hI8k14OmiiTYXe6rVnwgJ+snz/oA3/4nfrAs2x6EOMotEqLofu4PnLQwJM/it5jLuXbF+uXg==",
"dependencies": {
"@contentful/f36-button": "^4.43.0",
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-forms": "^4.43.0",
"@contentful/f36-icons": "^4.23.2",
"@contentful/f36-popover": "^4.43.0",
"@contentful/f36-tokens": "^4.0.2",
"@contentful/f36-typography": "^4.43.0",
"date-fns": "^2.28.0",
"emotion": "^10.0.17",
"react-day-picker": "^8.3.5",
"react-focus-lock": "^2.9.1"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-datetime": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-datetime/-/f36-datetime-4.43.0.tgz",
"integrity": "sha512-mgUUqtO8mYyU45yjkS/eHwIvryzGEYxf5D2VRRGImb3cQIIZBiDJ+e8l11N61cmZM6ExBQMd4uFqLRUineb1Fw==",
"dependencies": {
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-tokens": "^4.0.2",
"dayjs": "^1.11.5",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-drag-handle": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-drag-handle/-/f36-drag-handle-4.43.0.tgz",
"integrity": "sha512-7Ol+Po7tYhONxM1pPrDoWvUTkwATj0bP4B9HICi5sapeLW6DijP2w6fv2sEFnS+ha6VerGboLNoit3GraDq68Q==",
"dependencies": {
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-icons": "^4.23.2",
"@contentful/f36-tokens": "^4.0.2",
"@contentful/f36-utils": "^4.24.1",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-empty-state": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-empty-state/-/f36-empty-state-4.43.0.tgz",
"integrity": "sha512-+HkV5NEe90/rATpsd+r54OcTwy/O44KoLwHuZb7hMEH5eVUtF38w5131wr5oLn/1OmTkdJD30T6iE9peJo/K+Q==",
"dependencies": {
"@contentful/f36-tokens": "^4.0.2",
"@contentful/f36-typography": "^4.43.0",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-entity-list": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-entity-list/-/f36-entity-list-4.43.0.tgz",
"integrity": "sha512-Kd8GbMaXSAtH/rCG/dA3ahzDX18i2g6nXBd2V0y0FKWJOyupR43yaVwJYl9G+7e5rREPbSCcXSgkvwY89Hul4g==",
"dependencies": {
"@contentful/f36-badge": "^4.43.0",
"@contentful/f36-button": "^4.43.0",
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-drag-handle": "^4.43.0",
"@contentful/f36-icon": "^4.43.0",
"@contentful/f36-icons": "^4.23.2",
"@contentful/f36-menu": "^4.43.0",
"@contentful/f36-skeleton": "^4.43.0",
"@contentful/f36-tokens": "^4.0.2",
"@contentful/f36-typography": "^4.43.0",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-forms": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-forms/-/f36-forms-4.43.0.tgz",
"integrity": "sha512-z/Qo9NcPJvTyuJnoeLGeKcUZMoLHuRW3nODvWIRuvS3uXRl9GRtq4mvm9/4413+oXHCdEtURKPaqnjwlpwltrw==",
"dependencies": {
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-icons": "^4.23.2",
"@contentful/f36-tokens": "^4.0.2",
"@contentful/f36-typography": "^4.43.0",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-icon": {
"version": "4.50.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-icon/-/f36-icon-4.50.0.tgz",
"integrity": "sha512-Q42uqnYnicRJOn6r6f2Rfd7n/3/fPKjeZ/oEeajbLQNJ0AUoDUzdVeKOxwa7cbSzr9aT/SGjYmo2NLUCGMvX/g==",
"dependencies": {
"@contentful/f36-core": "^4.50.0",
"@contentful/f36-tokens": "^4.0.2",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8"
}
},
"node_modules/@contentful/f36-icons": {
"version": "4.27.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-icons/-/f36-icons-4.27.0.tgz",
"integrity": "sha512-sEQ5xorjQ2zMOCCv6uljpM+z46Miw5WTa5e1jf0bvRXPWLFYF0hkuQestL/JedObaB3ZEnq0B4NpfI2fslWH+Q==",
"dependencies": {
"@contentful/f36-core": "^4.48.0",
"@contentful/f36-icon": "^4.48.0",
"@contentful/f36-tokens": "^4.0.1",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-image": {
"version": "4.0.0-alpha.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-image/-/f36-image-4.0.0-alpha.0.tgz",
"integrity": "sha512-pB2p1n5oV5e5w11UCmqFoHIlgKdR7qXxsb7DxjkocI32leOlvLzFk+FVhV4+Ffj6c61p4PgkN4mKsMzdS9T17g==",
"dependencies": {
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-skeleton": "^4.43.0",
"@contentful/f36-tokens": "^4.0.0",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-list": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-list/-/f36-list-4.43.0.tgz",
"integrity": "sha512-xKjKeX4c2grlyhOmD5TyrLac9OgFKUff6NilMUqADu6x6LDdoYiR1bBFEI30k0mwQSv976Iy56IwbWMx4cXvqQ==",
"dependencies": {
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-tokens": "^4.0.2",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8"
}
},
"node_modules/@contentful/f36-menu": {
"version": "4.50.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-menu/-/f36-menu-4.50.0.tgz",
"integrity": "sha512-LpmFpAiroTwsjw5cMGiG18j8rCvycP5KXTrhPKeB+kfGJ8CTlpiDDJT26EmoX3cG6Vmc9Ghn7jebo+2XFRDURg==",
"dependencies": {
"@contentful/f36-core": "^4.50.0",
"@contentful/f36-icons": "^4.27.0",
"@contentful/f36-popover": "^4.50.0",
"@contentful/f36-tokens": "^4.0.2",
"@contentful/f36-typography": "^4.50.0",
"@contentful/f36-utils": "^4.23.2",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-modal": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-modal/-/f36-modal-4.43.0.tgz",
"integrity": "sha512-Q9TDMLmiEFlpgtdYCkDXdoP64Um4/fLfKLPsK+s/LdGkPY3FZejEmf6dv3t8IeEKiAOM11xHSh6+ohBFbBp3GA==",
"dependencies": {
"@contentful/f36-button": "^4.43.0",
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-icons": "^4.23.2",
"@contentful/f36-tokens": "^4.0.2",
"@contentful/f36-typography": "^4.43.0",
"@types/react-modal": "^3.13.1",
"emotion": "^10.0.17",
"react-modal": "^3.16.1"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-note": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-note/-/f36-note-4.43.0.tgz",
"integrity": "sha512-UvtdVpeDOoCA4PZvap7jWpwz1XsEzLfJzKJkMeCRhVqLUkN+DinL9EdNGL3Sf0VeQ3pn40lJznBT0DAtFVlo+g==",
"dependencies": {
"@contentful/f36-button": "^4.43.0",
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-icon": "^4.43.0",
"@contentful/f36-icons": "^4.23.2",
"@contentful/f36-tokens": "^4.0.2",
"@contentful/f36-typography": "^4.43.0",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-notification": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-notification/-/f36-notification-4.43.0.tgz",
"integrity": "sha512-rtP6Sld/yDB2HT0gLTzCpDlSWefylLI0YPY0GNaP8R+W1B9WTpg0nl1ZVWvr8A0Bp0yM2QICA4O10YvcXOw2Zg==",
"dependencies": {
"@contentful/f36-button": "^4.43.0",
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-icons": "^4.23.2",
"@contentful/f36-text-link": "^4.43.0",
"@contentful/f36-tokens": "^4.0.2",
"@contentful/f36-typography": "^4.43.0",
"@swc/helpers": "^0.4.14",
"emotion": "^10.0.17",
"react-animate-height": "^3.0.4"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-notification/node_modules/@swc/helpers": {
"version": "0.4.14",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
"integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@contentful/f36-pagination": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-pagination/-/f36-pagination-4.43.0.tgz",
"integrity": "sha512-Wp7wEwHZk13Zy9GWRGBk7WknlF45w2ISS34fw70rIjWsaF8xJFmPwJlmkwzN77ZlwLZjwG29ErfUnz86lwiavg==",
"dependencies": {
"@contentful/f36-button": "^4.43.0",
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-forms": "^4.43.0",
"@contentful/f36-icons": "^4.23.2",
"@contentful/f36-tokens": "^4.0.2",
"@contentful/f36-typography": "^4.43.0",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8"
}
},
"node_modules/@contentful/f36-pill": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-pill/-/f36-pill-4.43.0.tgz",
"integrity": "sha512-t0Vi+wV7oLrvWnCCwp4jLGw48ZUTJuOvJgOVO2C4W4qRMLgUPAMxE8Ye0u3CD2ku+XhJVoKAcywernRwbvmevQ==",
"dependencies": {
"@contentful/f36-button": "^4.43.0",
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-drag-handle": "^4.43.0",
"@contentful/f36-icons": "^4.23.2",
"@contentful/f36-tokens": "^4.0.2",
"@contentful/f36-tooltip": "^4.43.0",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-popover": {
"version": "4.50.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-popover/-/f36-popover-4.50.0.tgz",
"integrity": "sha512-9dZVmLdx0sVlLqfeyHomMJLANEvsUyOcxM43AZTtAIlUMBwJc2hxIIl/EJ4PSj7bMppsmqVGguYhmejC0mHZ9A==",
"dependencies": {
"@contentful/f36-core": "^4.50.0",
"@contentful/f36-tokens": "^4.0.2",
"@contentful/f36-utils": "^4.23.2",
"@popperjs/core": "^2.11.5",
"emotion": "^10.0.17",
"react-popper": "^2.3.0"
},
"peerDependencies": {
"react": ">=16.8"
}
},
"node_modules/@contentful/f36-skeleton": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-skeleton/-/f36-skeleton-4.43.0.tgz",
"integrity": "sha512-Uh+hFap+Ax6uf9p5Cl+6obP9jnPLrMwjcHwJC/M3L9xVCpSvjXnY/7kfv8jBeiSmlLRyBkRL/e5yyWS9snPSmw==",
"dependencies": {
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-table": "^4.43.0",
"@contentful/f36-tokens": "^4.0.2",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-spinner": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-spinner/-/f36-spinner-4.43.0.tgz",
"integrity": "sha512-562Dk6O3tlYs0ZEC5TeE26k32qX8L+dhTiAOwaits9Jx4EmqtHIYLhSB/kxpZ1MujyvumdZoNf6L2dsfcQ/gsA==",
"dependencies": {
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-tokens": "^4.0.2",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8"
}
},
"node_modules/@contentful/f36-table": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-table/-/f36-table-4.43.0.tgz",
"integrity": "sha512-kxtnYJI4nPwi9bsEqJ6sawGDYlevNPvhYhBMDFY2IFvYRM9Eq63oGPactsy56ncN0kK9uBBiR39twbZLGpV3qg==",
"dependencies": {
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-icons": "^4.25.0",
"@contentful/f36-tokens": "^4.0.2",
"@contentful/f36-typography": "^4.43.0",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-tabs": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-tabs/-/f36-tabs-4.43.0.tgz",
"integrity": "sha512-3mRiInl8/9gC/WTLgddYfSGYcPzexfOujQEwYhyjgPWrhebJK0VNuSTGNKaLT1EvPRhwU6V9xsAAmOiyU/SySg==",
"dependencies": {
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-tokens": "^4.0.2",
"@radix-ui/react-tabs": "^1.0.1",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-text-link": {
"version": "4.43.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-text-link/-/f36-text-link-4.43.0.tgz",
"integrity": "sha512-hLzdNY975FXrZ18906D5813pFfAhr7SosoSoFfz7PD4u0Fx5J72y3O4c3Ll2cK1kONlqgiotUAESM7n76o4IGQ==",
"dependencies": {
"@contentful/f36-core": "^4.43.0",
"@contentful/f36-tokens": "^4.0.2",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8"
}
},
"node_modules/@contentful/f36-tokens": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@contentful/f36-tokens/-/f36-tokens-4.0.2.tgz",
"integrity": "sha512-sM2AM/8Qn4K0mm2H14nDJMIYoAUv7+tHGUyGqnXEyOVD/5O9lzLTkELEA9R0UgtPPcTywCYC6aZCCggy/Ezd/g=="
},
"node_modules/@contentful/f36-tooltip": {
"version": "4.50.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-tooltip/-/f36-tooltip-4.50.0.tgz",
"integrity": "sha512-WASCTYwfrbb7kmZsXMTx0RdRzvONnLyFXOvtgSUrpYIlqGez+dS0cr6kWOdFxhkDVT1gIsxtna0u2n6Hpfsjvg==",
"dependencies": {
"@contentful/f36-core": "^4.50.0",
"@contentful/f36-tokens": "^4.0.2",
"@contentful/f36-utils": "^4.23.2",
"@popperjs/core": "^2.11.5",
"csstype": "^3.1.1",
"emotion": "^10.0.17",
"react-popper": "^2.3.0"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-typography": {
"version": "4.50.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-typography/-/f36-typography-4.50.0.tgz",
"integrity": "sha512-d0GA4IaGmfmPHkmwhev3rqcHO15FL/gcjqNfm+xVn2t9Uab9a90XXh1zKzWMQHx/KmLHEgjU5j4SzGGkHOpztQ==",
"dependencies": {
"@contentful/f36-core": "^4.50.0",
"@contentful/f36-tokens": "^4.0.2",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8"
}
},
"node_modules/@contentful/f36-utils": {
"version": "4.24.1",
"resolved": "https://registry.npmjs.org/@contentful/f36-utils/-/f36-utils-4.24.1.tgz",
"integrity": "sha512-jr+61KiKn7oA38WXgAJoqVNdr6gXzmJSA+MCl7Djapxxf+jsC1vsi8j8okISCm4a/ZcPncKekDYzzWu+kkI7VQ==",
"dependencies": {
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/f36-workbench": {
"version": "4.21.0",
"resolved": "https://registry.npmjs.org/@contentful/f36-workbench/-/f36-workbench-4.21.0.tgz",
"integrity": "sha512-0iD/z/980s6jS2BAH0fGciNztoySB5A77hBmxCCJbPzzoTstpEFENZHeTl9+GcCl+rVCYCtpqgiJnXQ8wsnclQ==",
"dependencies": {
"@contentful/f36-button": "^4.21.4",
"@contentful/f36-core": "^4.21.4",
"@contentful/f36-icon": "^4.21.4",
"@contentful/f36-icons": "^4.21.4",
"@contentful/f36-tokens": "^4.0.1",
"@contentful/f36-typography": "^4.21.4",
"emotion": "^10.0.17"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
}
},
"node_modules/@contentful/react-apps-toolkit": {
"version": "1.2.15",
"resolved": "https://registry.npmjs.org/@contentful/react-apps-toolkit/-/react-apps-toolkit-1.2.15.tgz",
"integrity": "sha512-0xYtk6+E+I2Qxe5MjBXoTeafkTLxVMyThnkhZJN+AVd4Tif3UIJYEA9Ck73BeT7obmM1jk5F1SL+5Ryh4MycWw==",
"dependencies": {
"contentful-management": ">=7.30.0"
},
"peerDependencies": {
"@contentful/app-sdk": ">=4.0.0",
"react": ">=16.8.0"
}
},
"node_modules/@contentful/rich-text-types": {
"version": "16.3.4",
"resolved": "https://registry.npmjs.org/@contentful/rich-text-types/-/rich-text-types-16.3.4.tgz",
"integrity": "sha512-PyVSrQa5j1hO4grgA0Ivo/taiOvW0uFN79JB5JkTG8U7DnWGI7Ap2As6zN6/E6YvDqb7w2cYRMSGSQ3qfxu8HQ==",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@emotion/cache": {
"version": "10.0.29",
"resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-10.0.29.tgz",
"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"
}
},
"node_modules/@emotion/core": {
"version": "10.3.1",
"resolved": "https://registry.npmjs.org/@emotion/core/-/core-10.3.1.tgz",
"integrity": "sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==",
"dependencies": {
"@babel/runtime": "^7.5.5",
"@emotion/cache": "^10.0.27",
"@emotion/css": "^10.0.27",
"@emotion/serialize": "^0.11.15",
"@emotion/sheet": "0.9.4",
"@emotion/utils": "0.11.3"
},
"peerDependencies": {
"react": ">=16.3.0"
}
},
"node_modules/@emotion/css": {
"version": "10.0.27",
"resolved": "https://registry.npmjs.org/@emotion/css/-/css-10.0.27.tgz",
"integrity": "sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==",
"dependencies": {
"@emotion/serialize": "^0.11.15",
"@emotion/utils": "0.11.3",
"babel-plugin-emotion": "^10.0.27"
}
},
"node_modules/@emotion/hash": {
"version": "0.8.0",
"resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz",
"integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow=="
},
"node_modules/@emotion/is-prop-valid": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz",
"integrity": "sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==",
"dependencies": {
"@emotion/memoize": "^0.8.1"
}
},
"node_modules/@emotion/memoize": {
"version": "0.8.1",
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz",
"integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA=="
},
"node_modules/@emotion/serialize": {
"version": "0.11.16",
"resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz",
"integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==",
"dependencies": {
"@emotion/hash": "0.8.0",
"@emotion/memoize": "0.7.4",
"@emotion/unitless": "0.7.5",
"@emotion/utils": "0.11.3",
"csstype": "^2.5.7"
}
},
"node_modules/@emotion/serialize/node_modules/@emotion/memoize": {
"version": "0.7.4",
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz",
"integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw=="
},
"node_modules/@emotion/serialize/node_modules/csstype": {
"version": "2.6.21",
"resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.21.tgz",
"integrity": "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w=="
},
"node_modules/@emotion/sheet": {
"version": "0.9.4",
"resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-0.9.4.tgz",
"integrity": "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA=="
},
"node_modules/@emotion/stylis": {
"version": "0.8.5",
"resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz",
"integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ=="
},
"node_modules/@emotion/unitless": {
"version": "0.7.5",
"resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz",
"integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg=="
},
"node_modules/@emotion/utils": {
"version": "0.11.3",
"resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz",
"integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw=="
},
"node_modules/@emotion/weak-memoize": {
"version": "0.2.5",
"resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz",
"integrity": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA=="