-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
5704 lines (4937 loc) · 232 KB
/
yarn.lock
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
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@ampproject/remapping@^2.2.0":
"integrity" "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg=="
"resolved" "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz"
"version" "2.2.1"
dependencies:
"@jridgewell/gen-mapping" "^0.3.0"
"@jridgewell/trace-mapping" "^0.3.9"
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.22.13":
"integrity" "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz"
"version" "7.22.13"
dependencies:
"@babel/highlight" "^7.22.13"
"chalk" "^2.4.2"
"@babel/compat-data@^7.22.9":
"integrity" "sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ=="
"resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz"
"version" "7.22.9"
"@babel/core@^7.11.6", "@babel/core@^7.12.3":
"integrity" "sha512-Q8Yj5X4LHVYTbLCKVz0//2D2aDmHF4xzCdEttYvKOnWvErGsa6geHXD6w46x64n5tP69VfeH+IfSrdyH3MLhwA=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.22.19.tgz"
"version" "7.22.19"
dependencies:
"@ampproject/remapping" "^2.2.0"
"@babel/code-frame" "^7.22.13"
"@babel/generator" "^7.22.15"
"@babel/helper-compilation-targets" "^7.22.15"
"@babel/helper-module-transforms" "^7.22.19"
"@babel/helpers" "^7.22.15"
"@babel/parser" "^7.22.16"
"@babel/template" "^7.22.15"
"@babel/traverse" "^7.22.19"
"@babel/types" "^7.22.19"
"convert-source-map" "^1.7.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.2.3"
"semver" "^6.3.1"
"@babel/generator@^7.22.15", "@babel/generator@^7.7.2":
"integrity" "sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.22.15.tgz"
"version" "7.22.15"
dependencies:
"@babel/types" "^7.22.15"
"@jridgewell/gen-mapping" "^0.3.2"
"@jridgewell/trace-mapping" "^0.3.17"
"jsesc" "^2.5.1"
"@babel/helper-compilation-targets@^7.22.15":
"integrity" "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw=="
"resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz"
"version" "7.22.15"
dependencies:
"@babel/compat-data" "^7.22.9"
"@babel/helper-validator-option" "^7.22.15"
"browserslist" "^4.21.9"
"lru-cache" "^5.1.1"
"semver" "^6.3.1"
"@babel/helper-environment-visitor@^7.22.5":
"integrity" "sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q=="
"resolved" "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz"
"version" "7.22.5"
"@babel/helper-function-name@^7.22.5":
"integrity" "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/template" "^7.22.5"
"@babel/types" "^7.22.5"
"@babel/helper-hoist-variables@^7.22.5":
"integrity" "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw=="
"resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/types" "^7.22.5"
"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.16.7", "@babel/helper-module-imports@^7.22.15":
"integrity" "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz"
"version" "7.22.15"
dependencies:
"@babel/types" "^7.22.15"
"@babel/helper-module-transforms@^7.22.19":
"integrity" "sha512-m6h1cJvn+OJ+R3jOHp30faq5xKJ7VbjwDj5RGgHuRlU9hrMeKsGC+JpihkR5w1g7IfseCPPtZ0r7/hB4UKaYlA=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.19.tgz"
"version" "7.22.19"
dependencies:
"@babel/helper-environment-visitor" "^7.22.5"
"@babel/helper-module-imports" "^7.22.15"
"@babel/helper-simple-access" "^7.22.5"
"@babel/helper-split-export-declaration" "^7.22.6"
"@babel/helper-validator-identifier" "^7.22.19"
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0":
"integrity" "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg=="
"resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz"
"version" "7.22.5"
"@babel/helper-simple-access@^7.22.5":
"integrity" "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w=="
"resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/types" "^7.22.5"
"@babel/helper-split-export-declaration@^7.22.6":
"integrity" "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g=="
"resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz"
"version" "7.22.6"
dependencies:
"@babel/types" "^7.22.5"
"@babel/helper-string-parser@^7.22.5":
"integrity" "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw=="
"resolved" "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz"
"version" "7.22.5"
"@babel/helper-validator-identifier@^7.22.19", "@babel/helper-validator-identifier@^7.22.5":
"integrity" "sha512-Tinq7ybnEPFFXhlYOYFiSjespWQk0dq2dRNAiMdRTOYQzEGqnnNyrTxPYHP5r6wGjlF1rFgABdDV0g8EwD6Qbg=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.19.tgz"
"version" "7.22.19"
"@babel/helper-validator-option@^7.22.15":
"integrity" "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz"
"version" "7.22.15"
"@babel/helpers@^7.22.15":
"integrity" "sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw=="
"resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.15.tgz"
"version" "7.22.15"
dependencies:
"@babel/template" "^7.22.15"
"@babel/traverse" "^7.22.15"
"@babel/types" "^7.22.15"
"@babel/highlight@^7.22.13":
"integrity" "sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.13.tgz"
"version" "7.22.13"
dependencies:
"@babel/helper-validator-identifier" "^7.22.5"
"chalk" "^2.4.2"
"js-tokens" "^4.0.0"
"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.22.15", "@babel/parser@^7.22.16":
"integrity" "sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.22.16.tgz"
"version" "7.22.16"
"@babel/plugin-syntax-async-generators@^7.8.4":
"integrity" "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz"
"version" "7.8.4"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-bigint@^7.8.3":
"integrity" "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-class-properties@^7.8.3":
"integrity" "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/plugin-syntax-import-meta@^7.8.3":
"integrity" "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-json-strings@^7.8.3":
"integrity" "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-jsx@^7.7.2":
"integrity" "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
"integrity" "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
"integrity" "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-numeric-separator@^7.8.3":
"integrity" "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-object-rest-spread@^7.8.3":
"integrity" "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-optional-catch-binding@^7.8.3":
"integrity" "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-optional-chaining@^7.8.3":
"integrity" "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-top-level-await@^7.8.3":
"integrity" "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-typescript@^7.7.2":
"integrity" "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz"
"version" "7.22.5"
dependencies:
"@babel/helper-plugin-utils" "^7.22.5"
"@babel/runtime@^7.0.0", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.10", "@babel/runtime@^7.18.3", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2":
"integrity" "sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.15.tgz"
"version" "7.22.15"
dependencies:
"regenerator-runtime" "^0.14.0"
"@babel/template@^7.22.15", "@babel/template@^7.22.5", "@babel/template@^7.3.3":
"integrity" "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w=="
"resolved" "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz"
"version" "7.22.15"
dependencies:
"@babel/code-frame" "^7.22.13"
"@babel/parser" "^7.22.15"
"@babel/types" "^7.22.15"
"@babel/traverse@^7.22.15", "@babel/traverse@^7.22.19":
"integrity" "sha512-ZCcpVPK64krfdScRbpxF6xA5fz7IOsfMwx1tcACvCzt6JY+0aHkBk7eIU8FRDSZRU5Zei6Z4JfgAxN1bqXGECg=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.19.tgz"
"version" "7.22.19"
dependencies:
"@babel/code-frame" "^7.22.13"
"@babel/generator" "^7.22.15"
"@babel/helper-environment-visitor" "^7.22.5"
"@babel/helper-function-name" "^7.22.5"
"@babel/helper-hoist-variables" "^7.22.5"
"@babel/helper-split-export-declaration" "^7.22.6"
"@babel/parser" "^7.22.16"
"@babel/types" "^7.22.19"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.3.3":
"integrity" "sha512-P7LAw/LbojPzkgp5oznjE6tQEIWbp4PkkfrZDINTro9zgBRtI324/EYsiSI7lhPbpIQ+DCeR2NNmMWANGGfZsg=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.22.19.tgz"
"version" "7.22.19"
dependencies:
"@babel/helper-string-parser" "^7.22.5"
"@babel/helper-validator-identifier" "^7.22.19"
"to-fast-properties" "^2.0.0"
"@bcoe/v8-coverage@^0.2.3":
"integrity" "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw=="
"resolved" "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz"
"version" "0.2.3"
"@builder.io/react@^3.1.1":
"integrity" "sha512-jGHPt+DJQM4IHvnqgfSvXoyItESQ0zEkHj1BGx+PNQJwxz2BrMtWF0YC3xyb4dLXuBHOy6ACndVFBtM+oBQbfQ=="
"resolved" "https://registry.npmjs.org/@builder.io/react/-/react-3.1.1.tgz"
"version" "3.1.1"
dependencies:
"@builder.io/sdk" "2.1.1"
"@emotion/core" "^10.0.17"
"hash-sum" "^2.0.0"
"isolated-vm" "^4.5.0"
"preact" "^10.1.0"
optionalDependencies:
"node-fetch" "^2.6.1"
"prop-types" "^15.7.2"
"@builder.io/sdk@2.1.1":
"integrity" "sha512-L70LeI6jNbMW52i3L8L1FbjLZw3LGVyk3S7Z7YvrR7FuNbe6UnET9q8+wTSpw3FglP6onwNlMXe8EwNJR8lXCg=="
"resolved" "https://registry.npmjs.org/@builder.io/sdk/-/sdk-2.1.1.tgz"
"version" "2.1.1"
dependencies:
"hash-sum" "^2.0.0"
"node-fetch" "^2.3.0"
"tslib" "^1.10.0"
"@builder.io/utils@1.1.10":
"integrity" "sha512-1Ip6NDIptR8/KvPs7qcTYvSip+qAkaLf0DrBFLp2RiebQ0msBJ9AmswNP5BYxLVHCXC30cLGTXXaxt8GvTNFUQ=="
"resolved" "https://registry.npmjs.org/@builder.io/utils/-/utils-1.1.10.tgz"
"version" "1.1.10"
dependencies:
"@types/lodash" "^4.14.182"
"lodash" "^4.17.21"
"traverse" "^0.6.6"
"@builder.io/widgets@1.2.24":
"integrity" "sha512-QXZC/9czEoHrEDyF+QMx3fum9g7DZi9vPBAiGGhR6SZerqyENdA1J+VN2qJm8+7HFAVmOxUAeMjmuVSo7F3SSA=="
"resolved" "https://registry.npmjs.org/@builder.io/widgets/-/widgets-1.2.24.tgz"
"version" "1.2.24"
dependencies:
"@emotion/core" ">=10"
"@emotion/styled" ">=10"
"lodash-es" "^4.17.10"
"react-loadable" "^5.5.0"
"react-masonry-component" "^6.2.1"
"react-slick" "^0.28.1"
"tslib" "^1.10.0"
optionalDependencies:
"next" ">=12.1.0"
"preact" "^8.4.2"
"preact-compat" "^3.18.4"
"preact-context" "^1.1.3"
"prop-types" "^15.7.2"
"@emotion/babel-plugin@^11.11.0":
"integrity" "sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ=="
"resolved" "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz"
"version" "11.11.0"
dependencies:
"@babel/helper-module-imports" "^7.16.7"
"@babel/runtime" "^7.18.3"
"@emotion/hash" "^0.9.1"
"@emotion/memoize" "^0.8.1"
"@emotion/serialize" "^1.1.2"
"babel-plugin-macros" "^3.1.0"
"convert-source-map" "^1.5.0"
"escape-string-regexp" "^4.0.0"
"find-root" "^1.1.0"
"source-map" "^0.5.7"
"stylis" "4.2.0"
"@emotion/cache@^10.0.27":
"integrity" "sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ=="
"resolved" "https://registry.npmjs.org/@emotion/cache/-/cache-10.0.29.tgz"
"version" "10.0.29"
dependencies:
"@emotion/sheet" "0.9.4"
"@emotion/stylis" "0.8.5"
"@emotion/utils" "0.11.3"
"@emotion/weak-memoize" "0.2.5"
"@emotion/cache@^11.11.0":
"integrity" "sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ=="
"resolved" "https://registry.npmjs.org/@emotion/cache/-/cache-11.11.0.tgz"
"version" "11.11.0"
dependencies:
"@emotion/memoize" "^0.8.1"
"@emotion/sheet" "^1.2.2"
"@emotion/utils" "^1.2.1"
"@emotion/weak-memoize" "^0.3.1"
"stylis" "4.2.0"
"@emotion/core@^10.0.17", "@emotion/core@>=10":
"integrity" "sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww=="
"resolved" "https://registry.npmjs.org/@emotion/core/-/core-10.3.1.tgz"
"version" "10.3.1"
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"
"@emotion/css@^10.0.27":
"integrity" "sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw=="
"resolved" "https://registry.npmjs.org/@emotion/css/-/css-10.0.27.tgz"
"version" "10.0.27"
dependencies:
"@emotion/serialize" "^0.11.15"
"@emotion/utils" "0.11.3"
"babel-plugin-emotion" "^10.0.27"
"@emotion/hash@^0.9.1":
"integrity" "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ=="
"resolved" "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz"
"version" "0.9.1"
"@emotion/hash@0.8.0":
"integrity" "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow=="
"resolved" "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz"
"version" "0.8.0"
"@emotion/is-prop-valid@^0.8.1":
"integrity" "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA=="
"resolved" "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz"
"version" "0.8.8"
dependencies:
"@emotion/memoize" "0.7.4"
"@emotion/is-prop-valid@^1.2.1":
"integrity" "sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw=="
"resolved" "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.1.tgz"
"version" "1.2.1"
dependencies:
"@emotion/memoize" "^0.8.1"
"@emotion/memoize@^0.7.1":
"integrity" "sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ=="
"resolved" "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.5.tgz"
"version" "0.7.5"
"@emotion/memoize@^0.8.1":
"integrity" "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA=="
"resolved" "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz"
"version" "0.8.1"
"@emotion/memoize@0.7.4":
"integrity" "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw=="
"resolved" "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz"
"version" "0.7.4"
"@emotion/react@^11.10.6":
"integrity" "sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA=="
"resolved" "https://registry.npmjs.org/@emotion/react/-/react-11.11.1.tgz"
"version" "11.11.1"
dependencies:
"@babel/runtime" "^7.18.3"
"@emotion/babel-plugin" "^11.11.0"
"@emotion/cache" "^11.11.0"
"@emotion/serialize" "^1.1.2"
"@emotion/use-insertion-effect-with-fallbacks" "^1.0.1"
"@emotion/utils" "^1.2.1"
"@emotion/weak-memoize" "^0.3.1"
"hoist-non-react-statics" "^3.3.1"
"@emotion/serialize@^0.11.15", "@emotion/serialize@^0.11.16":
"integrity" "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg=="
"resolved" "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz"
"version" "0.11.16"
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"
"@emotion/serialize@^1.1.2":
"integrity" "sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA=="
"resolved" "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.2.tgz"
"version" "1.1.2"
dependencies:
"@emotion/hash" "^0.9.1"
"@emotion/memoize" "^0.8.1"
"@emotion/unitless" "^0.8.1"
"@emotion/utils" "^1.2.1"
"csstype" "^3.0.2"
"@emotion/sheet@^1.2.2":
"integrity" "sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA=="
"resolved" "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.2.tgz"
"version" "1.2.2"
"@emotion/sheet@0.9.4":
"integrity" "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA=="
"resolved" "https://registry.npmjs.org/@emotion/sheet/-/sheet-0.9.4.tgz"
"version" "0.9.4"
"@emotion/styled@>=10":
"integrity" "sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng=="
"resolved" "https://registry.npmjs.org/@emotion/styled/-/styled-11.11.0.tgz"
"version" "11.11.0"
dependencies:
"@babel/runtime" "^7.18.3"
"@emotion/babel-plugin" "^11.11.0"
"@emotion/is-prop-valid" "^1.2.1"
"@emotion/serialize" "^1.1.2"
"@emotion/use-insertion-effect-with-fallbacks" "^1.0.1"
"@emotion/utils" "^1.2.1"
"@emotion/stylis@0.8.5":
"integrity" "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ=="
"resolved" "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz"
"version" "0.8.5"
"@emotion/unitless@^0.8.1":
"integrity" "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ=="
"resolved" "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz"
"version" "0.8.1"
"@emotion/unitless@0.7.5":
"integrity" "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg=="
"resolved" "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz"
"version" "0.7.5"
"@emotion/use-insertion-effect-with-fallbacks@^1.0.1":
"integrity" "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw=="
"resolved" "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz"
"version" "1.0.1"
"@emotion/utils@^1.2.1":
"integrity" "sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg=="
"resolved" "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.1.tgz"
"version" "1.2.1"
"@emotion/utils@0.11.3":
"integrity" "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw=="
"resolved" "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz"
"version" "0.11.3"
"@emotion/weak-memoize@^0.3.1":
"integrity" "sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww=="
"resolved" "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz"
"version" "0.3.1"
"@emotion/weak-memoize@0.2.5":
"integrity" "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA=="
"resolved" "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz"
"version" "0.2.5"
"@fastify/accept-negotiator@^1.1.0":
"integrity" "sha512-OIHZrb2ImZ7XG85HXOONLcJWGosv7sIvM2ifAPQVhg9Lv7qdmMBNVaai4QTdyuaqbKM5eO6sLSQOYI7wEQeCJQ=="
"resolved" "https://registry.npmjs.org/@fastify/accept-negotiator/-/accept-negotiator-1.1.0.tgz"
"version" "1.1.0"
"@ioredis/commands@^1.1.1":
"integrity" "sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg=="
"resolved" "https://registry.npmjs.org/@ioredis/commands/-/commands-1.2.0.tgz"
"version" "1.2.0"
"@istanbuljs/load-nyc-config@^1.0.0":
"integrity" "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ=="
"resolved" "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz"
"version" "1.1.0"
dependencies:
"camelcase" "^5.3.1"
"find-up" "^4.1.0"
"get-package-type" "^0.1.0"
"js-yaml" "^3.13.1"
"resolve-from" "^5.0.0"
"@istanbuljs/schema@^0.1.2":
"integrity" "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA=="
"resolved" "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz"
"version" "0.1.3"
"@jest/console@^29.7.0":
"integrity" "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg=="
"resolved" "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz"
"version" "29.7.0"
dependencies:
"@jest/types" "^29.6.3"
"@types/node" "*"
"chalk" "^4.0.0"
"jest-message-util" "^29.7.0"
"jest-util" "^29.7.0"
"slash" "^3.0.0"
"@jest/core@^29.4.3", "@jest/core@^29.7.0":
"integrity" "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg=="
"resolved" "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz"
"version" "29.7.0"
dependencies:
"@jest/console" "^29.7.0"
"@jest/reporters" "^29.7.0"
"@jest/test-result" "^29.7.0"
"@jest/transform" "^29.7.0"
"@jest/types" "^29.6.3"
"@types/node" "*"
"ansi-escapes" "^4.2.1"
"chalk" "^4.0.0"
"ci-info" "^3.2.0"
"exit" "^0.1.2"
"graceful-fs" "^4.2.9"
"jest-changed-files" "^29.7.0"
"jest-config" "^29.7.0"
"jest-haste-map" "^29.7.0"
"jest-message-util" "^29.7.0"
"jest-regex-util" "^29.6.3"
"jest-resolve" "^29.7.0"
"jest-resolve-dependencies" "^29.7.0"
"jest-runner" "^29.7.0"
"jest-runtime" "^29.7.0"
"jest-snapshot" "^29.7.0"
"jest-util" "^29.7.0"
"jest-validate" "^29.7.0"
"jest-watcher" "^29.7.0"
"micromatch" "^4.0.4"
"pretty-format" "^29.7.0"
"slash" "^3.0.0"
"strip-ansi" "^6.0.0"
"@jest/environment@^29.7.0":
"integrity" "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw=="
"resolved" "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz"
"version" "29.7.0"
dependencies:
"@jest/fake-timers" "^29.7.0"
"@jest/types" "^29.6.3"
"@types/node" "*"
"jest-mock" "^29.7.0"
"@jest/expect-utils@^29.7.0":
"integrity" "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA=="
"resolved" "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz"
"version" "29.7.0"
dependencies:
"jest-get-type" "^29.6.3"
"@jest/expect@^29.7.0":
"integrity" "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ=="
"resolved" "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz"
"version" "29.7.0"
dependencies:
"expect" "^29.7.0"
"jest-snapshot" "^29.7.0"
"@jest/fake-timers@^29.7.0":
"integrity" "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ=="
"resolved" "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz"
"version" "29.7.0"
dependencies:
"@jest/types" "^29.6.3"
"@sinonjs/fake-timers" "^10.0.2"
"@types/node" "*"
"jest-message-util" "^29.7.0"
"jest-mock" "^29.7.0"
"jest-util" "^29.7.0"
"@jest/globals@^29.7.0":
"integrity" "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ=="
"resolved" "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz"
"version" "29.7.0"
dependencies:
"@jest/environment" "^29.7.0"
"@jest/expect" "^29.7.0"
"@jest/types" "^29.6.3"
"jest-mock" "^29.7.0"
"@jest/reporters@^29.7.0":
"integrity" "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg=="
"resolved" "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz"
"version" "29.7.0"
dependencies:
"@bcoe/v8-coverage" "^0.2.3"
"@jest/console" "^29.7.0"
"@jest/test-result" "^29.7.0"
"@jest/transform" "^29.7.0"
"@jest/types" "^29.6.3"
"@jridgewell/trace-mapping" "^0.3.18"
"@types/node" "*"
"chalk" "^4.0.0"
"collect-v8-coverage" "^1.0.0"
"exit" "^0.1.2"
"glob" "^7.1.3"
"graceful-fs" "^4.2.9"
"istanbul-lib-coverage" "^3.0.0"
"istanbul-lib-instrument" "^6.0.0"
"istanbul-lib-report" "^3.0.0"
"istanbul-lib-source-maps" "^4.0.0"
"istanbul-reports" "^3.1.3"
"jest-message-util" "^29.7.0"
"jest-util" "^29.7.0"
"jest-worker" "^29.7.0"
"slash" "^3.0.0"
"string-length" "^4.0.1"
"strip-ansi" "^6.0.0"
"v8-to-istanbul" "^9.0.1"
"@jest/schemas@^29.6.3":
"integrity" "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA=="
"resolved" "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz"
"version" "29.6.3"
dependencies:
"@sinclair/typebox" "^0.27.8"
"@jest/source-map@^29.6.3":
"integrity" "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw=="
"resolved" "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz"
"version" "29.6.3"
dependencies:
"@jridgewell/trace-mapping" "^0.3.18"
"callsites" "^3.0.0"
"graceful-fs" "^4.2.9"
"@jest/test-result@^29.7.0":
"integrity" "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA=="
"resolved" "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz"
"version" "29.7.0"
dependencies:
"@jest/console" "^29.7.0"
"@jest/types" "^29.6.3"
"@types/istanbul-lib-coverage" "^2.0.0"
"collect-v8-coverage" "^1.0.0"
"@jest/test-sequencer@^29.7.0":
"integrity" "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw=="
"resolved" "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz"
"version" "29.7.0"
dependencies:
"@jest/test-result" "^29.7.0"
"graceful-fs" "^4.2.9"
"jest-haste-map" "^29.7.0"
"slash" "^3.0.0"
"@jest/transform@^29.7.0":
"integrity" "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw=="
"resolved" "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz"
"version" "29.7.0"
dependencies:
"@babel/core" "^7.11.6"
"@jest/types" "^29.6.3"
"@jridgewell/trace-mapping" "^0.3.18"
"babel-plugin-istanbul" "^6.1.1"
"chalk" "^4.0.0"
"convert-source-map" "^2.0.0"
"fast-json-stable-stringify" "^2.1.0"
"graceful-fs" "^4.2.9"
"jest-haste-map" "^29.7.0"
"jest-regex-util" "^29.6.3"
"jest-util" "^29.7.0"
"micromatch" "^4.0.4"
"pirates" "^4.0.4"
"slash" "^3.0.0"
"write-file-atomic" "^4.0.2"
"@jest/types@^29.4.3", "@jest/types@^29.6.3":
"integrity" "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw=="
"resolved" "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz"
"version" "29.6.3"
dependencies:
"@jest/schemas" "^29.6.3"
"@types/istanbul-lib-coverage" "^2.0.0"
"@types/istanbul-reports" "^3.0.0"
"@types/node" "*"
"@types/yargs" "^17.0.8"
"chalk" "^4.0.0"
"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2":
"integrity" "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ=="
"resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz"
"version" "0.3.3"
dependencies:
"@jridgewell/set-array" "^1.0.1"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/trace-mapping" "^0.3.9"
"@jridgewell/resolve-uri@^3.1.0":
"integrity" "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA=="
"resolved" "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz"
"version" "3.1.1"
"@jridgewell/set-array@^1.0.1":
"integrity" "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw=="
"resolved" "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz"
"version" "1.1.2"
"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14":
"integrity" "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="
"resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz"
"version" "1.4.15"
"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.9":
"integrity" "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw=="
"resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz"
"version" "0.3.19"
dependencies:
"@jridgewell/resolve-uri" "^3.1.0"
"@jridgewell/sourcemap-codec" "^1.4.14"
"@netlify/esbuild-darwin-arm64@0.14.39":
"integrity" "sha512-b7rtnX/VtYwNbUCxs3eulrCWJ+u2YvqDcXiIV1ka+od+N0fTx+4RrVkVp1lha9L0wEJYK9J7UWZOMLMyd1ynRg=="
"resolved" "https://registry.npmjs.org/@netlify/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.39.tgz"
"version" "0.14.39"
"@netlify/esbuild@0.14.39":
"integrity" "sha512-C3xpwdT2xw6SnSb+hLQoxjtikAKiz6BjQjzlIaysHDpGbmIcmUHZ/X+dyLtCqAvf15WNK5GSBZYOlpgcOE0WZA=="
"resolved" "https://registry.npmjs.org/@netlify/esbuild/-/esbuild-0.14.39.tgz"
"version" "0.14.39"
optionalDependencies:
"@netlify/esbuild-android-64" "0.14.39"
"@netlify/esbuild-android-arm64" "0.14.39"
"@netlify/esbuild-darwin-64" "0.14.39"
"@netlify/esbuild-darwin-arm64" "0.14.39"
"@netlify/esbuild-freebsd-64" "0.14.39"
"@netlify/esbuild-freebsd-arm64" "0.14.39"
"@netlify/esbuild-linux-32" "0.14.39"
"@netlify/esbuild-linux-64" "0.14.39"
"@netlify/esbuild-linux-arm" "0.14.39"
"@netlify/esbuild-linux-arm64" "0.14.39"
"@netlify/esbuild-linux-mips64le" "0.14.39"
"@netlify/esbuild-linux-ppc64le" "0.14.39"
"@netlify/esbuild-linux-riscv64" "0.14.39"
"@netlify/esbuild-linux-s390x" "0.14.39"
"@netlify/esbuild-netbsd-64" "0.14.39"
"@netlify/esbuild-openbsd-64" "0.14.39"
"@netlify/esbuild-sunos-64" "0.14.39"
"@netlify/esbuild-windows-32" "0.14.39"
"@netlify/esbuild-windows-64" "0.14.39"
"@netlify/esbuild-windows-arm64" "0.14.39"
"@netlify/functions@^1.4.0":
"integrity" "sha512-6G92AlcpFrQG72XU8YH8pg94eDnq7+Q0YJhb8x4qNpdGsvuzvrfHWBmqFGp/Yshmv4wex9lpsTRZOocdrA2erQ=="
"resolved" "https://registry.npmjs.org/@netlify/functions/-/functions-1.6.0.tgz"
"version" "1.6.0"
dependencies:
"is-promise" "^4.0.0"
"@netlify/functions@^2.0.1":
"integrity" "sha512-goWRtaIPUK/q47qLYtfGGj7HgJIRaT0snw7zZ0yeoNTfQfCRwQwvRrMAsXkCsCtq2N2Oo81L26SpkMxEQMk9hg=="
"resolved" "https://registry.npmjs.org/@netlify/functions/-/functions-2.0.2.tgz"
"version" "2.0.2"
dependencies:
"@netlify/serverless-functions-api" "1.7.3"
"is-promise" "^4.0.0"
"@netlify/ipx@^1.3.3":
"integrity" "sha512-UM2pFatBDg9ehrUwA/PwpAo/PpF447uXFgKR/2QtqlPriwJlNXJ7sj/YPEblC/8UzNJjhSIv2gA6T9bcVqxe7Q=="
"resolved" "https://registry.npmjs.org/@netlify/ipx/-/ipx-1.4.4.tgz"
"version" "1.4.4"
dependencies:
"@netlify/functions" "^2.0.1"
"etag" "^1.8.1"
"fs-extra" "^11.0.0"
"ipx" "^1.0.0"
"micromatch" "^4.0.5"
"mkdirp" "^3.0.0"
"murmurhash" "^2.0.0"
"node-fetch" "^2.0.0"
"ufo" "^1.0.0"
"unstorage" "^1.0.0"
"@netlify/node-cookies@^0.1.0":
"integrity" "sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g=="
"resolved" "https://registry.npmjs.org/@netlify/node-cookies/-/node-cookies-0.1.0.tgz"
"version" "0.1.0"
"@netlify/plugin-nextjs@4.30.4":
"integrity" "sha512-Y72G0P2uKe4tJZuiKibBdIeBz69/0G00umzy8D96LHHs5jq4Yr/Wbp/u56YG3MA84E/qmOhBfyc20DGbPMe9tQ=="
"resolved" "https://registry.npmjs.org/@netlify/plugin-nextjs/-/plugin-nextjs-4.30.4.tgz"
"version" "4.30.4"
dependencies:
"@netlify/esbuild" "0.14.39"
"@netlify/functions" "^1.4.0"
"@netlify/ipx" "^1.3.3"
"@vercel/node-bridge" "^2.1.0"
"chalk" "^4.1.2"
"destr" "^1.1.1"
"execa" "^5.1.1"
"follow-redirects" "^1.15.2"
"fs-extra" "^10.0.0"
"globby" "^11.0.4"
"merge-stream" "^2.0.0"
"moize" "^6.1.0"
"node-fetch" "^2.6.6"
"node-stream-zip" "^1.15.0"
"outdent" "^0.8.0"
"p-limit" "^3.1.0"
"pathe" "^0.2.0"
"pretty-bytes" "^5.6.0"
"regexp-tree" "^0.1.24"
"semver" "^7.3.5"
"slash" "^3.0.0"
"tiny-glob" "^0.2.9"
"@netlify/serverless-functions-api@1.7.3":
"integrity" "sha512-n6/7cJlSWvvbBlUOEAbkGyEld80S6KbG/ldQI9OhLfe1lTatgKmrTNIgqVNpaWpUdTgP2OHWFjmFBzkxxBWs5w=="
"resolved" "https://registry.npmjs.org/@netlify/serverless-functions-api/-/serverless-functions-api-1.7.3.tgz"
"version" "1.7.3"
dependencies:
"@netlify/node-cookies" "^0.1.0"
"urlpattern-polyfill" "8.0.2"
"@next/bundle-analyzer@13.1.6":
"integrity" "sha512-rJS9CtLoGT58mL+v2ISKANosFFWP/0YKYByHQ3vTaZrbQP8b1rYRxd2QVMJmnSXaFkiP9URt1XJ6OdGyVq5b6g=="
"resolved" "https://registry.npmjs.org/@next/bundle-analyzer/-/bundle-analyzer-13.1.6.tgz"
"version" "13.1.6"
dependencies:
"webpack-bundle-analyzer" "4.7.0"
"@next/env@13.1.6":
"integrity" "sha512-s+W9Fdqh5MFk6ECrbnVmmAOwxKQuhGMT7xXHrkYIBMBcTiOqNWhv5KbJIboKR5STXxNXl32hllnvKaffzFaWQg=="
"resolved" "https://registry.npmjs.org/@next/env/-/env-13.1.6.tgz"
"version" "13.1.6"
"@next/swc-darwin-arm64@13.1.6":
"integrity" "sha512-KKRQH4DDE4kONXCvFMNBZGDb499Hs+xcFAwvj+rfSUssIDrZOlyfJNy55rH5t2Qxed1e4K80KEJgsxKQN1/fyw=="
"resolved" "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.1.6.tgz"
"version" "13.1.6"
"@nodelib/fs.scandir@2.1.5":
"integrity" "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
"version" "2.1.5"
dependencies:
"@nodelib/fs.stat" "2.0.5"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5":
"integrity" "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
"version" "2.0.5"
"@nodelib/fs.walk@^1.2.3":
"integrity" "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
"version" "1.2.8"
dependencies:
"@nodelib/fs.scandir" "2.1.5"
"fastq" "^1.6.0"
"@parcel/watcher-darwin-arm64@2.3.0":
"integrity" "sha512-mKY+oijI4ahBMc/GygVGvEdOq0L4DxhYgwQqYAz/7yPzuGi79oXrZG52WdpGA1wLBPrYb0T8uBaGFo7I6rvSKw=="
"resolved" "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.3.0.tgz"
"version" "2.3.0"
"@parcel/watcher-wasm@2.3.0":
"integrity" "sha512-ejBAX8H0ZGsD8lSICDNyMbSEtPMWgDL0WFCt/0z7hyf5v8Imz4rAM8xY379mBsECkq/Wdqa5WEDLqtjZ+6NxfA=="
"resolved" "https://registry.npmjs.org/@parcel/watcher-wasm/-/watcher-wasm-2.3.0.tgz"
"version" "2.3.0"
dependencies:
"is-glob" "^4.0.3"
"micromatch" "^4.0.5"
"napi-wasm" "^1.1.0"
"@parcel/watcher@^2.3.0":
"integrity" "sha512-pW7QaFiL11O0BphO+bq3MgqeX/INAk9jgBldVDYjlQPO4VddoZnF22TcF9onMhnLVHuNqBJeRf+Fj7eezi/+rQ=="
"resolved" "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.3.0.tgz"
"version" "2.3.0"
dependencies:
"detect-libc" "^1.0.3"
"is-glob" "^4.0.3"
"micromatch" "^4.0.5"
"node-addon-api" "^7.0.0"
optionalDependencies:
"@parcel/watcher-android-arm64" "2.3.0"
"@parcel/watcher-darwin-arm64" "2.3.0"
"@parcel/watcher-darwin-x64" "2.3.0"
"@parcel/watcher-freebsd-x64" "2.3.0"
"@parcel/watcher-linux-arm-glibc" "2.3.0"
"@parcel/watcher-linux-arm64-glibc" "2.3.0"
"@parcel/watcher-linux-arm64-musl" "2.3.0"
"@parcel/watcher-linux-x64-glibc" "2.3.0"
"@parcel/watcher-linux-x64-musl" "2.3.0"
"@parcel/watcher-win32-arm64" "2.3.0"
"@parcel/watcher-win32-ia32" "2.3.0"
"@parcel/watcher-win32-x64" "2.3.0"
"@polka/url@^1.0.0-next.20":
"integrity" "sha512-C16M+IYz0rgRhWZdCmK+h58JMv8vijAA61gmz2rspCSwKwzBebpdcsiUmwrtJRdphuY30i6BSLEOP8ppbNLyLg=="
"resolved" "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.23.tgz"
"version" "1.0.0-next.23"
"@radix-ui/primitive@1.0.1":
"integrity" "sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw=="
"resolved" "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@babel/runtime" "^7.13.10"
"@radix-ui/react-compose-refs@1.0.1":
"integrity" "sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw=="
"resolved" "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"@babel/runtime" "^7.13.10"