-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
19530 lines (19530 loc) · 701 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": "svelte-skeleton-starwars",
"version": "0.0.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "svelte-skeleton-starwars",
"version": "0.0.1",
"dependencies": {
"aws-amplify": "^5.2.4"
},
"devDependencies": {
"@floating-ui/dom": "^1.2.7",
"@skeletonlabs/skeleton": "^1.5.1",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/adapter-static": "^2.0.2",
"@sveltejs/kit": "^1.5.0",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte": "^2.26.0",
"highlight.js": "^11.8.0",
"postcss": "^8.4.23",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.8.1",
"svelte": "^3.54.0",
"svelte-check": "^3.0.1",
"sveltekit-adapter-aws": "^4.5.1",
"tailwindcss": "^3.3.2",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^4.3.0",
"vitest": "^0.25.3"
}
},
"node_modules/@alloc/quick-lru": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
"integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
"dev": true,
"engines": {
"node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@ampproject/remapping": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz",
"integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==",
"peer": true,
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.0",
"@jridgewell/trace-mapping": "^0.3.9"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@aws-amplify/analytics": {
"version": "6.1.1",
"resolved": "https://registry.npmjs.org/@aws-amplify/analytics/-/analytics-6.1.1.tgz",
"integrity": "sha512-fWjlDGb7CEpFiPHogafgLVIutZSOM3gIDh3oiZms9Uw/JSz2idFM0AAEUz/rp0pREdHQJZWyn2eV88Op05fWNA==",
"dependencies": {
"@aws-amplify/cache": "5.0.33",
"@aws-amplify/core": "5.3.1",
"@aws-sdk/client-firehose": "3.6.1",
"@aws-sdk/client-kinesis": "3.6.1",
"@aws-sdk/client-personalize-events": "3.6.1",
"@aws-sdk/client-pinpoint": "3.6.1",
"@aws-sdk/util-utf8-browser": "3.6.1",
"lodash": "^4.17.20",
"tslib": "^1.8.0",
"uuid": "^3.2.1"
}
},
"node_modules/@aws-amplify/analytics/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-amplify/api": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/@aws-amplify/api/-/api-5.1.1.tgz",
"integrity": "sha512-wF3U02ux8VZBvefN9u9ZceoE2zMWJf+rwOGEkegzFdGPGA3wJRO3yXgmYwCvNLNqa/Bpv/sli8E/sLhRklUCew==",
"dependencies": {
"@aws-amplify/api-graphql": "3.2.1",
"@aws-amplify/api-rest": "3.1.1",
"tslib": "^1.8.0"
}
},
"node_modules/@aws-amplify/api-graphql": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@aws-amplify/api-graphql/-/api-graphql-3.2.1.tgz",
"integrity": "sha512-2FkzRFENmufSTY2N6dmJpCgbWCNjMNU3wv080c0yR2BQA0qE8+NcfWZcoe5s8YoDoVLoDHLjt0BVQIn5aFmRpg==",
"dependencies": {
"@aws-amplify/api-rest": "3.1.1",
"@aws-amplify/auth": "5.3.7",
"@aws-amplify/cache": "5.0.33",
"@aws-amplify/core": "5.3.1",
"@aws-amplify/pubsub": "5.1.16",
"graphql": "15.8.0",
"tslib": "^1.8.0",
"uuid": "^3.2.1",
"zen-observable-ts": "0.8.19"
}
},
"node_modules/@aws-amplify/api-graphql/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-amplify/api-rest": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/@aws-amplify/api-rest/-/api-rest-3.1.1.tgz",
"integrity": "sha512-beRYfsqoRUsWLJdLoVf3YFo7AacdQgTOdGfOvBA1lBSr966cSEbXP51Uma7/bkhKZ09TlZo5jGPzB+NQBQnjKg==",
"dependencies": {
"@aws-amplify/core": "5.3.1",
"axios": "0.26.0",
"tslib": "^1.8.0"
}
},
"node_modules/@aws-amplify/api-rest/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-amplify/api/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-amplify/auth": {
"version": "5.3.7",
"resolved": "https://registry.npmjs.org/@aws-amplify/auth/-/auth-5.3.7.tgz",
"integrity": "sha512-8Er/ZEVbDwuHM52YDSQvl3X9UTNRSFd442zpBDznkDcj1WslikfGrX3L0u74fdi0+NQZ5d1EBUh6zpxnbJbP2Q==",
"dependencies": {
"@aws-amplify/core": "5.3.1",
"amazon-cognito-identity-js": "6.2.0",
"tslib": "^1.8.0"
}
},
"node_modules/@aws-amplify/auth/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-amplify/cache": {
"version": "5.0.33",
"resolved": "https://registry.npmjs.org/@aws-amplify/cache/-/cache-5.0.33.tgz",
"integrity": "sha512-NWP8M1VcnNF74SlgSxmrxj4ErKHw5H5Wfao67k9odd5JqNFxtDWcU6qkCNip6fk0jEyfU2sh8BdRPcBkZIx+vw==",
"dependencies": {
"@aws-amplify/core": "5.3.1",
"tslib": "^1.8.0"
}
},
"node_modules/@aws-amplify/cache/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-amplify/core": {
"version": "5.3.1",
"resolved": "https://registry.npmjs.org/@aws-amplify/core/-/core-5.3.1.tgz",
"integrity": "sha512-BQAYk5rq20P1+X4M1LSlAKxzrGTb5RbhbWuwmsOGLAAvfZGqGsApW5Bjfw/pH0Ix9KuWnMvecfzWTovgOcpkoA==",
"dependencies": {
"@aws-crypto/sha256-js": "1.2.2",
"@aws-sdk/client-cloudwatch-logs": "3.6.1",
"@aws-sdk/client-cognito-identity": "3.6.1",
"@aws-sdk/credential-provider-cognito-identity": "3.6.1",
"@aws-sdk/types": "3.6.1",
"@aws-sdk/util-hex-encoding": "3.6.1",
"react-native-url-polyfill": "^1.3.0",
"tslib": "^1.8.0",
"universal-cookie": "^4.0.4",
"zen-observable-ts": "0.8.19"
}
},
"node_modules/@aws-amplify/core/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-amplify/datastore": {
"version": "4.4.1",
"resolved": "https://registry.npmjs.org/@aws-amplify/datastore/-/datastore-4.4.1.tgz",
"integrity": "sha512-QezRwsgQ2Gt5B1NcYlfNMYfh8b0HQ+DsGf3e+IvAFVX1gxntqydz2nZKvjbFexpaiaimDmRGR5sslX94AEoLMA==",
"dependencies": {
"@aws-amplify/api": "5.1.1",
"@aws-amplify/auth": "5.3.7",
"@aws-amplify/core": "5.3.1",
"@aws-amplify/pubsub": "5.1.16",
"amazon-cognito-identity-js": "6.2.0",
"idb": "5.0.6",
"immer": "9.0.6",
"ulid": "2.3.0",
"uuid": "3.4.0",
"zen-observable-ts": "0.8.19",
"zen-push": "0.2.1"
}
},
"node_modules/@aws-amplify/geo": {
"version": "2.0.33",
"resolved": "https://registry.npmjs.org/@aws-amplify/geo/-/geo-2.0.33.tgz",
"integrity": "sha512-Ap5oAfoOEGvo3Rjnf9txhLYOpPH4SGbKdxfTAi57+hSbi6JXlm2w9wR87mR2RcuJMGZvW4qWSdFQ3JBqQrB1/g==",
"dependencies": {
"@aws-amplify/core": "5.3.1",
"@aws-sdk/client-location": "3.186.1",
"@turf/boolean-clockwise": "6.5.0",
"camelcase-keys": "6.2.2",
"tslib": "^1.8.0"
}
},
"node_modules/@aws-amplify/geo/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-amplify/interactions": {
"version": "5.0.33",
"resolved": "https://registry.npmjs.org/@aws-amplify/interactions/-/interactions-5.0.33.tgz",
"integrity": "sha512-Uvy6tjQe9iAW2Sn/Vgvd2fuz3+QbvM6uAhrsCYuO4RCHI+vz7BGrrLa19AHtK1zi1bGoG9oN0VY52USP6HS6UQ==",
"dependencies": {
"@aws-amplify/core": "5.3.1",
"@aws-sdk/client-lex-runtime-service": "3.186.1",
"@aws-sdk/client-lex-runtime-v2": "3.186.1",
"base-64": "1.0.0",
"fflate": "0.7.3",
"pako": "2.0.4",
"tslib": "^1.8.0"
}
},
"node_modules/@aws-amplify/interactions/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-amplify/notifications": {
"version": "1.1.7",
"resolved": "https://registry.npmjs.org/@aws-amplify/notifications/-/notifications-1.1.7.tgz",
"integrity": "sha512-lO1pj4eYDnr2Knba/jpWmdvrwL5AzcL2NGWU+TIIUat+lqmfugPnwGuElzXng1fVMOYQhWLPPDLD3RO7qMcOdQ==",
"dependencies": {
"@aws-amplify/cache": "5.0.33",
"@aws-amplify/core": "5.3.1",
"@aws-amplify/rtn-push-notification": "1.1.1",
"@aws-sdk/client-pinpoint": "3.186.1",
"lodash": "^4.17.21",
"uuid": "^3.2.1"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-crypto/ie11-detection": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@aws-crypto/ie11-detection/-/ie11-detection-2.0.2.tgz",
"integrity": "sha512-5XDMQY98gMAf/WRTic5G++jfmS/VLM0rwpiOpaainKi4L0nqWMSB1SzsrEG5rjFZGYN6ZAefO+/Yta2dFM0kMw==",
"dependencies": {
"tslib": "^1.11.1"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-crypto/ie11-detection/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-crypto/sha256-browser": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@aws-crypto/sha256-browser/-/sha256-browser-2.0.0.tgz",
"integrity": "sha512-rYXOQ8BFOaqMEHJrLHul/25ckWH6GTJtdLSajhlqGMx0PmSueAuvboCuZCTqEKlxR8CQOwRarxYMZZSYlhRA1A==",
"dependencies": {
"@aws-crypto/ie11-detection": "^2.0.0",
"@aws-crypto/sha256-js": "^2.0.0",
"@aws-crypto/supports-web-crypto": "^2.0.0",
"@aws-crypto/util": "^2.0.0",
"@aws-sdk/types": "^3.1.0",
"@aws-sdk/util-locate-window": "^3.0.0",
"@aws-sdk/util-utf8-browser": "^3.0.0",
"tslib": "^1.11.1"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-crypto/sha256-browser/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-crypto/sha256-js": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-2.0.0.tgz",
"integrity": "sha512-VZY+mCY4Nmrs5WGfitmNqXzaE873fcIZDu54cbaDaaamsaTOP1DBImV9F4pICc3EHjQXujyE8jig+PFCaew9ig==",
"dependencies": {
"@aws-crypto/util": "^2.0.0",
"@aws-sdk/types": "^3.1.0",
"tslib": "^1.11.1"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-crypto/sha256-js/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-crypto/supports-web-crypto": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@aws-crypto/supports-web-crypto/-/supports-web-crypto-2.0.2.tgz",
"integrity": "sha512-6mbSsLHwZ99CTOOswvCRP3C+VCWnzBf+1SnbWxzzJ9lR0mA0JnY2JEAhp8rqmTE0GPFy88rrM27ffgp62oErMQ==",
"dependencies": {
"tslib": "^1.11.1"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-crypto/util": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@aws-crypto/util/-/util-2.0.2.tgz",
"integrity": "sha512-Lgu5v/0e/BcrZ5m/IWqzPUf3UYFTy/PpeED+uc9SWUR1iZQL8XXbGQg10UfllwwBryO3hFF5dizK+78aoXC1eA==",
"dependencies": {
"@aws-sdk/types": "^3.110.0",
"@aws-sdk/util-utf8-browser": "^3.0.0",
"tslib": "^1.11.1"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-crypto/util/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/abort-controller": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/abort-controller/-/abort-controller-3.186.0.tgz",
"integrity": "sha512-JFvvvtEcbYOvVRRXasi64Dd1VcOz5kJmPvtzsJ+HzMHvPbGGs/aopOJAZQJMJttzJmJwVTay0QL6yag9Kk8nYA==",
"dependencies": {
"@aws-sdk/types": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/client-pinpoint": {
"version": "3.186.1",
"resolved": "https://registry.npmjs.org/@aws-sdk/client-pinpoint/-/client-pinpoint-3.186.1.tgz",
"integrity": "sha512-oFfnV7YOb34ZwEVIOKgJg17Vrik6k09JX0tlDbFarss8HbMqVWf429o9MRv1LTcAZFHNtrB+MigiZfHxk4OHpQ==",
"dependencies": {
"@aws-crypto/sha256-browser": "2.0.0",
"@aws-crypto/sha256-js": "2.0.0",
"@aws-sdk/client-sts": "3.186.1",
"@aws-sdk/config-resolver": "3.186.0",
"@aws-sdk/credential-provider-node": "3.186.0",
"@aws-sdk/fetch-http-handler": "3.186.0",
"@aws-sdk/hash-node": "3.186.0",
"@aws-sdk/invalid-dependency": "3.186.0",
"@aws-sdk/middleware-content-length": "3.186.0",
"@aws-sdk/middleware-host-header": "3.186.0",
"@aws-sdk/middleware-logger": "3.186.0",
"@aws-sdk/middleware-recursion-detection": "3.186.0",
"@aws-sdk/middleware-retry": "3.186.0",
"@aws-sdk/middleware-serde": "3.186.0",
"@aws-sdk/middleware-signing": "3.186.0",
"@aws-sdk/middleware-stack": "3.186.0",
"@aws-sdk/middleware-user-agent": "3.186.0",
"@aws-sdk/node-config-provider": "3.186.0",
"@aws-sdk/node-http-handler": "3.186.0",
"@aws-sdk/protocol-http": "3.186.0",
"@aws-sdk/smithy-client": "3.186.0",
"@aws-sdk/types": "3.186.0",
"@aws-sdk/url-parser": "3.186.0",
"@aws-sdk/util-base64-browser": "3.186.0",
"@aws-sdk/util-base64-node": "3.186.0",
"@aws-sdk/util-body-length-browser": "3.186.0",
"@aws-sdk/util-body-length-node": "3.186.0",
"@aws-sdk/util-defaults-mode-browser": "3.186.0",
"@aws-sdk/util-defaults-mode-node": "3.186.0",
"@aws-sdk/util-user-agent-browser": "3.186.0",
"@aws-sdk/util-user-agent-node": "3.186.0",
"@aws-sdk/util-utf8-browser": "3.186.0",
"@aws-sdk/util-utf8-node": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">=12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/config-resolver": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/config-resolver/-/config-resolver-3.186.0.tgz",
"integrity": "sha512-l8DR7Q4grEn1fgo2/KvtIfIHJS33HGKPQnht8OPxkl0dMzOJ0jxjOw/tMbrIcPnr2T3Fi7LLcj3dY1Fo1poruQ==",
"dependencies": {
"@aws-sdk/signature-v4": "3.186.0",
"@aws-sdk/types": "3.186.0",
"@aws-sdk/util-config-provider": "3.186.0",
"@aws-sdk/util-middleware": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/credential-provider-env": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.186.0.tgz",
"integrity": "sha512-N9LPAqi1lsQWgxzmU4NPvLPnCN5+IQ3Ai1IFf3wM6FFPNoSUd1kIA2c6xaf0BE7j5Kelm0raZOb4LnV3TBAv+g==",
"dependencies": {
"@aws-sdk/property-provider": "3.186.0",
"@aws-sdk/types": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/credential-provider-imds": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.186.0.tgz",
"integrity": "sha512-iJeC7KrEgPPAuXjCZ3ExYZrRQvzpSdTZopYgUm5TnNZ8S1NU/4nvv5xVy61JvMj3JQAeG8UDYYgC421Foc8wQw==",
"dependencies": {
"@aws-sdk/node-config-provider": "3.186.0",
"@aws-sdk/property-provider": "3.186.0",
"@aws-sdk/types": "3.186.0",
"@aws-sdk/url-parser": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/credential-provider-ini": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.186.0.tgz",
"integrity": "sha512-ecrFh3MoZhAj5P2k/HXo/hMJQ3sfmvlommzXuZ/D1Bj2yMcyWuBhF1A83Fwd2gtYrWRrllsK3IOMM5Jr8UIVZA==",
"dependencies": {
"@aws-sdk/credential-provider-env": "3.186.0",
"@aws-sdk/credential-provider-imds": "3.186.0",
"@aws-sdk/credential-provider-sso": "3.186.0",
"@aws-sdk/credential-provider-web-identity": "3.186.0",
"@aws-sdk/property-provider": "3.186.0",
"@aws-sdk/shared-ini-file-loader": "3.186.0",
"@aws-sdk/types": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/credential-provider-node": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.186.0.tgz",
"integrity": "sha512-HIt2XhSRhEvVgRxTveLCzIkd/SzEBQfkQ6xMJhkBtfJw1o3+jeCk+VysXM0idqmXytctL0O3g9cvvTHOsUgxOA==",
"dependencies": {
"@aws-sdk/credential-provider-env": "3.186.0",
"@aws-sdk/credential-provider-imds": "3.186.0",
"@aws-sdk/credential-provider-ini": "3.186.0",
"@aws-sdk/credential-provider-process": "3.186.0",
"@aws-sdk/credential-provider-sso": "3.186.0",
"@aws-sdk/credential-provider-web-identity": "3.186.0",
"@aws-sdk/property-provider": "3.186.0",
"@aws-sdk/shared-ini-file-loader": "3.186.0",
"@aws-sdk/types": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">=12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/credential-provider-process": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.186.0.tgz",
"integrity": "sha512-ATRU6gbXvWC1TLnjOEZugC/PBXHBoZgBADid4fDcEQY1vF5e5Ux1kmqkJxyHtV5Wl8sE2uJfwWn+FlpUHRX67g==",
"dependencies": {
"@aws-sdk/property-provider": "3.186.0",
"@aws-sdk/shared-ini-file-loader": "3.186.0",
"@aws-sdk/types": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/fetch-http-handler": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.186.0.tgz",
"integrity": "sha512-k2v4AAHRD76WnLg7arH94EvIclClo/YfuqO7NoQ6/KwOxjRhs4G6TgIsAZ9E0xmqoJoV81Xqy8H8ldfy9F8LEw==",
"dependencies": {
"@aws-sdk/protocol-http": "3.186.0",
"@aws-sdk/querystring-builder": "3.186.0",
"@aws-sdk/types": "3.186.0",
"@aws-sdk/util-base64-browser": "3.186.0",
"tslib": "^2.3.1"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/hash-node": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/hash-node/-/hash-node-3.186.0.tgz",
"integrity": "sha512-G3zuK8/3KExDTxqrGqko+opOMLRF0BwcwekV/wm3GKIM/NnLhHblBs2zd/yi7VsEoWmuzibfp6uzxgFpEoJ87w==",
"dependencies": {
"@aws-sdk/types": "3.186.0",
"@aws-sdk/util-buffer-from": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/invalid-dependency": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/invalid-dependency/-/invalid-dependency-3.186.0.tgz",
"integrity": "sha512-hjeZKqORhG2DPWYZ776lQ9YO3gjw166vZHZCZU/43kEYaCZHsF4mexHwHzreAY6RfS25cH60Um7dUh1aeVIpkw==",
"dependencies": {
"@aws-sdk/types": "3.186.0",
"tslib": "^2.3.1"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/is-array-buffer": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/is-array-buffer/-/is-array-buffer-3.186.0.tgz",
"integrity": "sha512-fObm+P6mjWYzxoFY4y2STHBmSdgKbIAXez0xope563mox62I8I4hhVPUCaDVydXvDpJv8tbedJMk0meJl22+xA==",
"dependencies": {
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/middleware-content-length": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-content-length/-/middleware-content-length-3.186.0.tgz",
"integrity": "sha512-Ol3c1ks3IK1s+Okc/rHIX7w2WpXofuQdoAEme37gHeml+8FtUlWH/881h62xfMdf+0YZpRuYv/eM7lBmJBPNJw==",
"dependencies": {
"@aws-sdk/protocol-http": "3.186.0",
"@aws-sdk/types": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/middleware-host-header": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.186.0.tgz",
"integrity": "sha512-5bTzrRzP2IGwyF3QCyMGtSXpOOud537x32htZf344IvVjrqZF/P8CDfGTkHkeBCIH+wnJxjK+l/QBb3ypAMIqQ==",
"dependencies": {
"@aws-sdk/protocol-http": "3.186.0",
"@aws-sdk/types": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/middleware-logger": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.186.0.tgz",
"integrity": "sha512-/1gGBImQT8xYh80pB7QtyzA799TqXtLZYQUohWAsFReYB7fdh5o+mu2rX0FNzZnrLIh2zBUNs4yaWGsnab4uXg==",
"dependencies": {
"@aws-sdk/types": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/middleware-retry": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-retry/-/middleware-retry-3.186.0.tgz",
"integrity": "sha512-/VI9emEKhhDzlNv9lQMmkyxx3GjJ8yPfXH3HuAeOgM1wx1BjCTLRYEWnTbQwq7BDzVENdneleCsGAp7yaj80Aw==",
"dependencies": {
"@aws-sdk/protocol-http": "3.186.0",
"@aws-sdk/service-error-classification": "3.186.0",
"@aws-sdk/types": "3.186.0",
"@aws-sdk/util-middleware": "3.186.0",
"tslib": "^2.3.1",
"uuid": "^8.3.2"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/middleware-retry/node_modules/uuid": {
"version": "8.3.2",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
"integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==",
"bin": {
"uuid": "dist/bin/uuid"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/middleware-serde": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-serde/-/middleware-serde-3.186.0.tgz",
"integrity": "sha512-6FEAz70RNf18fKL5O7CepPSwTKJEIoyG9zU6p17GzKMgPeFsxS5xO94Hcq5tV2/CqeHliebjqhKY7yi+Pgok7g==",
"dependencies": {
"@aws-sdk/types": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/middleware-signing": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-signing/-/middleware-signing-3.186.0.tgz",
"integrity": "sha512-riCJYG/LlF/rkgVbHkr4xJscc0/sECzDivzTaUmfb9kJhAwGxCyNqnTvg0q6UO00kxSdEB9zNZI2/iJYVBijBQ==",
"dependencies": {
"@aws-sdk/property-provider": "3.186.0",
"@aws-sdk/protocol-http": "3.186.0",
"@aws-sdk/signature-v4": "3.186.0",
"@aws-sdk/types": "3.186.0",
"@aws-sdk/util-middleware": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/middleware-stack": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-stack/-/middleware-stack-3.186.0.tgz",
"integrity": "sha512-fENMoo0pW7UBrbuycPf+3WZ+fcUgP9PnQ0jcOK3WWZlZ9d2ewh4HNxLh4EE3NkNYj4VIUFXtTUuVNHlG8trXjQ==",
"dependencies": {
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/middleware-user-agent": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.186.0.tgz",
"integrity": "sha512-fb+F2PF9DLKOVMgmhkr+ltN8ZhNJavTla9aqmbd01846OLEaN1n5xEnV7p8q5+EznVBWDF38Oz9Ae5BMt3Hs7w==",
"dependencies": {
"@aws-sdk/protocol-http": "3.186.0",
"@aws-sdk/types": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/node-config-provider": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/node-config-provider/-/node-config-provider-3.186.0.tgz",
"integrity": "sha512-De93mgmtuUUeoiKXU8pVHXWKPBfJQlS/lh1k2H9T2Pd9Tzi0l7p5ttddx4BsEx4gk+Pc5flNz+DeptiSjZpa4A==",
"dependencies": {
"@aws-sdk/property-provider": "3.186.0",
"@aws-sdk/shared-ini-file-loader": "3.186.0",
"@aws-sdk/types": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/node-http-handler": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/node-http-handler/-/node-http-handler-3.186.0.tgz",
"integrity": "sha512-CbkbDuPZT9UNJ4dAZJWB3BV+Z65wFy7OduqGkzNNrKq6ZYMUfehthhUOTk8vU6RMe/0FkN+J0fFXlBx/bs/cHw==",
"dependencies": {
"@aws-sdk/abort-controller": "3.186.0",
"@aws-sdk/protocol-http": "3.186.0",
"@aws-sdk/querystring-builder": "3.186.0",
"@aws-sdk/types": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/property-provider": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/property-provider/-/property-provider-3.186.0.tgz",
"integrity": "sha512-nWKqt36UW3xV23RlHUmat+yevw9up+T+953nfjcmCBKtgWlCWu/aUzewTRhKj3VRscbN+Wer95SBw9Lr/MMOlQ==",
"dependencies": {
"@aws-sdk/types": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/protocol-http": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/protocol-http/-/protocol-http-3.186.0.tgz",
"integrity": "sha512-l/KYr/UBDUU5ginqTgHtFfHR3X6ljf/1J1ThIiUg3C3kVC/Zwztm7BEOw8hHRWnWQGU/jYasGYcrcPLdQqFZyQ==",
"dependencies": {
"@aws-sdk/types": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/querystring-builder": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/querystring-builder/-/querystring-builder-3.186.0.tgz",
"integrity": "sha512-mweCpuLufImxfq/rRBTEpjGuB4xhQvbokA+otjnUxlPdIobytLqEs7pCGQfLzQ7+1ZMo8LBXt70RH4A2nSX/JQ==",
"dependencies": {
"@aws-sdk/types": "3.186.0",
"@aws-sdk/util-uri-escape": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/querystring-parser": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/querystring-parser/-/querystring-parser-3.186.0.tgz",
"integrity": "sha512-0iYfEloghzPVXJjmnzHamNx1F1jIiTW9Svy5ZF9LVqyr/uHZcQuiWYsuhWloBMLs8mfWarkZM02WfxZ8buAuhg==",
"dependencies": {
"@aws-sdk/types": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/service-error-classification": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/service-error-classification/-/service-error-classification-3.186.0.tgz",
"integrity": "sha512-DRl3ORk4tF+jmH5uvftlfaq0IeKKpt0UPAOAFQ/JFWe+TjOcQd/K+VC0iiIG97YFp3aeFmH1JbEgsNxd+8fdxw==",
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/shared-ini-file-loader": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.186.0.tgz",
"integrity": "sha512-2FZqxmICtwN9CYid4dwfJSz/gGFHyStFQ3HCOQ8DsJUf2yREMSBsVmKqsyWgOrYcQ98gPcD5GIa7QO5yl3XF6A==",
"dependencies": {
"@aws-sdk/types": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/signature-v4": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4/-/signature-v4-3.186.0.tgz",
"integrity": "sha512-18i96P5c4suMqwSNhnEOqhq4doqqyjH4fn0YV3F8TkekHPIWP4mtIJ0PWAN4eievqdtcKgD/GqVO6FaJG9texw==",
"dependencies": {
"@aws-sdk/is-array-buffer": "3.186.0",
"@aws-sdk/types": "3.186.0",
"@aws-sdk/util-hex-encoding": "3.186.0",
"@aws-sdk/util-middleware": "3.186.0",
"@aws-sdk/util-uri-escape": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/smithy-client": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/smithy-client/-/smithy-client-3.186.0.tgz",
"integrity": "sha512-rdAxSFGSnrSprVJ6i1BXi65r4X14cuya6fYe8dSdgmFSa+U2ZevT97lb3tSINCUxBGeMXhENIzbVGkRZuMh+DQ==",
"dependencies": {
"@aws-sdk/middleware-stack": "3.186.0",
"@aws-sdk/types": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/types": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.186.0.tgz",
"integrity": "sha512-NatmSU37U+XauMFJCdFI6nougC20JUFZar+ump5wVv0i54H+2Refg1YbFDxSs0FY28TSB9jfhWIpfFBmXgL5MQ==",
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/url-parser": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/url-parser/-/url-parser-3.186.0.tgz",
"integrity": "sha512-jfdJkKqJZp8qjjwEjIGDqbqTuajBsddw02f86WiL8bPqD8W13/hdqbG4Fpwc+Bm6GwR6/4MY6xWXFnk8jDUKeA==",
"dependencies": {
"@aws-sdk/querystring-parser": "3.186.0",
"@aws-sdk/types": "3.186.0",
"tslib": "^2.3.1"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/util-base64-browser": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/util-base64-browser/-/util-base64-browser-3.186.0.tgz",
"integrity": "sha512-TpQL8opoFfzTwUDxKeon/vuc83kGXpYqjl6hR8WzmHoQgmFfdFlV+0KXZOohra1001OP3FhqvMqaYbO8p9vXVQ==",
"dependencies": {
"tslib": "^2.3.1"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/util-base64-node": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/util-base64-node/-/util-base64-node-3.186.0.tgz",
"integrity": "sha512-wH5Y/EQNBfGS4VkkmiMyZXU+Ak6VCoFM1GKWopV+sj03zR2D4FHexi4SxWwEBMpZCd6foMtihhbNBuPA5fnh6w==",
"dependencies": {
"@aws-sdk/util-buffer-from": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/util-body-length-browser": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/util-body-length-browser/-/util-body-length-browser-3.186.0.tgz",
"integrity": "sha512-zKtjkI/dkj9oGkjo+7fIz+I9KuHrVt1ROAeL4OmDESS8UZi3/O8uMDFMuCp8jft6H+WFuYH6qRVWAVwXMiasXw==",
"dependencies": {
"tslib": "^2.3.1"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/util-body-length-node": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/util-body-length-node/-/util-body-length-node-3.186.0.tgz",
"integrity": "sha512-U7Ii8u8Wvu9EnBWKKeuwkdrWto3c0j7LG677Spe6vtwWkvY70n9WGfiKHTgBpVeLNv8jvfcx5+H0UOPQK1o9SQ==",
"dependencies": {
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/util-buffer-from": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/util-buffer-from/-/util-buffer-from-3.186.0.tgz",
"integrity": "sha512-be2GCk2lsLWg/2V5Y+S4/9pOMXhOQo4DR4dIqBdR2R+jrMMHN9Xsr5QrkT6chcqLaJ/SBlwiAEEi3StMRmCOXA==",
"dependencies": {
"@aws-sdk/is-array-buffer": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/util-hex-encoding": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/util-hex-encoding/-/util-hex-encoding-3.186.0.tgz",
"integrity": "sha512-UL9rdgIZz1E/jpAfaKH8QgUxNK9VP5JPgoR0bSiaefMjnsoBh0x/VVMsfUyziOoJCMLebhJzFowtwrSKEGsxNg==",
"dependencies": {
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/util-uri-escape": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/util-uri-escape/-/util-uri-escape-3.186.0.tgz",
"integrity": "sha512-imtOrJFpIZAipAg8VmRqYwv1G/x4xzyoxOJ48ZSn1/ZGnKEEnB6n6E9gwYRebi4mlRuMSVeZwCPLq0ey5hReeQ==",
"dependencies": {
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/util-user-agent-browser": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.186.0.tgz",
"integrity": "sha512-fbRcTTutMk4YXY3A2LePI4jWSIeHOT8DaYavpc/9Xshz/WH9RTGMmokeVOcClRNBeDSi5cELPJJ7gx6SFD3ZlQ==",
"dependencies": {
"@aws-sdk/types": "3.186.0",
"bowser": "^2.11.0",
"tslib": "^2.3.1"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/util-user-agent-node": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.186.0.tgz",
"integrity": "sha512-oWZR7hN6NtOgnT6fUvHaafgbipQc2xJCRB93XHiF9aZGptGNLJzznIOP7uURdn0bTnF73ejbUXWLQIm8/6ue6w==",
"dependencies": {
"@aws-sdk/node-config-provider": "3.186.0",
"@aws-sdk/types": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
},
"peerDependencies": {
"aws-crt": ">=1.0.0"
},
"peerDependenciesMeta": {
"aws-crt": {
"optional": true
}
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/util-utf8-browser": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.186.0.tgz",
"integrity": "sha512-n+IdFYF/4qT2WxhMOCeig8LndDggaYHw3BJJtfIBZRiS16lgwcGYvOUmhCkn0aSlG1f/eyg9YZHQG0iz9eLdHQ==",
"dependencies": {
"tslib": "^2.3.1"
}
},
"node_modules/@aws-amplify/notifications/node_modules/@aws-sdk/util-utf8-node": {
"version": "3.186.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/util-utf8-node/-/util-utf8-node-3.186.0.tgz",
"integrity": "sha512-7qlE0dOVdjuRbZTb7HFywnHHCrsN7AeQiTnsWT63mjXGDbPeUWQQw3TrdI20um3cxZXnKoeudGq8K6zbXyQ4iA==",
"dependencies": {
"@aws-sdk/util-buffer-from": "3.186.0",
"tslib": "^2.3.1"
},
"engines": {
"node": ">= 12.0.0"
}
},
"node_modules/@aws-amplify/predictions": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/@aws-amplify/predictions/-/predictions-5.2.1.tgz",
"integrity": "sha512-xl8unbd0KPNsBOc4sUzzx3vo1OIZaUf3mIP5y22NkUqhpx7/o1ldgx+PQOm5ulDQT/maIJ4LNtPj8UjXmffqCA==",
"dependencies": {
"@aws-amplify/core": "5.3.1",
"@aws-amplify/storage": "5.3.1",
"@aws-sdk/client-comprehend": "3.6.1",
"@aws-sdk/client-polly": "3.6.1",
"@aws-sdk/client-rekognition": "3.6.1",
"@aws-sdk/client-textract": "3.6.1",
"@aws-sdk/client-translate": "3.6.1",
"@aws-sdk/eventstream-marshaller": "3.6.1",
"@aws-sdk/util-utf8-node": "3.6.1",
"buffer": "4.9.2",
"tslib": "^1.8.0",
"uuid": "^3.2.1"
}
},
"node_modules/@aws-amplify/predictions/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-amplify/pubsub": {
"version": "5.1.16",
"resolved": "https://registry.npmjs.org/@aws-amplify/pubsub/-/pubsub-5.1.16.tgz",
"integrity": "sha512-oKSr2EoQQBfnyWEVHoMIay7abZdZpre8fkGNT12Cu2KrjOcqWAiUPhrHwZ8RW1so/YQKmT5ixrcBEoSUe9gnSg==",
"dependencies": {
"@aws-amplify/auth": "5.3.7",
"@aws-amplify/cache": "5.0.33",
"@aws-amplify/core": "5.3.1",
"graphql": "15.8.0",
"tslib": "^1.8.0",
"uuid": "^3.2.1",
"zen-observable-ts": "0.8.19"
}
},
"node_modules/@aws-amplify/pubsub/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-amplify/rtn-push-notification": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@aws-amplify/rtn-push-notification/-/rtn-push-notification-1.1.1.tgz",
"integrity": "sha512-uYPyiNeK2r2g82U6ayluNrKA2z5280mlW9razEul94i/2XPt9LAXhIb1XnCtxGzxANMHd+FH9V7D7RAGK99pTQ=="
},
"node_modules/@aws-amplify/storage": {
"version": "5.3.1",
"resolved": "https://registry.npmjs.org/@aws-amplify/storage/-/storage-5.3.1.tgz",
"integrity": "sha512-cmuMQydGI0cox3ECVKsWVFjFUui3yuVAgL4zsGBbmk9vkPTHMtOfQfChBvGxgcsAR7FhXi3b360n7eCBPKX3Tg==",
"dependencies": {
"@aws-amplify/core": "5.3.1",
"@aws-sdk/client-s3": "3.6.2",
"@aws-sdk/s3-request-presigner": "3.6.1",
"@aws-sdk/util-create-request": "3.6.1",
"@aws-sdk/util-format-url": "3.6.1",
"axios": "0.26.0",
"events": "^3.1.0",
"tslib": "^1.8.0"
}
},
"node_modules/@aws-amplify/storage/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-cdk/asset-awscli-v1": {
"version": "2.2.185",
"resolved": "https://registry.npmjs.org/@aws-cdk/asset-awscli-v1/-/asset-awscli-v1-2.2.185.tgz",
"integrity": "sha512-cost0pu5nsmQmFhVxN4OonThGhgQeSlwntdXsEi5v8buVg+X4MzcXemmmSZxkkzzFCoS0r4w/7BiX1e+mMkFVA==",
"dev": true
},
"node_modules/@aws-cdk/asset-kubectl-v20": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/@aws-cdk/asset-kubectl-v20/-/asset-kubectl-v20-2.1.1.tgz",
"integrity": "sha512-U1ntiX8XiMRRRH5J1IdC+1t5CE89015cwyt5U63Cpk0GnMlN5+h9WsWMlKlPXZR4rdq/m806JRlBMRpBUB2Dhw==",
"dev": true
},
"node_modules/@aws-cdk/asset-node-proxy-agent-v5": {
"version": "2.0.155",
"resolved": "https://registry.npmjs.org/@aws-cdk/asset-node-proxy-agent-v5/-/asset-node-proxy-agent-v5-2.0.155.tgz",
"integrity": "sha512-Q+Ny25hUPINlBbS6lmbUr4m6Tr6ToEJBla7sXA3FO3JUD0Z69ddcgbhuEBF8Rh1a2xmPONm89eX77kwK2fb4vQ==",
"dev": true
},
"node_modules/@aws-cdk/aws-apigatewayv2-alpha": {
"version": "2.66.0-alpha.0",
"resolved": "https://registry.npmjs.org/@aws-cdk/aws-apigatewayv2-alpha/-/aws-apigatewayv2-alpha-2.66.0-alpha.0.tgz",