-
Notifications
You must be signed in to change notification settings - Fork 2
/
package-lock.json
22834 lines (22834 loc) · 873 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": "commerce-integration-starter-kit",
"version": "1.0.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "commerce-integration-starter-kit",
"version": "1.0.2",
"license": "Apache-2.0",
"dependencies": {
"@adobe/aio-lib-ims": "^7.0.1",
"@adobe/aio-lib-state": "^3.0.2",
"@adobe/aio-sdk": "^5.0.1",
"@adobe/exc-app": "^1.4.1",
"@adobe/generator-add-action-generic": "^1.0.1",
"@adobe/generator-add-web-assets-exc-react": "^1.0.2",
"@adobe/generator-app-events-generic": "^2.0.1",
"@adobe/react-spectrum": "^3.35.1",
"@spectrum-icons/workflow": "^4.2.12",
"ajv": "^8.16.0",
"cloudevents": "^8.0.0",
"core-js": "^3.37.1",
"dotenv": "^16.4.5",
"got": "^11.8.5",
"node-fetch": "^2.7.0",
"oauth-1.0a": "^2.2.6",
"openwhisk": "^3.21.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-router-dom": "^6.23.1",
"regenerator-runtime": "^0.14.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^4.0.0",
"@babel/core": "^7.24.7",
"@babel/plugin-transform-react-jsx": "^7.24.7",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.24.7",
"@openwhisk/wskdebug": "^1.4.0",
"follow-redirects": ">=1.15.6",
"jest": "^29.7.0",
"stdout-stderr": "^0.1.13"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-lib-analytics": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-analytics/-/aio-lib-analytics-4.0.1.tgz",
"integrity": "sha512-cIANwhP5sbFjPVDuk13ixCje2065ejcmjfKHR/YYofN79zoOY9JOaf/p3bWgrPD3o8AlO4CKCCdgbTPUI4AypA==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"swagger-client": "^3.19.10"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-lib-campaign-standard": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-campaign-standard/-/aio-lib-campaign-standard-4.0.1.tgz",
"integrity": "sha512-UrZVOtQtANdcJoOl5BGihNl/YjcpIsj8uXk+/Wd/wdHvO1pF3DSPH2BKo2c0syfq2A9rTF5mRr8CTvBUZzFrBQ==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-core-networking": "^5",
"swagger-client": "3.20.0"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-ast": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-ast/-/apidom-ast-0.99.2.tgz",
"integrity": "sha512-poNlXWAU2XBl192+lo5sC6loB3qGvwK30V1pta6Hs200KeTayVsMMRL4R6wDDYEtsbv7M3vQaFKcRGbYUk/SgA==",
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-error": "^0.99.0",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"unraw": "^3.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-core": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-core/-/apidom-core-0.99.2.tgz",
"integrity": "sha512-deudG9eCxqgPnZyIcZzpmDxF0cja0hdPFS2hB0Op6aB4TKc9mOP1+1iEIDI3Tlx/nzgIayyAl1bblyhK3yH5fQ==",
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-ast": "^0.99.2",
"@swagger-api/apidom-error": "^0.99.0",
"@types/ramda": "~0.29.6",
"minim": "~0.23.8",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"short-unique-id": "^5.0.2",
"stampit": "^4.3.2"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-error": {
"version": "0.99.0",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-error/-/apidom-error-0.99.0.tgz",
"integrity": "sha512-ZdFdn+GeIo23X2GKFrfH4Y5KY8yTzVF1l/Mqjs8+nD30LTbYg6f3ITHn429dk8fDT3NT69fG+gGm60FAFaKkeQ==",
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-json-pointer": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-json-pointer/-/apidom-json-pointer-0.99.2.tgz",
"integrity": "sha512-bZENmE3H2si1yP38VLUAdhoMWNxkh98+/dCOESaw3R5zXHG04di3ShbYsCG0StkigF+eCfCdaj6XoikQOGSkiA==",
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-error": "^0.99.0",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-ns-api-design-systems": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-ns-api-design-systems/-/apidom-ns-api-design-systems-0.99.2.tgz",
"integrity": "sha512-854ioZ/FB5DNiJcMinD9/a6dj6h/poOsKcb4POhPTzMSM0fHLIQUp//Ufhx7qL6qsepwtLapkgZ3/hAYN7lnBg==",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-error": "^0.99.0",
"@swagger-api/apidom-ns-openapi-3-1": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"ts-mixer": "^6.0.3"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-ns-asyncapi-2": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-ns-asyncapi-2/-/apidom-ns-asyncapi-2-0.99.2.tgz",
"integrity": "sha512-HF38kCszKYQqhQ6VMEMqd5r7gPGBRpHwPcoYaRJSDeOST/qLLG78xpoCJKQEyL3PQprea0gXKz1LG1uslDHgtQ==",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-json-schema-draft-7": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"ts-mixer": "^6.0.3"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-ns-json-schema-draft-4": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-ns-json-schema-draft-4/-/apidom-ns-json-schema-draft-4-0.99.2.tgz",
"integrity": "sha512-vgCRaqDLI/SmTECZeKO47RGFFx6MCpOcbSm60sV0/ZJxeK+TgkNjIRJTyuRQNts44K863CWgY+bwzzn1zhNqUg==",
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-ast": "^0.99.2",
"@swagger-api/apidom-core": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"ts-mixer": "^6.0.4"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-ns-json-schema-draft-6": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-ns-json-schema-draft-6/-/apidom-ns-json-schema-draft-6-0.99.2.tgz",
"integrity": "sha512-ayKGsd65a6p/k4s5L2el+vMoMi8kc/bLXVszWszFDET1eZNvhKwEMLylGzKMfnwAFgpj+kJOKn4MZsD6PK6U/A==",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-error": "^0.99.0",
"@swagger-api/apidom-ns-json-schema-draft-4": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"ts-mixer": "^6.0.4"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-ns-json-schema-draft-7": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-ns-json-schema-draft-7/-/apidom-ns-json-schema-draft-7-0.99.2.tgz",
"integrity": "sha512-Rn2YeQKxj6hSijQAzGRRxMYDRIedqHjE69z9xigVbvm+iDXxLJIwasuzFa7BIMRDZF5eAJkBPHXTiU9cXVsl6w==",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-error": "^0.99.0",
"@swagger-api/apidom-ns-json-schema-draft-6": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"ts-mixer": "^6.0.4"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-ns-openapi-2": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-ns-openapi-2/-/apidom-ns-openapi-2-0.99.2.tgz",
"integrity": "sha512-4YlBvMkxSJIWrOQmsHiVuQ2VkbcWgUnOm7uiRq+8d88ur9mKI5XbP5iUvxCASuONmCqlaSU2+qoM1qesy73XPw==",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-error": "^0.99.0",
"@swagger-api/apidom-ns-json-schema-draft-4": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"ts-mixer": "^6.0.3"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-ns-openapi-3-0": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-ns-openapi-3-0/-/apidom-ns-openapi-3-0-0.99.2.tgz",
"integrity": "sha512-fcT597Ty3kqTkoBr1jeZ3Lfbu0a+CKd1l2ojY6RBF/5+dWNux+CRZ9qosax2XZbN+nJhSdvGLLvGvuKaV3Ybug==",
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-error": "^0.99.0",
"@swagger-api/apidom-ns-json-schema-draft-4": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"ts-mixer": "^6.0.3"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-ns-openapi-3-1": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-ns-openapi-3-1/-/apidom-ns-openapi-3-1-0.99.2.tgz",
"integrity": "sha512-ubO8vi1dYpIV2a3IKhTkBCf125udoCeUZIc9wrhOFwwHHIKeInGR5L6yxlNhOQm0/doYCth77vEqcuTBpxaIrw==",
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-ast": "^0.99.2",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-openapi-3-0": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"ts-mixer": "^6.0.3"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-ns-workflows-1": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-ns-workflows-1/-/apidom-ns-workflows-1-0.99.2.tgz",
"integrity": "sha512-lm8G7cbCRXukN4UOb/bPszUiSbvN1ymvwQ2PEkyZN+DzJvYfgRuAxXt7xd2EDKJcxeH4igpAnkKoIoBoSOHg+w==",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-openapi-3-1": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"ts-mixer": "^6.0.3"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-api-design-systems-json": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-api-design-systems-json/-/apidom-parser-adapter-api-design-systems-json-0.99.2.tgz",
"integrity": "sha512-7WPbiUJEWggVmxsssFfW/8JGk8Yu4C9ELneh805kMsgl/DOm6hcHxqT5gXXSwamH0ZQlTmSnHl2OZSlG+U5KKQ==",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-api-design-systems": "^0.99.2",
"@swagger-api/apidom-parser-adapter-json": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-api-design-systems-yaml": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-api-design-systems-yaml/-/apidom-parser-adapter-api-design-systems-yaml-0.99.2.tgz",
"integrity": "sha512-ezOA1fjBAQPQ5X0DGYnuFyZMBSBCsaT6k9KDRr7B37Do9yj8YKa/lTlg5usXOrcLm4VgcyJGTKhAJi9kfzCKcA==",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-api-design-systems": "^0.99.2",
"@swagger-api/apidom-parser-adapter-yaml-1-2": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-asyncapi-json-2": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-asyncapi-json-2/-/apidom-parser-adapter-asyncapi-json-2-0.99.2.tgz",
"integrity": "sha512-b1ncaIc4dD0FGqty3iRCDUA/uHdd7nH271C06blQ+S9Id4D/xXxzd84z8LeNIJNLhCcnueuMKgUkGzvXP+raAA==",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-asyncapi-2": "^0.99.2",
"@swagger-api/apidom-parser-adapter-json": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-asyncapi-yaml-2": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-asyncapi-yaml-2/-/apidom-parser-adapter-asyncapi-yaml-2-0.99.2.tgz",
"integrity": "sha512-NuwuwdORyZPhEpxwyEgslyGfVnwIuyDvF5TDT0cLCMOIFDqbE/n77c4FAh/nQUARDEXRthiDb5pdMo/+rOxjFg==",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-asyncapi-2": "^0.99.2",
"@swagger-api/apidom-parser-adapter-yaml-1-2": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-json": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-json/-/apidom-parser-adapter-json-0.99.2.tgz",
"integrity": "sha512-wy2WF71bLX1wEJkgmPRCEnXicV155KCelPQhCtzAGGo/B3+OuhknovBWXZNStvoJqZ/2A4a5pvYrgHoVoIKchg==",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-ast": "^0.99.2",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-error": "^0.99.0",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"tree-sitter": "=0.20.4",
"tree-sitter-json": "=0.20.2",
"web-tree-sitter": "=0.20.3"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-openapi-json-2": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-openapi-json-2/-/apidom-parser-adapter-openapi-json-2-0.99.2.tgz",
"integrity": "sha512-z+ATszNWaO2JlixM9h4QpTAW2fE5nPCY4IDcScuWbch8gtKBmv61+53nahYb7tc3W/X0mMqhc1LyTCy5QC2L/w==",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-openapi-2": "^0.99.2",
"@swagger-api/apidom-parser-adapter-json": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-openapi-json-3-0": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-openapi-json-3-0/-/apidom-parser-adapter-openapi-json-3-0-0.99.2.tgz",
"integrity": "sha512-78PFDsF67tWDjPCGAD9cNHage8p5Vs2+zili1AF2zch3JkJA/KxBt+5va4A8w1fYaUaXi8LnMkM8VvEIAsNaOw==",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-openapi-3-0": "^0.99.2",
"@swagger-api/apidom-parser-adapter-json": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-openapi-json-3-1": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-openapi-json-3-1/-/apidom-parser-adapter-openapi-json-3-1-0.99.2.tgz",
"integrity": "sha512-WQmm14C0EH0dcMzvgrGPeLkWKXyFwyunK9rrRt7xRLn8sL1Em0dC31hiVdgypo3DLrz9YW3PStpSQjEedJaWUQ==",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-openapi-3-1": "^0.99.2",
"@swagger-api/apidom-parser-adapter-json": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-openapi-yaml-2": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-openapi-yaml-2/-/apidom-parser-adapter-openapi-yaml-2-0.99.2.tgz",
"integrity": "sha512-rEoE54T8KKRxtdxXgvaYba+GX8853mwcw5nzdrrvOy2tNKqsJANPeJcrQmjVYqJX7SU0HuZPK3zBvyqMyKoNsg==",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-openapi-2": "^0.99.2",
"@swagger-api/apidom-parser-adapter-yaml-1-2": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-openapi-yaml-3-0": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-openapi-yaml-3-0/-/apidom-parser-adapter-openapi-yaml-3-0-0.99.2.tgz",
"integrity": "sha512-l7ve45cfAj+imE8flypjdo49zpfp0m29stpOO/q2fCD5/46wT3Z4Ve3aKhil8/TRFEX26VOKoYVNjpeUWzUMaw==",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-openapi-3-0": "^0.99.2",
"@swagger-api/apidom-parser-adapter-yaml-1-2": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-openapi-yaml-3-1": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-openapi-yaml-3-1/-/apidom-parser-adapter-openapi-yaml-3-1-0.99.2.tgz",
"integrity": "sha512-1ab06o/M6MAJ0Js4C1bifpj/R0T0mw26Qk4dR7qKzel9dDuEkIRMQF7JHnf2pojZE+aR59Eb4iAMKmxzokHZdA==",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-openapi-3-1": "^0.99.2",
"@swagger-api/apidom-parser-adapter-yaml-1-2": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-workflows-json-1": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-workflows-json-1/-/apidom-parser-adapter-workflows-json-1-0.99.2.tgz",
"integrity": "sha512-VsFVmwTX/OfsXyBmIEp5Y+adqBF4Cj/cM/55KPM3mIEmKbc+PK3M08TIotMk1FdCiTafe+I28OZL+WMVujNm1A==",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-workflows-1": "^0.99.2",
"@swagger-api/apidom-parser-adapter-json": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-workflows-yaml-1": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-workflows-yaml-1/-/apidom-parser-adapter-workflows-yaml-1-0.99.2.tgz",
"integrity": "sha512-yK+48YcllFc8mY711ZJ7uTfPVZmJdujIHbvGLOMxMODmETkZlEjfoTAwNTWvutcuA6cxK70tKUD8vz5572ALQA==",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-ns-workflows-1": "^0.99.2",
"@swagger-api/apidom-parser-adapter-yaml-1-2": "^0.99.2",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-parser-adapter-yaml-1-2": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-parser-adapter-yaml-1-2/-/apidom-parser-adapter-yaml-1-2-0.99.2.tgz",
"integrity": "sha512-eU6Rd58WzzcOYOajwp9UCURhXVO8SUCrau14W6BuF1DbJCr85FmOigy4yu2b9UWsK44ZPzH8KeyhSYwTkqkgLA==",
"optional": true,
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-ast": "^0.99.2",
"@swagger-api/apidom-core": "^0.99.2",
"@swagger-api/apidom-error": "^0.99.0",
"@types/ramda": "~0.29.6",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"tree-sitter": "=0.20.4",
"tree-sitter-yaml": "=0.5.0",
"web-tree-sitter": "=0.20.3"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@swagger-api/apidom-reference": {
"version": "0.99.2",
"resolved": "https://registry.npmjs.org/@swagger-api/apidom-reference/-/apidom-reference-0.99.2.tgz",
"integrity": "sha512-QwAnCCEUbicPAVPWYOOpSI8rcj2e7TTybn1chGfdogV+NMLprGXBk/A86hO9CaSLMXkCA2rERUznSNSZWC996g==",
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"@swagger-api/apidom-core": "^0.99.2",
"@types/ramda": "~0.29.6",
"axios": "^1.4.0",
"minimatch": "^7.4.3",
"process": "^0.11.10",
"ramda": "~0.30.0",
"ramda-adjunct": "^5.0.0",
"stampit": "^4.3.2"
},
"optionalDependencies": {
"@swagger-api/apidom-error": "^0.99.0",
"@swagger-api/apidom-json-pointer": "^0.99.2",
"@swagger-api/apidom-ns-asyncapi-2": "^0.99.2",
"@swagger-api/apidom-ns-openapi-2": "^0.99.2",
"@swagger-api/apidom-ns-openapi-3-0": "^0.99.2",
"@swagger-api/apidom-ns-openapi-3-1": "^0.99.2",
"@swagger-api/apidom-ns-workflows-1": "^0.99.2",
"@swagger-api/apidom-parser-adapter-api-design-systems-json": "^0.99.2",
"@swagger-api/apidom-parser-adapter-api-design-systems-yaml": "^0.99.2",
"@swagger-api/apidom-parser-adapter-asyncapi-json-2": "^0.99.2",
"@swagger-api/apidom-parser-adapter-asyncapi-yaml-2": "^0.99.2",
"@swagger-api/apidom-parser-adapter-json": "^0.99.2",
"@swagger-api/apidom-parser-adapter-openapi-json-2": "^0.99.2",
"@swagger-api/apidom-parser-adapter-openapi-json-3-0": "^0.99.2",
"@swagger-api/apidom-parser-adapter-openapi-json-3-1": "^0.99.2",
"@swagger-api/apidom-parser-adapter-openapi-yaml-2": "^0.99.2",
"@swagger-api/apidom-parser-adapter-openapi-yaml-3-0": "^0.99.2",
"@swagger-api/apidom-parser-adapter-openapi-yaml-3-1": "^0.99.2",
"@swagger-api/apidom-parser-adapter-workflows-json-1": "^0.99.2",
"@swagger-api/apidom-parser-adapter-workflows-yaml-1": "^0.99.2",
"@swagger-api/apidom-parser-adapter-yaml-1-2": "^0.99.2"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/@types/ramda": {
"version": "0.29.12",
"resolved": "https://registry.npmjs.org/@types/ramda/-/ramda-0.29.12.tgz",
"integrity": "sha512-sgIEjpJhdQPB52gDF4aphs9nl0xe54CR22DPdWqT8gQHjZYmVApgA0R3/CpMbl0Y8az2TEZrPNL2zy0EvjbkLA==",
"dependencies": {
"types-ramda": "^0.29.10"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/brace-expansion": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
"dependencies": {
"balanced-match": "^1.0.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/cookie": {
"version": "0.5.0",
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz",
"integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==",
"engines": {
"node": ">= 0.6"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/form-data-encoder": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-1.9.0.tgz",
"integrity": "sha512-rahaRMkN8P8d/tgK/BLPX+WBVM27NbvdXBxqQujBtkDAIFspaRqN7Od7lfdGQA6KAD+f82fYCLBq1ipvcu8qLw=="
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/minimatch": {
"version": "7.4.6",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.6.tgz",
"integrity": "sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==",
"dependencies": {
"brace-expansion": "^2.0.1"
},
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/swagger-client": {
"version": "3.20.0",
"resolved": "https://registry.npmjs.org/swagger-client/-/swagger-client-3.20.0.tgz",
"integrity": "sha512-5RLge2NIE1UppIT/AjUPEceT05hcBAzjiQkrXJYjpxsbFV/UDH3pp+fsrWbAeuZtgRdhNB9KDo+szLoUpzkydQ==",
"dependencies": {
"@babel/runtime-corejs3": "^7.20.13",
"@swagger-api/apidom-core": ">=0.74.1 <1.0.0",
"@swagger-api/apidom-json-pointer": ">=0.74.1 <1.0.0",
"@swagger-api/apidom-ns-openapi-3-1": ">=0.74.1 <1.0.0",
"@swagger-api/apidom-reference": ">=0.74.1 <1.0.0",
"cookie": "~0.5.0",
"cross-fetch": "^3.1.5",
"deepmerge": "~4.3.0",
"fast-json-patch": "^3.0.0-1",
"form-data-encoder": "^1.4.3",
"formdata-node": "^4.0.0",
"is-plain-object": "^5.0.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"qs": "^6.10.2",
"traverse": "~0.6.6",
"url": "~0.11.0"
}
},
"node_modules/@adobe/aio-lib-campaign-standard/node_modules/types-ramda": {
"version": "0.29.10",
"resolved": "https://registry.npmjs.org/types-ramda/-/types-ramda-0.29.10.tgz",
"integrity": "sha512-5PJiW/eiTPyXXBYGZOYGezMl6qj7keBiZheRwfjJZY26QPHsNrjfJnz0mru6oeqqoTHOni893Jfd6zyUXfQRWg==",
"dependencies": {
"ts-toolbelt": "^9.6.0"
}
},
"node_modules/@adobe/aio-lib-core-config": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-config/-/aio-lib-core-config-5.0.1.tgz",
"integrity": "sha512-OQmQublmy/uXM1HC6qXfxSAXEl85nExh/yiajlEfJheKuJ9iPWwVWXR5vBHVVDlOXgWEVMWRUQPMIUu1lmR5lA==",
"dependencies": {
"debug": "^4.1.1",
"deepmerge": "^4.0.0",
"dotenv": "16.3.1",
"hjson": "^3.1.2",
"js-yaml": "^4.1.0"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-lib-core-config/node_modules/dotenv": {
"version": "16.3.1",
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz",
"integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==",
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/motdotla/dotenv?sponsor=1"
}
},
"node_modules/@adobe/aio-lib-core-errors": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-errors/-/aio-lib-core-errors-4.0.1.tgz",
"integrity": "sha512-zrQm9TJh13wEHH5O2TQAUQvYGGe01R9DHzKy+b6B0URbl2lcuqXyNiUx896lpcgXD2bzUoH7ARRH97aCW2tlfw=="
},
"node_modules/@adobe/aio-lib-core-logging": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-logging/-/aio-lib-core-logging-3.0.1.tgz",
"integrity": "sha512-WvhFXy5sCIBHwGNP6QS2LiGVWeFb6vxKiZ62W0ahwN5SqHqaBoimBDvTysdH9gANGLShELPPT2gb4255sElf5w==",
"dependencies": {
"debug": "^4.1.1",
"winston": "^3.2.1"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-lib-core-networking": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-networking/-/aio-lib-core-networking-5.0.1.tgz",
"integrity": "sha512-F/RHorqDXTGuSgOrxsAI6dNEvTWWT86vArfWQPh/UJ3YuERgkgdHt9FYFcHmLARBLDqGVkRaFYbjMdL6YHetew==",
"dependencies": {
"@adobe/aio-lib-core-config": "^5.0.0",
"@adobe/aio-lib-core-errors": "^4.0.0",
"@adobe/aio-lib-core-logging": "^3.0.0",
"fetch-retry": "^5.0.4",
"http-proxy-agent": "^4.0.1",
"https-proxy-agent": "2.2.4",
"node-fetch": "^2.6.4",
"proxy-from-env": "^1.1.0"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-lib-core-tvm": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-core-tvm/-/aio-lib-core-tvm-4.0.2.tgz",
"integrity": "sha512-i69Wh8j8PSTH06gDN/UqTu6e7258Hs0k18Cz51aYYeeg7NIWeqzQEnys9kNp8gcV75GzQLOYfzhRgVHRcxWHLQ==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-core-networking": "^5",
"@adobe/aio-lib-env": "^3",
"fs-extra": "^11.1.1",
"joi": "^17.4.2",
"lodash.clonedeep": "^4.5.0",
"upath": "^2.0.1"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-lib-customer-profile": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-customer-profile/-/aio-lib-customer-profile-3.0.1.tgz",
"integrity": "sha512-OnfrzIVd9GopPvuTM7mQmBZi/FNFd9/N403r42RrQXjcQnO8juoadlvhjaQMeb9vrAPZ4VO1PxyTCWyR/t2W4g==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"change-case": "^4.1.1",
"swagger-client": "^3.19.10",
"uuid": "^9.0.0"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-lib-customer-profile/node_modules/uuid": {
"version": "9.0.1",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz",
"integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==",
"funding": [
"https://github.com/sponsors/broofa",
"https://github.com/sponsors/ctavan"
],
"bin": {
"uuid": "dist/bin/uuid"
}
},
"node_modules/@adobe/aio-lib-env": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-env/-/aio-lib-env-3.0.1.tgz",
"integrity": "sha512-UaLosV8jBowEA2ho4BNmWuHhrNCFbx26kJAr2SAIdEm4lZ/D8av8FUSMOEyAKJ/dfO2HCnLKMy77ie2AU7HI3g==",
"dependencies": {
"@adobe/aio-lib-core-config": "^5.0.0",
"@adobe/aio-lib-core-logging": "^3.0.0"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-lib-events": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-events/-/aio-lib-events-4.0.1.tgz",
"integrity": "sha512-n6y7daoHoz79o06+kIJzHcOTbD7j9jt2YCT7njtms6Aoj8fbkiBuGBIjCx+XxXy1TJJxfwUrL5TZjbzeroHiXw==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-core-networking": "^5",
"@adobe/aio-lib-env": "^3",
"@adobe/aio-lib-state": "^3",
"crypto-js": "^4.0.0",
"http-link-header": "^1.0.2",
"node-fetch": "^2.6.0",
"rxjs": "^7.8.1",
"valid-url": "^1.0.9"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-lib-files": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-files/-/aio-lib-files-4.0.1.tgz",
"integrity": "sha512-WT+UFlSscl2U9+wYckGAicw3474UX65eB59YYirgwLUNQlVhH3z9AtZA5sF3zDeUEtKWT30umkFtGJkNp5Q8qA==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-core-tvm": "^4",
"@adobe/aio-lib-env": "^3.0.0",
"@azure/storage-blob": "^12.3.0",
"@types/hapi__joi": "^17.1.13",
"fs-extra": "^11.1.1",
"joi": "^17.4.2",
"lodash.clonedeep": "^4.5.0",
"mime-types": "^2.1.24",
"node-fetch": "^2.6.0",
"upath": "^1.2.0",
"uuid": "^9.0.0",
"xml-js": "^1.6.11"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-lib-files/node_modules/upath": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz",
"integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==",
"engines": {
"node": ">=4",
"yarn": "*"
}
},
"node_modules/@adobe/aio-lib-files/node_modules/uuid": {
"version": "9.0.1",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz",
"integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==",
"funding": [
"https://github.com/sponsors/broofa",
"https://github.com/sponsors/ctavan"
],
"bin": {
"uuid": "dist/bin/uuid"
}
},
"node_modules/@adobe/aio-lib-ims": {
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-ims/-/aio-lib-ims-7.0.1.tgz",
"integrity": "sha512-Xp3Zy3xh8vDSejPtFWvTr3h53eSDWQ9vQjCs7KTWDyAdS5VWPFGcrXZhiLvYz8yQCF0tlpKOIM49xbdUpB9RVA==",
"dependencies": {
"@adobe/aio-lib-core-config": "^5",
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-core-networking": "^5",
"@adobe/aio-lib-env": "^3",
"@adobe/aio-lib-ims-jwt": "^5",
"@adobe/aio-lib-ims-oauth": "^6",
"@adobe/aio-lib-state": "^3",
"form-data": "^4.0.0",
"lodash.clonedeep": "^4.5.0",
"lru-cache": "^5.1.1"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-lib-ims-jwt": {
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-ims-jwt/-/aio-lib-ims-jwt-5.0.2.tgz",
"integrity": "sha512-KaK+RB4FbfF5llYJueoOd9r6NeJp+d8pUE2QxqP6tpfr8NGt40Fw68XduQSTnPoOxKLn2piTD+IfaQ9a5teKHg==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"jsonwebtoken": "^9.0.0"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@adobe/aio-lib-ims": "^7"
}
},
"node_modules/@adobe/aio-lib-ims-oauth": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-ims-oauth/-/aio-lib-ims-oauth-6.0.2.tgz",
"integrity": "sha512-kalXk7uG6TDHZAenUurWNTK7Ywq5rduPtKw2yC6est0K9pRZH7QeEDWMVGTHq1HOFjpOVgMAUQMbcfJtutbzaA==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-env": "^3",
"open": "^8.4.2",
"ora": "^5.4.1"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@adobe/aio-lib-ims": "^7"
}
},
"node_modules/@adobe/aio-lib-state": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-state/-/aio-lib-state-3.0.2.tgz",
"integrity": "sha512-ZwZUM5jVUmI0+8GmSwQ99pZVAa9Hii9afwje8X+4+D+SVmifi8K7hndP5LXR0W/NR67oC3ceEY6Uh+KNcgJdGQ==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-core-tvm": "^4",
"@azure/cosmos": "^3.17.1",
"joi": "^17.4.2",
"lodash.clonedeep": "^4.5.0"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-lib-target": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-lib-target/-/aio-lib-target-4.0.1.tgz",
"integrity": "sha512-cBMXnFEx0UNrjxZqqEVbnzfaCxbs39l3QH8vAUN9+rmbuaDv8dJhjzLyUmIHBy3D2NsZCNKP6pEk277uYKLkLA==",
"dependencies": {
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"swagger-client": "^3.19.10"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/aio-sdk": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/@adobe/aio-sdk/-/aio-sdk-5.0.1.tgz",
"integrity": "sha512-+LvAOxIu2Incr3A5+j7AaGG0LM9AmJb/2jL9JWfgx0t3w4IHDAc0MzH9NVk3JrHIIaamnP8evCWIbyoewqLg2A==",
"dependencies": {
"@adobe/aio-lib-analytics": "^4",
"@adobe/aio-lib-campaign-standard": "^4",
"@adobe/aio-lib-customer-profile": "^3",
"@adobe/aio-lib-events": "^4",
"@adobe/aio-lib-files": "^4",
"@adobe/aio-lib-state": "^3",
"@adobe/aio-lib-target": "^4",
"@adobe/aio-sdk-core": "^3"
}
},
"node_modules/@adobe/aio-sdk-core": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@adobe/aio-sdk-core/-/aio-sdk-core-3.0.0.tgz",
"integrity": "sha512-M1or6szOAtuNN7owyTeojQ+yyaIBKa9u0hRkl0mFmv5WnO7Edfk5uP8ZBGYhfJ9XkEZz6c2NKNvR36dqrrmDnA==",
"dependencies": {
"@adobe/aio-lib-core-config": "^5",
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-core-networking": "^5",
"@adobe/aio-lib-core-tvm": "^4"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/eslint-config-aio-lib-config": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/@adobe/eslint-config-aio-lib-config/-/eslint-config-aio-lib-config-4.0.0.tgz",
"integrity": "sha512-PHHI3x4yIZ6XTcX8rWKiAmPc6S+uMO3TLuX2FzlEu0pi1OAnAuuBktoWQRcCIkdkNrsd1gpJr7tvvSjUbrHi3w==",
"dev": true,
"peerDependencies": {
"eslint": "^8",
"eslint-config-standard": "^17",
"eslint-plugin-import": "^2",
"eslint-plugin-jest": "^27",
"eslint-plugin-jsdoc": "^48",
"eslint-plugin-n": "^15.7",
"eslint-plugin-node": "^11",
"eslint-plugin-promise": "^6"
}
},
"node_modules/@adobe/exc-app": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/@adobe/exc-app/-/exc-app-1.4.1.tgz",
"integrity": "sha512-lPBOhKgOD3F8FXzgfFocxlmN7gc88WHEKlNmysfWhqLl14xEffie6wAlFpyNRariAS0wpK280Rm4WPYd64KRKA==",
"peerDependencies": {
"@apollo/client": "^3.8.9",
"graphql-tag": "^2.12.6"
}
},
"node_modules/@adobe/generator-add-action-generic": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@adobe/generator-add-action-generic/-/generator-add-action-generic-1.0.1.tgz",
"integrity": "sha512-9NfmnFHVNdDKbDdBB4QcXPS78vPvUfSqO2l3PkiGlvEZEQu/iUXGaRUGoOjei4gXlhJ9c20/Q5BcT09HSL1/bQ==",
"dependencies": {
"@adobe/generator-app-common-lib": "^2",
"lodash.camelcase": "^4.3.0",
"upath": "^2.0.1",
"yeoman-generator": "^5.4.2"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/generator-add-events-generic": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@adobe/generator-add-events-generic/-/generator-add-events-generic-2.0.1.tgz",
"integrity": "sha512-EdHntPhUhFMsk4HCQVvnd0CWShCU8m1IUAwVf3KPWUJ17kDxvZ0pdYWDI6+6/YeQvDmPWUzMeRQ2YDBA7J6f2Q==",
"dependencies": {
"@adobe/generator-app-common-lib": "^2",
"upath": "^1.2.0",
"yeoman-environment": "^3",
"yeoman-generator": "^5"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/generator-add-events-generic/node_modules/upath": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz",
"integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==",
"engines": {
"node": ">=4",
"yarn": "*"
}
},
"node_modules/@adobe/generator-add-web-assets-exc-react": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@adobe/generator-add-web-assets-exc-react/-/generator-add-web-assets-exc-react-1.0.2.tgz",
"integrity": "sha512-Hu6S5dgfydJqGKR22466gf3o07IhiK0TMLMGC0DsZYzZ/MtO1kd1MfV9CWW6pPP192ndGa9rKrEPw8iR37KB9Q==",
"dependencies": {
"@adobe/generator-app-common-lib": "^2",
"lodash.camelcase": "^4.3.0",
"upath": "^2.0.1",
"yeoman-generator": "^5.4.2"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/generator-app-common-lib": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/@adobe/generator-app-common-lib/-/generator-app-common-lib-2.0.3.tgz",
"integrity": "sha512-QYtBsOes1aRTe/5y/+e7r3A+fDV+ju67iPlUMgNMAVa2mhHxpJ+1nJtu3YfRNVlSKRn+dBKvQ3FXPYY9srfM4A==",
"dependencies": {
"@adobe/aio-lib-core-config": "^5",
"@adobe/aio-lib-env": "^3",
"@adobe/aio-lib-events": "^4",
"@adobe/aio-lib-ims": "^7",
"js-yaml": "^4.1.0",
"lodash.camelcase": "^4.3.0",
"lodash.clonedeep": "^4.5.0",
"process": "^0.11.10",
"upath": "^2.0.1",
"yeoman-generator": "^5.5.2"
},
"engines": {
"node": ">=18"
}
},
"node_modules/@adobe/generator-app-events-generic": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@adobe/generator-app-events-generic/-/generator-app-events-generic-2.0.1.tgz",
"integrity": "sha512-5T5jGpEcb+A3AjWgTrkxrjL0vxegYirp1WHqhst4zYUTwFF0PUFlUcD6ZdBat836CRxylsyrMh78+LbN6+mhaA==",
"dependencies": {
"@adobe/generator-add-events-generic": "^2",
"@adobe/generator-app-common-lib": "^2",
"upath": "^1.2.0",
"yeoman-environment": "^3",
"yeoman-generator": "^5"
},
"engines": {