-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpnpm-lock.yaml
26066 lines (20918 loc) · 904 KB
/
pnpm-lock.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
lockfileVersion: '9.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
importers:
.:
dependencies:
'@47ng/cloak':
specifier: ^1.1.0
version: 1.1.0
'@apollo/server':
specifier: ^4.10.0
version: 4.10.4(graphql@16.8.1)
'@bull-board/api':
specifier: ^5.14.0
version: 5.17.1(@bull-board/ui@5.17.1)
'@bull-board/express':
specifier: ^5.14.0
version: 5.17.1
'@bull-board/nestjs':
specifier: ^5.14.0
version: 5.17.1(@bull-board/api@5.17.1(@bull-board/ui@5.17.1))(@bull-board/express@5.17.1)(@nestjs/common@10.3.0(reflect-metadata@0.1.14)(rxjs@7.8.1))(@nestjs/core@10.3.0)(reflect-metadata@0.1.14)(rxjs@7.8.1)
'@clack/prompts':
specifier: ^0.7.0
version: 0.7.0
'@coral-xyz/anchor':
specifier: ^0.29.0
version: 0.29.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@discordjs/rest':
specifier: ^2.2.0
version: 2.3.0
'@mantine/core':
specifier: ^7.13.4
version: 7.13.4(@mantine/hooks@7.13.4(react@18.3.1))(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mantine/dates':
specifier: ^7.13.4
version: 7.13.4(@mantine/core@7.13.4(@mantine/hooks@7.13.4(react@18.3.1))(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@7.13.4(react@18.3.1))(dayjs@1.11.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mantine/form':
specifier: ^7.13.4
version: 7.13.4(react@18.3.1)
'@mantine/hooks':
specifier: ^7.13.4
version: 7.13.4(react@18.3.1)
'@mantine/modals':
specifier: ^7.13.4
version: 7.13.4(@mantine/core@7.13.4(@mantine/hooks@7.13.4(react@18.3.1))(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@7.13.4(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mantine/notifications':
specifier: ^7.13.4
version: 7.13.4(@mantine/core@7.13.4(@mantine/hooks@7.13.4(react@18.3.1))(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@7.13.4(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@metaplex-foundation/digital-asset-standard-api':
specifier: ^1.0.0
version: 1.0.3(@metaplex-foundation/umi@0.9.1)
'@metaplex-foundation/umi':
specifier: ^0.9.0
version: 0.9.1
'@metaplex-foundation/umi-bundle-defaults':
specifier: ^0.9.0
version: 0.9.1(@metaplex-foundation/umi@0.9.1)(@solana/web3.js@1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10))
'@metaplex-foundation/umi-rpc-web3js':
specifier: ^0.9.0
version: 0.9.1(@metaplex-foundation/umi@0.9.1)(@solana/web3.js@1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10))
'@mrleebo/prisma-ast':
specifier: ^0.8.0
version: 0.8.1
'@nestjs/apollo':
specifier: ^12.0.11
version: 12.1.0(@apollo/server@4.10.4(graphql@16.8.1))(@nestjs/common@10.3.0(reflect-metadata@0.1.14)(rxjs@7.8.1))(@nestjs/core@10.3.0)(@nestjs/graphql@12.1.1(@nestjs/common@10.3.0(reflect-metadata@0.1.14)(rxjs@7.8.1))(@nestjs/core@10.3.0)(bufferutil@4.0.8)(graphql@16.8.1)(reflect-metadata@0.1.14)(ts-morph@21.0.1)(utf-8-validate@5.0.10))(graphql@16.8.1)
'@nestjs/bullmq':
specifier: ^10.1.0
version: 10.1.1(@nestjs/common@10.3.0(reflect-metadata@0.1.14)(rxjs@7.8.1))(@nestjs/core@10.3.0)(bullmq@5.7.8)
'@nestjs/common':
specifier: 10.3.0
version: 10.3.0(reflect-metadata@0.1.14)(rxjs@7.8.1)
'@nestjs/config':
specifier: ^3.1.1
version: 3.2.2(@nestjs/common@10.3.0(reflect-metadata@0.1.14)(rxjs@7.8.1))(rxjs@7.8.1)
'@nestjs/core':
specifier: 10.3.0
version: 10.3.0(@nestjs/common@10.3.0(reflect-metadata@0.1.14)(rxjs@7.8.1))(@nestjs/microservices@10.4.1)(@nestjs/platform-express@10.3.0)(reflect-metadata@0.1.14)(rxjs@7.8.1)
'@nestjs/event-emitter':
specifier: ^2.0.4
version: 2.0.4(@nestjs/common@10.3.0(reflect-metadata@0.1.14)(rxjs@7.8.1))(@nestjs/core@10.3.0)
'@nestjs/graphql':
specifier: ^12.0.11
version: 12.1.1(@nestjs/common@10.3.0(reflect-metadata@0.1.14)(rxjs@7.8.1))(@nestjs/core@10.3.0)(bufferutil@4.0.8)(graphql@16.8.1)(reflect-metadata@0.1.14)(ts-morph@21.0.1)(utf-8-validate@5.0.10)
'@nestjs/jwt':
specifier: ^10.2.0
version: 10.2.0(@nestjs/common@10.3.0(reflect-metadata@0.1.14)(rxjs@7.8.1))
'@nestjs/passport':
specifier: ^10.0.3
version: 10.0.3(@nestjs/common@10.3.0(reflect-metadata@0.1.14)(rxjs@7.8.1))(passport@0.7.0)
'@nestjs/platform-express':
specifier: 10.3.0
version: 10.3.0(@nestjs/common@10.3.0(reflect-metadata@0.1.14)(rxjs@7.8.1))(@nestjs/core@10.3.0)
'@nestjs/schedule':
specifier: ^4.0.0
version: 4.0.2(@nestjs/common@10.3.0(reflect-metadata@0.1.14)(rxjs@7.8.1))(@nestjs/core@10.3.0)
'@nestjs/serve-static':
specifier: ^4.0.0
version: 4.0.2(@nestjs/common@10.3.0(reflect-metadata@0.1.14)(rxjs@7.8.1))(@nestjs/core@10.3.0)(express@4.19.2)
'@noble/hashes':
specifier: ^1.3.3
version: 1.4.0
'@nx/devkit':
specifier: 20.0.7
version: 20.0.7(nx@20.0.7(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
'@ogma/common':
specifier: ^1.2.0
version: 1.2.0
'@ogma/nestjs-module':
specifier: ^5.1.4
version: 5.1.4(@nestjs/common@10.3.0(reflect-metadata@0.1.14)(rxjs@7.8.1))(@nestjs/core@10.3.0)(reflect-metadata@0.1.14)(rxjs@7.8.1)
'@ogma/platform-express':
specifier: ^5.0.1
version: 5.0.1(@nestjs/platform-express@10.3.0)(@ogma/nestjs-module@5.1.4(@nestjs/common@10.3.0(reflect-metadata@0.1.14)(rxjs@7.8.1))(@nestjs/core@10.3.0)(reflect-metadata@0.1.14)(rxjs@7.8.1))
'@ogma/platform-graphql':
specifier: ^5.0.1
version: 5.0.1(@nestjs/graphql@12.1.1(@nestjs/common@10.3.0(reflect-metadata@0.1.14)(rxjs@7.8.1))(@nestjs/core@10.3.0)(bufferutil@4.0.8)(graphql@16.8.1)(reflect-metadata@0.1.14)(ts-morph@21.0.1)(utf-8-validate@5.0.10))(@ogma/nestjs-module@5.1.4(@nestjs/common@10.3.0(reflect-metadata@0.1.14)(rxjs@7.8.1))(@nestjs/core@10.3.0)(reflect-metadata@0.1.14)(rxjs@7.8.1))(@ogma/platform-express@5.0.1(@nestjs/platform-express@10.3.0)(@ogma/nestjs-module@5.1.4(@nestjs/common@10.3.0(reflect-metadata@0.1.14)(rxjs@7.8.1))(@nestjs/core@10.3.0)(reflect-metadata@0.1.14)(rxjs@7.8.1)))
'@prisma/client':
specifier: 5.18.0
version: 5.18.0(prisma@5.18.0)
'@pubkey-program-library/anchor':
specifier: ^1.7.1
version: 1.7.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@pubkey-program-library/sdk':
specifier: ^1.7.1
version: 1.7.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@pubkey-ui/core':
specifier: ^1.7.0
version: 1.7.0(@types/react@18.3.1)(dayjs@1.11.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@pubkeyapp/wallet-adapter-mantine-ui':
specifier: ^2.3.0
version: 2.3.0(@mantine/core@7.13.4(@mantine/hooks@7.13.4(react@18.3.1))(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10)))(@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.24.5(@babel/core@7.24.5))(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(@tabler/icons-react@2.47.0(react@18.3.1))(react@18.3.1)
'@solana-developers/helpers':
specifier: ^2.3.0
version: 2.3.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@solana/spl-token':
specifier: ^0.4.3
version: 0.4.6(@solana/web3.js@1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(fastestsmallesttextencoderdecoder@1.0.22)(utf-8-validate@5.0.10)
'@solana/spl-token-metadata':
specifier: ^0.1.2
version: 0.1.4(@solana/web3.js@1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)
'@solana/wallet-adapter-base':
specifier: ^0.9.23
version: 0.9.23(@solana/web3.js@1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-phantom':
specifier: ^0.9.24
version: 0.9.24(@solana/web3.js@1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-react':
specifier: ^0.15.35
version: 0.15.35(@solana/web3.js@1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.1(@babel/core@7.24.5)(@babel/preset-env@7.24.5(@babel/core@7.24.5))(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
'@solana/wallet-adapter-solflare':
specifier: ^0.6.28
version: 0.6.28(@solana/web3.js@1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10))
'@solana/web3.js':
specifier: ^1.88.0
version: 1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@solflare-wallet/utl-sdk':
specifier: ^1.4.0
version: 1.4.0(@solana/web3.js@1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(fastestsmallesttextencoderdecoder@1.0.22)(utf-8-validate@5.0.10)
'@swc/helpers':
specifier: 0.5.11
version: 0.5.11
'@tabler/icons-react':
specifier: ^2.45.0
version: 2.47.0(react@18.3.1)
'@tanstack/react-query':
specifier: ^5.17.9
version: 5.36.0(react@18.3.1)
'@telegram-auth/server':
specifier: ^1.0.4
version: 1.0.4
'@willsoto/nestjs-prometheus':
specifier: ^6.0.0
version: 6.0.0(@nestjs/common@10.3.0(reflect-metadata@0.1.14)(rxjs@7.8.1))(prom-client@15.1.2)
axios:
specifier: 1.6.7
version: 1.6.7
bcrypt:
specifier: ^5.1.1
version: 5.1.1
bs58:
specifier: ^5.0.0
version: 5.0.0
buffer:
specifier: ^6.0.3
version: 6.0.3
bullmq:
specifier: ^5.1.9
version: 5.7.8
clsx:
specifier: 2.1.0
version: 2.1.0
commander:
specifier: ^12.0.0
version: 12.0.0
cookie-parser:
specifier: ^1.4.6
version: 1.4.6
discord.js:
specifier: ^14.14.1
version: 14.15.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
dotenv:
specifier: ^16.3.1
version: 16.4.5
express:
specifier: ^4.18.2
version: 4.19.2
express-serve-static-core:
specifier: ^0.1.1
version: 0.1.1
fast-equals:
specifier: ^5.0.1
version: 5.0.1
graphql:
specifier: ^16.8.1
version: 16.8.1
graphql-codegen-typescript-validation-schema:
specifier: ^0.12.1
version: 0.12.1(graphql@16.8.1)
graphql-scalars:
specifier: ^1.22.4
version: 1.23.0(graphql@16.8.1)
joi:
specifier: ^17.11.0
version: 17.13.1
jotai:
specifier: ^2.6.1
version: 2.8.0(@types/react@18.3.1)(react@18.3.1)
linkify-react:
specifier: ^4.1.3
version: 4.1.3(linkifyjs@4.1.3)(react@18.3.1)
linkifyjs:
specifier: ^4.1.3
version: 4.1.3
lru-cache:
specifier: ^10.2.0
version: 10.2.2
mantine-datatable:
specifier: ^7.12.4
version: 7.12.4(@mantine/core@7.13.4(@mantine/hooks@7.13.4(react@18.3.1))(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@7.13.4(react@18.3.1))(clsx@2.1.0)(react@18.3.1)
passport:
specifier: ^0.7.0
version: 0.7.0
passport-discord:
specifier: ^0.1.4
version: 0.1.4
passport-github:
specifier: ^1.1.0
version: 1.1.0
passport-google-oauth20:
specifier: ^2.0.0
version: 2.0.0
passport-jwt:
specifier: ^4.0.1
version: 4.0.1
passport-twitter:
specifier: ^1.0.4
version: 1.0.4
prisma:
specifier: 5.18.0
version: 5.18.0
prisma-extension-pagination:
specifier: ^0.7.4
version: 0.7.4(@prisma/client@5.18.0(prisma@5.18.0))
prisma-field-encryption:
specifier: ^1.5.2
version: 1.5.2(@prisma/client@5.18.0(prisma@5.18.0))
prom-client:
specifier: ^15.1.0
version: 15.1.2
react:
specifier: 18.3.1
version: 18.3.1
react-dom:
specifier: 18.3.1
version: 18.3.1(react@18.3.1)
react-router-dom:
specifier: 6.21.1
version: 6.21.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
reflect-metadata:
specifier: ^0.1.13
version: 0.1.14
remove:
specifier: ^0.1.5
version: 0.1.5
rxjs:
specifier: ^7.8.1
version: 7.8.1
slugify:
specifier: ^1.6.6
version: 1.6.6
timeago-react:
specifier: ^3.0.6
version: 3.0.6(react@18.3.1)
tslib:
specifier: ^2.6.2
version: 2.6.2
tweetnacl:
specifier: ^1.0.3
version: 1.0.3
zod:
specifier: ^3.22.4
version: 3.23.8
devDependencies:
'@babel/core':
specifier: ^7.23.7
version: 7.24.5
'@babel/preset-react':
specifier: ^7.23.3
version: 7.24.1(@babel/core@7.24.5)
'@graphql-codegen/add':
specifier: ^5.0.0
version: 5.0.2(graphql@16.8.1)
'@graphql-codegen/cli':
specifier: 5.0.0
version: 5.0.0(@parcel/watcher@2.4.1)(@types/node@18.19.24)(bufferutil@4.0.8)(enquirer@2.3.6)(graphql@16.8.1)(typescript@5.5.4)(utf-8-validate@5.0.10)
'@graphql-codegen/typescript':
specifier: 4.0.1
version: 4.0.1(graphql@16.8.1)
'@graphql-codegen/typescript-document-nodes':
specifier: 4.0.1
version: 4.0.1(graphql@16.8.1)
'@graphql-codegen/typescript-graphql-request':
specifier: ^6.1.0
version: 6.2.0(graphql-request@6.1.0(graphql@16.8.1))(graphql-tag@2.12.6(graphql@16.8.1))(graphql@16.8.1)
'@graphql-codegen/typescript-operations':
specifier: ^4.0.1
version: 4.2.0(graphql@16.8.1)
'@nestjs/schematics':
specifier: 10.1.0
version: 10.1.0(chokidar@3.6.0)(typescript@5.5.4)
'@nestjs/testing':
specifier: 10.3.0
version: 10.3.0(@nestjs/common@10.3.0(reflect-metadata@0.1.14)(rxjs@7.8.1))(@nestjs/core@10.3.0)(@nestjs/microservices@10.4.1)(@nestjs/platform-express@10.3.0)
'@nx/esbuild':
specifier: 20.0.7
version: 20.0.7(@babel/traverse@7.24.5)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.24)(esbuild@0.19.12)(nx@20.0.7(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.5.4)
'@nx/eslint':
specifier: 20.0.7
version: 20.0.7(@babel/traverse@7.24.5)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.24)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@20.0.7(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))
'@nx/eslint-plugin':
specifier: 20.0.7
version: 20.0.7(@babel/traverse@7.24.5)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.24)(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(nx@20.0.7(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.5.4)
'@nx/jest':
specifier: 20.0.7
version: 20.0.7(@babel/traverse@7.24.5)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.24)(node-notifier@10.0.1)(nx@20.0.7(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.24)(typescript@5.5.4))(typescript@5.5.4)
'@nx/js':
specifier: 20.0.7
version: 20.0.7(@babel/traverse@7.24.5)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.24)(nx@20.0.7(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(typescript@5.5.4)
'@nx/nest':
specifier: 20.0.7
version: 20.0.7(@babel/traverse@7.24.5)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.24)(@zkochan/js-yaml@0.0.7)(chokidar@3.6.0)(eslint@8.57.0)(node-notifier@10.0.1)(nx@20.0.7(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.24)(typescript@5.5.4))(typescript@5.5.4)
'@nx/node':
specifier: 20.0.7
version: 20.0.7(@babel/traverse@7.24.5)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.24)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(node-notifier@10.0.1)(nx@20.0.7(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.24)(typescript@5.5.4))(typescript@5.5.4)
'@nx/plugin':
specifier: 20.0.7
version: 20.0.7(@babel/traverse@7.24.5)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.24)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(node-notifier@10.0.1)(nx@20.0.7(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.24)(typescript@5.5.4))(typescript@5.5.4)
'@nx/react':
specifier: 20.0.7
version: 20.0.7(@babel/traverse@7.24.5)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.24)(@zkochan/js-yaml@0.0.7)(bufferutil@4.0.8)(eslint@8.57.0)(nx@20.0.7(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.4)(utf-8-validate@5.0.10)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.12))
'@nx/rollup':
specifier: 20.0.7
version: 20.0.7(@babel/core@7.24.5)(@babel/traverse@7.24.5)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/babel__core@7.20.5)(@types/node@18.19.24)(nx@20.0.7(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.24)(typescript@5.5.4))(typescript@5.5.4)
'@nx/webpack':
specifier: 20.0.7
version: 20.0.7(@babel/traverse@7.24.5)(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.24)(bufferutil@4.0.8)(esbuild@0.19.12)(nx@20.0.7(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.4)(utf-8-validate@5.0.10)
'@nx/workspace':
specifier: 20.0.7
version: 20.0.7(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))
'@parcel/watcher':
specifier: ^2.3.0
version: 2.4.1
'@pmmmwh/react-refresh-webpack-plugin':
specifier: ^0.5.11
version: 0.5.13(react-refresh@0.14.2)(type-fest@4.18.2)(webpack-dev-server@5.1.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.12)))(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.12))
'@svgr/webpack':
specifier: 8.1.0
version: 8.1.0(typescript@5.5.4)
'@swc-node/register':
specifier: 1.9.2
version: 1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4)
'@swc/cli':
specifier: 0.3.12
version: 0.3.12(@swc/core@1.5.7(@swc/helpers@0.5.11))(chokidar@3.6.0)
'@swc/core':
specifier: 1.5.7
version: 1.5.7(@swc/helpers@0.5.11)
'@swc/jest':
specifier: 0.2.36
version: 0.2.36(@swc/core@1.5.7(@swc/helpers@0.5.11))
'@testing-library/react':
specifier: 15.0.6
version: 15.0.6(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@types/bcrypt':
specifier: ^5.0.2
version: 5.0.2
'@types/express':
specifier: ^4.17.21
version: 4.17.21
'@types/jest':
specifier: 29.5.14
version: 29.5.14
'@types/node':
specifier: 18.19.24
version: 18.19.24
'@types/passport-discord':
specifier: ^0.1.11
version: 0.1.13
'@types/passport-github':
specifier: ^1.1.12
version: 1.1.12
'@types/passport-google-oauth20':
specifier: ^2.0.14
version: 2.0.16
'@types/passport-jwt':
specifier: ^4.0.0
version: 4.0.1
'@types/passport-twitter':
specifier: ^1.0.40
version: 1.0.40
'@types/pluralize':
specifier: ^0.0.33
version: 0.0.33
'@types/react':
specifier: 18.3.1
version: 18.3.1
'@types/react-dom':
specifier: 18.3.0
version: 18.3.0
'@typescript-eslint/eslint-plugin':
specifier: 7.18.0
version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
'@typescript-eslint/parser':
specifier: 7.18.0
version: 7.18.0(eslint@8.57.0)(typescript@5.5.4)
babel-jest:
specifier: 29.7.0
version: 29.7.0(@babel/core@7.24.5)
core-js:
specifier: 3.36.1
version: 3.36.1
dayjs:
specifier: ^1.11.10
version: 1.11.11
en-inflectors:
specifier: ^1.0.12
version: 1.0.12
esbuild:
specifier: ^0.19.2
version: 0.19.12
eslint:
specifier: 8.57.0
version: 8.57.0
eslint-config-prettier:
specifier: 9.1.0
version: 9.1.0(eslint@8.57.0)
eslint-plugin-css-modules:
specifier: ^2.12.0
version: 2.12.0(eslint@8.57.0)
eslint-plugin-import:
specifier: 2.31.0
version: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)
eslint-plugin-jsx-a11y:
specifier: 6.8.0
version: 6.8.0(eslint@8.57.0)
eslint-plugin-react:
specifier: 7.33.2
version: 7.33.2(eslint@8.57.0)
eslint-plugin-react-hooks:
specifier: 4.6.0
version: 4.6.0(eslint@8.57.0)
graphql-request:
specifier: ^6.1.0
version: 6.1.0(graphql@16.8.1)
graphql-tag:
specifier: ^2.12.6
version: 2.12.6(graphql@16.8.1)
husky:
specifier: ^8.0.3
version: 8.0.3
jest:
specifier: 29.7.0
version: 29.7.0(@types/node@18.19.24)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.24)(typescript@5.5.4))
jest-environment-jsdom:
specifier: 29.7.0
version: 29.7.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
jest-environment-node:
specifier: ^29.7.0
version: 29.7.0
lint-staged:
specifier: ^15.2.0
version: 15.2.2
nx:
specifier: 20.0.7
version: 20.0.7(@swc-node/register@1.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@swc/types@0.1.7)(typescript@5.5.4))(@swc/core@1.5.7(@swc/helpers@0.5.11))
pg:
specifier: ^8.11.3
version: 8.11.5
pluralize:
specifier: ^8.0.0
version: 8.0.0
postcss:
specifier: 8.4.38
version: 8.4.38
postcss-preset-mantine:
specifier: ^1.12.3
version: 1.15.0(postcss@8.4.38)
postcss-simple-vars:
specifier: ^7.0.1
version: 7.0.1(postcss@8.4.38)
prettier:
specifier: ^2.8.8
version: 2.8.8
react-refresh:
specifier: ^0.14.0
version: 0.14.2
ts-jest:
specifier: ^29.1.1
version: 29.1.2(@babel/core@7.24.5)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(esbuild@0.19.12)(jest@29.7.0(@types/node@18.19.24)(node-notifier@10.0.1)(ts-node@10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.24)(typescript@5.5.4)))(typescript@5.5.4)
ts-morph:
specifier: ^21.0.1
version: 21.0.1
ts-node:
specifier: 10.9.2
version: 10.9.2(@swc/core@1.5.7(@swc/helpers@0.5.11))(@types/node@18.19.24)(typescript@5.5.4)
typescript:
specifier: 5.5.4
version: 5.5.4
url-loader:
specifier: ^4.1.1
version: 4.1.1(file-loader@6.2.0(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.12)))(webpack@5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.12))
webpack:
specifier: ^5.89.0
version: 5.91.0(@swc/core@1.5.7(@swc/helpers@0.5.11))(esbuild@0.19.12)
packages:
'@47ng/cloak@1.1.0':
resolution: {integrity: sha512-47dVSPgjTiH3Fgt2CATudxJAU7Fv1WjFIo2e4tXG2UcQitqmIGf9GCgv1MnGv8ctNGPAy9gsjHnNujzuZ1bOow==}
hasBin: true
'@47ng/codec@1.1.0':
resolution: {integrity: sha512-gvtA2RjijvEiYQbURPM6/Z+ySfS4lmtQ9NovDzzT+5ekeZ3M5pGiotlT94Qd+At4AYwWp7mWJLvxFn3JR+BZbA==}
engines: {node: '>=11'}
'@adobe/css-tools@4.3.3':
resolution: {integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==}
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
'@angular-devkit/core@16.0.1':
resolution: {integrity: sha512-2uz98IqkKJlgnHbWQ7VeL4pb+snGAZXIama2KXi+k9GsRntdcw+udX8rL3G9SdUGUF+m6+147Y1oRBMHsO/v4w==}
engines: {node: ^16.14.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
chokidar: ^3.5.2
peerDependenciesMeta:
chokidar:
optional: true
'@angular-devkit/core@17.0.9':
resolution: {integrity: sha512-r5jqwpWOgowqe9KSDqJ3iSbmsEt2XPjSvRG4DSI2T9s31bReoMtreo8b7wkRa2B3hbcDnstFbn8q27VvJDqRaQ==}
engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
chokidar: ^3.5.2
peerDependenciesMeta:
chokidar:
optional: true
'@angular-devkit/schematics@16.0.1':
resolution: {integrity: sha512-A9D0LTYmiqiBa90GKcSuWb7hUouGIbm/AHbJbjL85WLLRbQA2PwKl7P5Mpd6nS/ZC0kfG4VQY3VOaDvb3qpI9g==}
engines: {node: ^16.14.0 || >=18.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
'@angular-devkit/schematics@17.0.9':
resolution: {integrity: sha512-5ti7g45F2KjDJS0DbgnOGI1GyKxGpn4XsKTYJFJrSAWj6VpuvPy/DINRrXNuRVo09VPEkqA+IW7QwaG9icptQg==}
engines: {node: ^18.13.0 || >=20.9.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
'@apollo/cache-control-types@1.0.3':
resolution: {integrity: sha512-F17/vCp7QVwom9eG7ToauIKdAxpSoadsJnqIfyryLFSkLSOEqu+eC5Z3N8OXcUVStuOMcNHlyraRsA6rRICu4g==}
peerDependencies:
graphql: 14.x || 15.x || 16.x
'@apollo/protobufjs@1.2.7':
resolution: {integrity: sha512-Lahx5zntHPZia35myYDBRuF58tlwPskwHc5CWBZC/4bMKB6siTBWwtMrkqXcsNwQiFSzSx5hKdRPUmemrEp3Gg==}
hasBin: true
'@apollo/server-gateway-interface@1.1.1':
resolution: {integrity: sha512-pGwCl/po6+rxRmDMFgozKQo2pbsSwE91TpsDBAOgf74CRDPXHHtM88wbwjab0wMMZh95QfR45GGyDIdhY24bkQ==}
peerDependencies:
graphql: 14.x || 15.x || 16.x
'@apollo/server-plugin-landing-page-graphql-playground@4.0.0':
resolution: {integrity: sha512-PBDtKI/chJ+hHeoJUUH9Kuqu58txQl00vUGuxqiC9XcReulIg7RjsyD0G1u3drX4V709bxkL5S0nTeXfRHD0qA==}
engines: {node: '>=14.0'}
deprecated: The use of GraphQL Playground in Apollo Server was supported in previous versions, but this is no longer the case as of December 31, 2022. This package exists for v4 migration purposes only. We do not intend to resolve security issues or other bugs with this package if they arise, so please migrate away from this to [Apollo Server's default Explorer](https://www.apollographql.com/docs/apollo-server/api/plugin/landing-pages) as soon as possible.
peerDependencies:
'@apollo/server': ^4.0.0
'@apollo/server@4.10.4':
resolution: {integrity: sha512-HS12CUa1wq8f5zKXOKJRwRdESFp4por9AINecpcsEUV9jsCP/NqPILgx0hCOOFJuKxmnaL7070xO6l5xmOq4Fw==}
engines: {node: '>=14.16.0'}
peerDependencies:
graphql: ^16.6.0
'@apollo/usage-reporting-protobuf@4.1.1':
resolution: {integrity: sha512-u40dIUePHaSKVshcedO7Wp+mPiZsaU6xjv9J+VyxpoU/zL6Jle+9zWeG98tr/+SZ0nZ4OXhrbb8SNr0rAPpIDA==}
'@apollo/utils.createhash@2.0.1':
resolution: {integrity: sha512-fQO4/ZOP8LcXWvMNhKiee+2KuKyqIcfHrICA+M4lj/h/Lh1H10ICcUtk6N/chnEo5HXu0yejg64wshdaiFitJg==}
engines: {node: '>=14'}
'@apollo/utils.dropunuseddefinitions@2.0.1':
resolution: {integrity: sha512-EsPIBqsSt2BwDsv8Wu76LK5R1KtsVkNoO4b0M5aK0hx+dGg9xJXuqlr7Fo34Dl+y83jmzn+UvEW+t1/GP2melA==}
engines: {node: '>=14'}
peerDependencies:
graphql: 14.x || 15.x || 16.x
'@apollo/utils.fetcher@2.0.1':
resolution: {integrity: sha512-jvvon885hEyWXd4H6zpWeN3tl88QcWnHp5gWF5OPF34uhvoR+DFqcNxs9vrRaBBSY3qda3Qe0bdud7tz2zGx1A==}
engines: {node: '>=14'}
'@apollo/utils.isnodelike@2.0.1':
resolution: {integrity: sha512-w41XyepR+jBEuVpoRM715N2ZD0xMD413UiJx8w5xnAZD2ZkSJnMJBoIzauK83kJpSgNuR6ywbV29jG9NmxjK0Q==}
engines: {node: '>=14'}
'@apollo/utils.keyvaluecache@2.1.1':
resolution: {integrity: sha512-qVo5PvUUMD8oB9oYvq4ViCjYAMWnZ5zZwEjNF37L2m1u528x5mueMlU+Cr1UinupCgdB78g+egA1G98rbJ03Vw==}
engines: {node: '>=14'}
'@apollo/utils.logger@2.0.1':
resolution: {integrity: sha512-YuplwLHaHf1oviidB7MxnCXAdHp3IqYV8n0momZ3JfLniae92eYqMIx+j5qJFX6WKJPs6q7bczmV4lXIsTu5Pg==}
engines: {node: '>=14'}
'@apollo/utils.printwithreducedwhitespace@2.0.1':
resolution: {integrity: sha512-9M4LUXV/fQBh8vZWlLvb/HyyhjJ77/I5ZKu+NBWV/BmYGyRmoEP9EVAy7LCVoY3t8BDcyCAGfxJaLFCSuQkPUg==}
engines: {node: '>=14'}
peerDependencies:
graphql: 14.x || 15.x || 16.x
'@apollo/utils.removealiases@2.0.1':
resolution: {integrity: sha512-0joRc2HBO4u594Op1nev+mUF6yRnxoUH64xw8x3bX7n8QBDYdeYgY4tF0vJReTy+zdn2xv6fMsquATSgC722FA==}
engines: {node: '>=14'}
peerDependencies:
graphql: 14.x || 15.x || 16.x
'@apollo/utils.sortast@2.0.1':
resolution: {integrity: sha512-eciIavsWpJ09za1pn37wpsCGrQNXUhM0TktnZmHwO+Zy9O4fu/WdB4+5BvVhFiZYOXvfjzJUcc+hsIV8RUOtMw==}
engines: {node: '>=14'}
peerDependencies:
graphql: 14.x || 15.x || 16.x
'@apollo/utils.stripsensitiveliterals@2.0.1':
resolution: {integrity: sha512-QJs7HtzXS/JIPMKWimFnUMK7VjkGQTzqD9bKD1h3iuPAqLsxd0mUNVbkYOPTsDhUKgcvUOfOqOJWYohAKMvcSA==}
engines: {node: '>=14'}
peerDependencies:
graphql: 14.x || 15.x || 16.x
'@apollo/utils.usagereporting@2.1.0':
resolution: {integrity: sha512-LPSlBrn+S17oBy5eWkrRSGb98sWmnEzo3DPTZgp8IQc8sJe0prDgDuppGq4NeQlpoqEHz0hQeYHAOA0Z3aQsxQ==}
engines: {node: '>=14'}
peerDependencies:
graphql: 14.x || 15.x || 16.x
'@apollo/utils.withrequired@2.0.1':
resolution: {integrity: sha512-YBDiuAX9i1lLc6GeTy1m7DGLFn/gMnvXqlalOIMjM7DeOgIacEjjfwPqb0M1CQ2v11HhR15d1NmxJoRCfrNqcA==}
engines: {node: '>=14'}
'@apollographql/graphql-playground-html@1.6.29':
resolution: {integrity: sha512-xCcXpoz52rI4ksJSdOCxeOCn2DLocxwHf9dVT/Q90Pte1LX+LY+91SFtJF3KXVHH8kEin+g1KKCQPKBjZJfWNA==}
'@ardatan/relay-compiler@12.0.0':
resolution: {integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==}
hasBin: true
peerDependencies:
graphql: '*'
'@ardatan/sync-fetch@0.0.1':
resolution: {integrity: sha512-xhlTqH0m31mnsG0tIP4ETgfSB6gXDaYYsUWTrlUV93fFQPI9dd8hE0Ot6MHLCtqgB32hwJAC3YZMWlXZw7AleA==}
engines: {node: '>=14'}
'@aws-crypto/crc32@3.0.0':
resolution: {integrity: sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA==}
'@aws-crypto/crc32c@3.0.0':
resolution: {integrity: sha512-ENNPPManmnVJ4BTXlOjAgD7URidbAznURqD0KvfREyc4o20DPYdEldU1f5cQ7Jbj0CJJSPaMIk/9ZshdB3210w==}
'@aws-crypto/ie11-detection@3.0.0':
resolution: {integrity: sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q==}
'@aws-crypto/sha1-browser@3.0.0':
resolution: {integrity: sha512-NJth5c997GLHs6nOYTzFKTbYdMNA6/1XlKVgnZoaZcQ7z7UJlOgj2JdbHE8tiYLS3fzXNCguct77SPGat2raSw==}
'@aws-crypto/sha256-browser@3.0.0':
resolution: {integrity: sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ==}
'@aws-crypto/sha256-js@3.0.0':
resolution: {integrity: sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ==}
'@aws-crypto/supports-web-crypto@3.0.0':
resolution: {integrity: sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg==}
'@aws-crypto/util@3.0.0':
resolution: {integrity: sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w==}
'@aws-sdk/client-s3@3.575.0':
resolution: {integrity: sha512-4h0YIvLNcKNqwPbxWqwHCH3KWMpRdKhfQPq7kZcZXzFRi3yVAVaAsZcH8eXZsKPlitxkfWNgvfcTXOjStL1uHA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/client-sso-oidc@3.575.0':
resolution: {integrity: sha512-YCstVaW5tAvXs+v4LR9gNAO+VRhIObjk1/knCdVQ5QQRTevtVQtdJWeNrDZYo4ATo0OHGyqGCj5Z09TWMv+e1Q==}
engines: {node: '>=16.0.0'}
'@aws-sdk/client-sso@3.575.0':
resolution: {integrity: sha512-elFWpAtktD3XBy47etG80GKXK9Lh3sNCMXLjcSs0NS0fdRIQJS2zKxC8qK22UQmdFKpXxthND5FKk7fNEqrR+g==}
engines: {node: '>=16.0.0'}
'@aws-sdk/client-sts@3.575.0':
resolution: {integrity: sha512-8MrT4J2dRiskf0JFMGL5VNBqPvc6igNa218LGBJzHXmLsm1WfGCGnce84R7U2USr8oPOenu0XzSCLvMQyZbGWQ==}
engines: {node: '>=16.0.0'}
'@aws-sdk/core@3.575.0':
resolution: {integrity: sha512-117U+kQki2XoKcYQfepmlRcNxn6rELGlOFOBQ8Z2JTBXEYHblW2ke067a0CLmxFwp/zCWuc7IGjd3in3x4Q3rg==}
engines: {node: '>=16.0.0'}
'@aws-sdk/credential-provider-env@3.575.0':
resolution: {integrity: sha512-YTgpq3rvYBXzW6OTDB00cE79evQtss/lz2GlJXgqqVXD0m7i77hGA8zb44VevP/WxtDaiSW7SSjuu8VCBGsg4g==}
engines: {node: '>=16.0.0'}
'@aws-sdk/credential-provider-http@3.575.0':
resolution: {integrity: sha512-xQfVmYI+9KqRvhWY8fyElnpcVUBBUgi/Hoji3oU6WLrUjrX98k93He7gKDQSyHf7ykMLUAJYWwsV4AjQ2j6njA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/credential-provider-ini@3.575.0':
resolution: {integrity: sha512-BdM6a/5VUuNge3c6yRuxvO+4srLoSfqHfkQGfUDfhTdTJpljlpfnc9h3z2Ni1+aueOHPZMNFWIktHDcX5wUGBg==}
engines: {node: '>=16.0.0'}
peerDependencies:
'@aws-sdk/client-sts': 3.575.0
'@aws-sdk/credential-provider-node@3.575.0':
resolution: {integrity: sha512-rEdNpqW2jEc5kwbf/s9XQywMLQlIkMjuCK6mw9sF2OVRGHGVnh+6eh/1JFx8Kj+eU51ctifQ7KaHe8dGco8HYQ==}
engines: {node: '>=16.0.0'}
'@aws-sdk/credential-provider-process@3.575.0':
resolution: {integrity: sha512-2/5NJV7MZysKglqJSQ/O8OELNcwLcH3xknabL9NagtzB7RNB2p1AUXR0UlTey9sSDLL4oCmNa/+unYuglW/Ahg==}
engines: {node: '>=16.0.0'}
'@aws-sdk/credential-provider-sso@3.575.0':
resolution: {integrity: sha512-NtXA9OPIKsqavs2F7hhLT/t2ZDjwJsvQevj31ov1NpmTNYMc7OWFWDptOG7rppsWMsk5KKmfiL2qViQJnezXNA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/credential-provider-web-identity@3.575.0':
resolution: {integrity: sha512-QcvVH7wpvpFRXGAGgCBfQeiF/ptD0NJ+Hrc8dDYfPGhFeZ0EoVQBYNphLi25xe7JZ+XbaqCKrURHZtr4fAEOJw==}
engines: {node: '>=16.0.0'}
peerDependencies:
'@aws-sdk/client-sts': 3.575.0
'@aws-sdk/middleware-bucket-endpoint@3.575.0':
resolution: {integrity: sha512-ytsp7xcmbpkVk4TLoi91YyXQh/vwSIGdJ2Awo/pi6ac5Fqe6OntPijh5GHSVj5ZrxW4haPWb6HdBmKMo4liGEw==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-expect-continue@3.575.0':
resolution: {integrity: sha512-8Nq4UtEi63MJPoYBACW5YoMKQdbrkLNGIdTyrolNRNwVS+6nQqDMvBplakCzQ1nL1rHOEEsKKc8e2BlG9SkR5A==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-flexible-checksums@3.575.0':
resolution: {integrity: sha512-UbyqN39v6s+olyuVKwX778w6J2ZuYpxb1j+KdhFtZwpMSLd/UIQ0+A71U2vB6TrC52OEW0jIXEEBv6PcMBz9nw==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-host-header@3.575.0':
resolution: {integrity: sha512-V2WoLBiXNCc4rIWZt6FUcP4TN0Vk02A9PPCBWkTfyOooiqfq+WZmZjRRBpwl1+5UsvARslrKWF0VzheMRXPJLQ==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-location-constraint@3.575.0':
resolution: {integrity: sha512-MtQsLsEjSSSfm0OlQqg9PEzS1nxJDdApGoeCYLTbCzIp6hChdLZCCsDXwGg9S++24rjQsUglMhXh4WGXQ9FDnw==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-logger@3.575.0':
resolution: {integrity: sha512-7DEKx9Z11Maaye7FfhYtC8rjbM/PcFcMO2N4QEAfypcgWCj+w4gseE2OGdfAH9OFDoFc6YvLp53v16vbPjzQSg==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-recursion-detection@3.575.0':
resolution: {integrity: sha512-ri89ldRFos6KZDGaknWPS2XPO9qr+gZ7+mPaoU8YkSM1W4uKqtnUSONyc+O3CFGJrqReuGHhRq0l2Sld0bjwOw==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-sdk-s3@3.575.0':
resolution: {integrity: sha512-8cBG8/tap4F6+UigTpKu8D2bvsLgqRTmn1K86qo3LqRX0Wc5X8TVjdKA2PmG0onOOr7rqTLcP9Q02LCh3usU6Q==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-signing@3.575.0':
resolution: {integrity: sha512-frpGG7i3YngWwrYIeDq8/nbat3Gfl803qasaS112rmlPU0ezmYS1SPxpXjpIKxUUYofbzaFtRBAOHU1u7GnWew==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-ssec@3.575.0':
resolution: {integrity: sha512-rEFt2w3DdlmPsHRvVXOW6rNDIPE7UaEZ5a4LAkn78XilQYuQdhm5wtw5Ao0pJpDSVYNCZDVZaAvdHKQ1dnfwCA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/middleware-user-agent@3.575.0':
resolution: {integrity: sha512-fWlr4RfrUNS2R3PgP+WsoMYORAgv/47Lp0J0fb3dXO1YvdczNWddRbFSUX2MQxM/y9XFfQPLpLgzluhoL3Cjeg==}
engines: {node: '>=16.0.0'}
'@aws-sdk/region-config-resolver@3.575.0':
resolution: {integrity: sha512-sBJKwTWKCWu9y8FzXIijYGwkKr3tDkPXM7BylToe6W+tGkp4OirV4iXrWA9zReNwTTepoxHufofqjGK9BtcI8g==}
engines: {node: '>=16.0.0'}
'@aws-sdk/signature-v4-multi-region@3.575.0':
resolution: {integrity: sha512-QMwuLuNwnEQ51RCZX8H/lXnOJgBcJJOCgClB9usW/XujNJVq8GnpZ5E7TsQLN88G6fifmcjQWonLKummuh/zVA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/token-providers@3.575.0':
resolution: {integrity: sha512-EPNDPQoQkjKqn4D2t70qVzbfdtlaAy9KBdG58qD1yNWVxq8Rh/lXdwmB+aE2PSahtyfVikZdCRoZiFzxDh5IUA==}
engines: {node: '>=16.0.0'}
peerDependencies:
'@aws-sdk/client-sso-oidc': 3.575.0
'@aws-sdk/types@3.575.0':
resolution: {integrity: sha512-XrnolQGs0wXxdgNudirR14OgNOarH7WUif38+2Pd4onZH+L7XoILem0EgA1tRpgFpw2pFHlZCNaAHDNSBEal7g==}
engines: {node: '>=16.0.0'}
'@aws-sdk/util-arn-parser@3.568.0':
resolution: {integrity: sha512-XUKJWWo+KOB7fbnPP0+g/o5Ulku/X53t7i/h+sPHr5xxYTJJ9CYnbToo95mzxe7xWvkLrsNtJ8L+MnNn9INs2w==}
engines: {node: '>=16.0.0'}
'@aws-sdk/util-endpoints@3.575.0':
resolution: {integrity: sha512-wC5x+V6w3kRlR6X6XVINsAPDYG+Tzs3Wthlw+YLtjuPODUNZIQAqsABHahxnekFyAvse+1929Hwo+CaL+BHZGA==}
engines: {node: '>=16.0.0'}
'@aws-sdk/util-locate-window@3.568.0':
resolution: {integrity: sha512-3nh4TINkXYr+H41QaPelCceEB2FXP3fxp93YZXB/kqJvX0U9j0N0Uk45gvsjmEPzG8XxkPEeLIfT2I1M7A6Lig==}
engines: {node: '>=16.0.0'}
'@aws-sdk/util-user-agent-browser@3.575.0':
resolution: {integrity: sha512-iADonXyaXgwvC4T0qRuDWCdKInz82GX2cyezq/oqVlL8bPY7HD8jwZZruuJdq5tkaJi1EhbO4+f1ksZqOiZKvQ==}
'@aws-sdk/util-user-agent-node@3.575.0':
resolution: {integrity: sha512-kwzvBfA0LoILDOFS6BV8uOkksBHrYulP6kNXegB5eZnDSNia5DbBsXqxQ/HknNF5a429SWQw2aaQJEgQvZB1VA==}
engines: {node: '>=16.0.0'}
peerDependencies:
aws-crt: '>=1.0.0'
peerDependenciesMeta:
aws-crt:
optional: true
'@aws-sdk/util-utf8-browser@3.259.0':
resolution: {integrity: sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==}
'@aws-sdk/xml-builder@3.575.0':
resolution: {integrity: sha512-cWgAwmbFYNCFzPwxL705+lWps0F3ZvOckufd2KKoEZUmtpVw9/txUXNrPySUXSmRTSRhoatIMABNfStWR043bQ==}
engines: {node: '>=16.0.0'}
'@babel/code-frame@7.24.2':
resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.24.4':
resolution: {integrity: sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==}
engines: {node: '>=6.9.0'}
'@babel/core@7.24.5':
resolution: {integrity: sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.24.5':
resolution: {integrity: sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.22.5':
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
'@babel/helper-builder-binary-assignment-operator-visitor@7.22.15':
resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
engines: {node: '>=6.9.0'}
'@babel/helper-compilation-targets@7.23.6':
resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-create-class-features-plugin@7.24.5':
resolution: {integrity: sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-create-regexp-features-plugin@7.22.15':
resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-define-polyfill-provider@0.6.2':
resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
'@babel/helper-environment-visitor@7.22.20':
resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
engines: {node: '>=6.9.0'}
'@babel/helper-function-name@7.23.0':
resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
engines: {node: '>=6.9.0'}
'@babel/helper-hoist-variables@7.22.5':
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
'@babel/helper-member-expression-to-functions@7.24.5':
resolution: {integrity: sha512-4owRteeihKWKamtqg4JmWSsEZU445xpFRXPEwp44HbgbxdWlUV1b4Agg4lkA806Lil5XM/e+FJyS0vj5T6vmcA==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.24.3':
resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-transforms@7.24.5':
resolution: {integrity: sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-optimise-call-expression@7.22.5':
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
'@babel/helper-plugin-utils@7.24.5':
resolution: {integrity: sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-remap-async-to-generator@7.22.20':
resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-replace-supers@7.24.1':
resolution: {integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/helper-simple-access@7.24.5':
resolution: {integrity: sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-skip-transparent-expression-wrappers@7.22.5':
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
'@babel/helper-split-export-declaration@7.24.5':
resolution: {integrity: sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.24.1':
resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.24.5':
resolution: {integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.23.5':
resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
engines: {node: '>=6.9.0'}
'@babel/helper-wrap-function@7.24.5':
resolution: {integrity: sha512-/xxzuNvgRl4/HLNKvnFwdhdgN3cpLxgLROeLDl83Yx0AJ1SGvq1ak0OszTOjDfiB8Vx03eJbeDWh9r+jCCWttw==}
engines: {node: '>=6.9.0'}
'@babel/helpers@7.24.5':
resolution: {integrity: sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==}
engines: {node: '>=6.9.0'}
'@babel/highlight@7.24.5':
resolution: {integrity: sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.24.5':
resolution: {integrity: sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==}
engines: {node: '>=6.0.0'}
hasBin: true
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.5':
resolution: {integrity: sha512-LdXRi1wEMTrHVR4Zc9F8OewC3vdm5h4QB6L71zy6StmYeqGi1b3ttIO8UC+BfZKcH9jdr4aI249rBkm+3+YvHw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1':
resolution: {integrity: sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1':