-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpnpm-lock.yaml
5686 lines (5117 loc) · 300 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: '6.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
dependencies:
'@apollo/server':
specifier: 4.7.5
version: registry.npmjs.org/@apollo/server@4.7.5(graphql@16.7.1)
'@graphql-tools/load-files':
specifier: 7.0.0
version: registry.npmjs.org/@graphql-tools/load-files@7.0.0(graphql@16.7.1)
'@prisma/client':
specifier: 5.0.0
version: registry.npmjs.org/@prisma/client@5.0.0(prisma@5.0.0)
graphql-scalars:
specifier: 1.22.2
version: registry.npmjs.org/graphql-scalars@1.22.2(graphql@16.7.1)
graphql-yoga:
specifier: 4.0.3
version: registry.npmjs.org/graphql-yoga@4.0.3(graphql@16.7.1)
devDependencies:
'@eddeee888/gcg-typescript-resolver-files':
specifier: 0.5.0
version: registry.npmjs.org/@eddeee888/gcg-typescript-resolver-files@0.5.0(graphql@16.7.1)
'@faker-js/faker':
specifier: 8.0.2
version: registry.npmjs.org/@faker-js/faker@8.0.2
'@graphql-codegen/cli':
specifier: 4.0.1
version: registry.npmjs.org/@graphql-codegen/cli@4.0.1(@babel/core@7.22.9)(graphql@16.7.1)
graphql:
specifier: 16.7.1
version: registry.npmjs.org/graphql@16.7.1
prettier:
specifier: 3.0.0
version: registry.npmjs.org/prettier@3.0.0
prisma:
specifier: 5.0.0
version: registry.npmjs.org/prisma@5.0.0
tsx:
specifier: 3.12.7
version: registry.npmjs.org/tsx@3.12.7
typescript:
specifier: 5.1.6
version: registry.npmjs.org/typescript@5.1.6
packages:
registry.npmjs.org/@ampproject/remapping@2.2.1:
resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz}
name: '@ampproject/remapping'
version: 2.2.1
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/gen-mapping': registry.npmjs.org/@jridgewell/gen-mapping@0.3.3
'@jridgewell/trace-mapping': registry.npmjs.org/@jridgewell/trace-mapping@0.3.18
dev: true
registry.npmjs.org/@apollo/cache-control-types@1.0.3(graphql@16.7.1):
resolution: {integrity: sha512-F17/vCp7QVwom9eG7ToauIKdAxpSoadsJnqIfyryLFSkLSOEqu+eC5Z3N8OXcUVStuOMcNHlyraRsA6rRICu4g==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@apollo/cache-control-types/-/cache-control-types-1.0.3.tgz}
id: registry.npmjs.org/@apollo/cache-control-types/1.0.3
name: '@apollo/cache-control-types'
version: 1.0.3
peerDependencies:
graphql: 14.x || 15.x || 16.x
dependencies:
graphql: registry.npmjs.org/graphql@16.7.1
dev: false
registry.npmjs.org/@apollo/protobufjs@1.2.7:
resolution: {integrity: sha512-Lahx5zntHPZia35myYDBRuF58tlwPskwHc5CWBZC/4bMKB6siTBWwtMrkqXcsNwQiFSzSx5hKdRPUmemrEp3Gg==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@apollo/protobufjs/-/protobufjs-1.2.7.tgz}
name: '@apollo/protobufjs'
version: 1.2.7
hasBin: true
requiresBuild: true
dependencies:
'@protobufjs/aspromise': registry.npmjs.org/@protobufjs/aspromise@1.1.2
'@protobufjs/base64': registry.npmjs.org/@protobufjs/base64@1.1.2
'@protobufjs/codegen': registry.npmjs.org/@protobufjs/codegen@2.0.4
'@protobufjs/eventemitter': registry.npmjs.org/@protobufjs/eventemitter@1.1.0
'@protobufjs/fetch': registry.npmjs.org/@protobufjs/fetch@1.1.0
'@protobufjs/float': registry.npmjs.org/@protobufjs/float@1.0.2
'@protobufjs/inquire': registry.npmjs.org/@protobufjs/inquire@1.1.0
'@protobufjs/path': registry.npmjs.org/@protobufjs/path@1.1.2
'@protobufjs/pool': registry.npmjs.org/@protobufjs/pool@1.1.0
'@protobufjs/utf8': registry.npmjs.org/@protobufjs/utf8@1.1.0
'@types/long': registry.npmjs.org/@types/long@4.0.2
long: registry.npmjs.org/long@4.0.0
dev: false
registry.npmjs.org/@apollo/server-gateway-interface@1.1.1(graphql@16.7.1):
resolution: {integrity: sha512-pGwCl/po6+rxRmDMFgozKQo2pbsSwE91TpsDBAOgf74CRDPXHHtM88wbwjab0wMMZh95QfR45GGyDIdhY24bkQ==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@apollo/server-gateway-interface/-/server-gateway-interface-1.1.1.tgz}
id: registry.npmjs.org/@apollo/server-gateway-interface/1.1.1
name: '@apollo/server-gateway-interface'
version: 1.1.1
peerDependencies:
graphql: 14.x || 15.x || 16.x
dependencies:
'@apollo/usage-reporting-protobuf': registry.npmjs.org/@apollo/usage-reporting-protobuf@4.1.1
'@apollo/utils.fetcher': registry.npmjs.org/@apollo/utils.fetcher@2.0.1
'@apollo/utils.keyvaluecache': registry.npmjs.org/@apollo/utils.keyvaluecache@2.1.1
'@apollo/utils.logger': registry.npmjs.org/@apollo/utils.logger@2.0.1
graphql: registry.npmjs.org/graphql@16.7.1
dev: false
registry.npmjs.org/@apollo/server@4.7.5(graphql@16.7.1):
resolution: {integrity: sha512-XobKpTnW/jbmr0DuJ+8zBzoeL6uEat4CkBN7kOCjhXEUuCNxiLrQGrWFVDqgV7bSdOJr6o2POmZYBPNQXLdyvA==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@apollo/server/-/server-4.7.5.tgz}
id: registry.npmjs.org/@apollo/server/4.7.5
name: '@apollo/server'
version: 4.7.5
engines: {node: '>=14.16.0'}
peerDependencies:
graphql: ^16.6.0
dependencies:
'@apollo/cache-control-types': registry.npmjs.org/@apollo/cache-control-types@1.0.3(graphql@16.7.1)
'@apollo/server-gateway-interface': registry.npmjs.org/@apollo/server-gateway-interface@1.1.1(graphql@16.7.1)
'@apollo/usage-reporting-protobuf': registry.npmjs.org/@apollo/usage-reporting-protobuf@4.1.1
'@apollo/utils.createhash': registry.npmjs.org/@apollo/utils.createhash@2.0.1
'@apollo/utils.fetcher': registry.npmjs.org/@apollo/utils.fetcher@2.0.1
'@apollo/utils.isnodelike': registry.npmjs.org/@apollo/utils.isnodelike@2.0.1
'@apollo/utils.keyvaluecache': registry.npmjs.org/@apollo/utils.keyvaluecache@2.1.1
'@apollo/utils.logger': registry.npmjs.org/@apollo/utils.logger@2.0.1
'@apollo/utils.usagereporting': registry.npmjs.org/@apollo/utils.usagereporting@2.1.0(graphql@16.7.1)
'@apollo/utils.withrequired': registry.npmjs.org/@apollo/utils.withrequired@2.0.1
'@graphql-tools/schema': registry.npmjs.org/@graphql-tools/schema@9.0.19(graphql@16.7.1)
'@josephg/resolvable': registry.npmjs.org/@josephg/resolvable@1.0.1
'@types/express': registry.npmjs.org/@types/express@4.17.17
'@types/express-serve-static-core': registry.npmjs.org/@types/express-serve-static-core@4.17.35
'@types/node-fetch': registry.npmjs.org/@types/node-fetch@2.6.4
async-retry: registry.npmjs.org/async-retry@1.3.3
body-parser: registry.npmjs.org/body-parser@1.20.2
cors: registry.npmjs.org/cors@2.8.5
express: registry.npmjs.org/express@4.18.2
graphql: registry.npmjs.org/graphql@16.7.1
loglevel: registry.npmjs.org/loglevel@1.8.1
lru-cache: registry.npmjs.org/lru-cache@7.18.3
negotiator: registry.npmjs.org/negotiator@0.6.3
node-abort-controller: registry.npmjs.org/node-abort-controller@3.1.1
node-fetch: registry.npmjs.org/node-fetch@2.6.12
uuid: registry.npmjs.org/uuid@9.0.0
whatwg-mimetype: registry.npmjs.org/whatwg-mimetype@3.0.0
transitivePeerDependencies:
- encoding
- supports-color
dev: false
registry.npmjs.org/@apollo/usage-reporting-protobuf@4.1.1:
resolution: {integrity: sha512-u40dIUePHaSKVshcedO7Wp+mPiZsaU6xjv9J+VyxpoU/zL6Jle+9zWeG98tr/+SZ0nZ4OXhrbb8SNr0rAPpIDA==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@apollo/usage-reporting-protobuf/-/usage-reporting-protobuf-4.1.1.tgz}
name: '@apollo/usage-reporting-protobuf'
version: 4.1.1
dependencies:
'@apollo/protobufjs': registry.npmjs.org/@apollo/protobufjs@1.2.7
dev: false
registry.npmjs.org/@apollo/utils.createhash@2.0.1:
resolution: {integrity: sha512-fQO4/ZOP8LcXWvMNhKiee+2KuKyqIcfHrICA+M4lj/h/Lh1H10ICcUtk6N/chnEo5HXu0yejg64wshdaiFitJg==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@apollo/utils.createhash/-/utils.createhash-2.0.1.tgz}
name: '@apollo/utils.createhash'
version: 2.0.1
engines: {node: '>=14'}
dependencies:
'@apollo/utils.isnodelike': registry.npmjs.org/@apollo/utils.isnodelike@2.0.1
sha.js: registry.npmjs.org/sha.js@2.4.11
dev: false
registry.npmjs.org/@apollo/utils.dropunuseddefinitions@2.0.1(graphql@16.7.1):
resolution: {integrity: sha512-EsPIBqsSt2BwDsv8Wu76LK5R1KtsVkNoO4b0M5aK0hx+dGg9xJXuqlr7Fo34Dl+y83jmzn+UvEW+t1/GP2melA==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@apollo/utils.dropunuseddefinitions/-/utils.dropunuseddefinitions-2.0.1.tgz}
id: registry.npmjs.org/@apollo/utils.dropunuseddefinitions/2.0.1
name: '@apollo/utils.dropunuseddefinitions'
version: 2.0.1
engines: {node: '>=14'}
peerDependencies:
graphql: 14.x || 15.x || 16.x
dependencies:
graphql: registry.npmjs.org/graphql@16.7.1
dev: false
registry.npmjs.org/@apollo/utils.fetcher@2.0.1:
resolution: {integrity: sha512-jvvon885hEyWXd4H6zpWeN3tl88QcWnHp5gWF5OPF34uhvoR+DFqcNxs9vrRaBBSY3qda3Qe0bdud7tz2zGx1A==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@apollo/utils.fetcher/-/utils.fetcher-2.0.1.tgz}
name: '@apollo/utils.fetcher'
version: 2.0.1
engines: {node: '>=14'}
dev: false
registry.npmjs.org/@apollo/utils.isnodelike@2.0.1:
resolution: {integrity: sha512-w41XyepR+jBEuVpoRM715N2ZD0xMD413UiJx8w5xnAZD2ZkSJnMJBoIzauK83kJpSgNuR6ywbV29jG9NmxjK0Q==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@apollo/utils.isnodelike/-/utils.isnodelike-2.0.1.tgz}
name: '@apollo/utils.isnodelike'
version: 2.0.1
engines: {node: '>=14'}
dev: false
registry.npmjs.org/@apollo/utils.keyvaluecache@2.1.1:
resolution: {integrity: sha512-qVo5PvUUMD8oB9oYvq4ViCjYAMWnZ5zZwEjNF37L2m1u528x5mueMlU+Cr1UinupCgdB78g+egA1G98rbJ03Vw==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@apollo/utils.keyvaluecache/-/utils.keyvaluecache-2.1.1.tgz}
name: '@apollo/utils.keyvaluecache'
version: 2.1.1
engines: {node: '>=14'}
dependencies:
'@apollo/utils.logger': registry.npmjs.org/@apollo/utils.logger@2.0.1
lru-cache: registry.npmjs.org/lru-cache@7.18.3
dev: false
registry.npmjs.org/@apollo/utils.logger@2.0.1:
resolution: {integrity: sha512-YuplwLHaHf1oviidB7MxnCXAdHp3IqYV8n0momZ3JfLniae92eYqMIx+j5qJFX6WKJPs6q7bczmV4lXIsTu5Pg==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@apollo/utils.logger/-/utils.logger-2.0.1.tgz}
name: '@apollo/utils.logger'
version: 2.0.1
engines: {node: '>=14'}
dev: false
registry.npmjs.org/@apollo/utils.printwithreducedwhitespace@2.0.1(graphql@16.7.1):
resolution: {integrity: sha512-9M4LUXV/fQBh8vZWlLvb/HyyhjJ77/I5ZKu+NBWV/BmYGyRmoEP9EVAy7LCVoY3t8BDcyCAGfxJaLFCSuQkPUg==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@apollo/utils.printwithreducedwhitespace/-/utils.printwithreducedwhitespace-2.0.1.tgz}
id: registry.npmjs.org/@apollo/utils.printwithreducedwhitespace/2.0.1
name: '@apollo/utils.printwithreducedwhitespace'
version: 2.0.1
engines: {node: '>=14'}
peerDependencies:
graphql: 14.x || 15.x || 16.x
dependencies:
graphql: registry.npmjs.org/graphql@16.7.1
dev: false
registry.npmjs.org/@apollo/utils.removealiases@2.0.1(graphql@16.7.1):
resolution: {integrity: sha512-0joRc2HBO4u594Op1nev+mUF6yRnxoUH64xw8x3bX7n8QBDYdeYgY4tF0vJReTy+zdn2xv6fMsquATSgC722FA==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@apollo/utils.removealiases/-/utils.removealiases-2.0.1.tgz}
id: registry.npmjs.org/@apollo/utils.removealiases/2.0.1
name: '@apollo/utils.removealiases'
version: 2.0.1
engines: {node: '>=14'}
peerDependencies:
graphql: 14.x || 15.x || 16.x
dependencies:
graphql: registry.npmjs.org/graphql@16.7.1
dev: false
registry.npmjs.org/@apollo/utils.sortast@2.0.1(graphql@16.7.1):
resolution: {integrity: sha512-eciIavsWpJ09za1pn37wpsCGrQNXUhM0TktnZmHwO+Zy9O4fu/WdB4+5BvVhFiZYOXvfjzJUcc+hsIV8RUOtMw==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@apollo/utils.sortast/-/utils.sortast-2.0.1.tgz}
id: registry.npmjs.org/@apollo/utils.sortast/2.0.1
name: '@apollo/utils.sortast'
version: 2.0.1
engines: {node: '>=14'}
peerDependencies:
graphql: 14.x || 15.x || 16.x
dependencies:
graphql: registry.npmjs.org/graphql@16.7.1
lodash.sortby: registry.npmjs.org/lodash.sortby@4.7.0
dev: false
registry.npmjs.org/@apollo/utils.stripsensitiveliterals@2.0.1(graphql@16.7.1):
resolution: {integrity: sha512-QJs7HtzXS/JIPMKWimFnUMK7VjkGQTzqD9bKD1h3iuPAqLsxd0mUNVbkYOPTsDhUKgcvUOfOqOJWYohAKMvcSA==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@apollo/utils.stripsensitiveliterals/-/utils.stripsensitiveliterals-2.0.1.tgz}
id: registry.npmjs.org/@apollo/utils.stripsensitiveliterals/2.0.1
name: '@apollo/utils.stripsensitiveliterals'
version: 2.0.1
engines: {node: '>=14'}
peerDependencies:
graphql: 14.x || 15.x || 16.x
dependencies:
graphql: registry.npmjs.org/graphql@16.7.1
dev: false
registry.npmjs.org/@apollo/utils.usagereporting@2.1.0(graphql@16.7.1):
resolution: {integrity: sha512-LPSlBrn+S17oBy5eWkrRSGb98sWmnEzo3DPTZgp8IQc8sJe0prDgDuppGq4NeQlpoqEHz0hQeYHAOA0Z3aQsxQ==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@apollo/utils.usagereporting/-/utils.usagereporting-2.1.0.tgz}
id: registry.npmjs.org/@apollo/utils.usagereporting/2.1.0
name: '@apollo/utils.usagereporting'
version: 2.1.0
engines: {node: '>=14'}
peerDependencies:
graphql: 14.x || 15.x || 16.x
dependencies:
'@apollo/usage-reporting-protobuf': registry.npmjs.org/@apollo/usage-reporting-protobuf@4.1.1
'@apollo/utils.dropunuseddefinitions': registry.npmjs.org/@apollo/utils.dropunuseddefinitions@2.0.1(graphql@16.7.1)
'@apollo/utils.printwithreducedwhitespace': registry.npmjs.org/@apollo/utils.printwithreducedwhitespace@2.0.1(graphql@16.7.1)
'@apollo/utils.removealiases': registry.npmjs.org/@apollo/utils.removealiases@2.0.1(graphql@16.7.1)
'@apollo/utils.sortast': registry.npmjs.org/@apollo/utils.sortast@2.0.1(graphql@16.7.1)
'@apollo/utils.stripsensitiveliterals': registry.npmjs.org/@apollo/utils.stripsensitiveliterals@2.0.1(graphql@16.7.1)
graphql: registry.npmjs.org/graphql@16.7.1
dev: false
registry.npmjs.org/@apollo/utils.withrequired@2.0.1:
resolution: {integrity: sha512-YBDiuAX9i1lLc6GeTy1m7DGLFn/gMnvXqlalOIMjM7DeOgIacEjjfwPqb0M1CQ2v11HhR15d1NmxJoRCfrNqcA==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@apollo/utils.withrequired/-/utils.withrequired-2.0.1.tgz}
name: '@apollo/utils.withrequired'
version: 2.0.1
engines: {node: '>=14'}
dev: false
registry.npmjs.org/@ardatan/relay-compiler@12.0.0(graphql@16.7.1):
resolution: {integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@ardatan/relay-compiler/-/relay-compiler-12.0.0.tgz}
id: registry.npmjs.org/@ardatan/relay-compiler/12.0.0
name: '@ardatan/relay-compiler'
version: 12.0.0
hasBin: true
peerDependencies:
graphql: '*'
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/generator': registry.npmjs.org/@babel/generator@7.22.9
'@babel/parser': registry.npmjs.org/@babel/parser@7.22.7
'@babel/runtime': registry.npmjs.org/@babel/runtime@7.22.6
'@babel/traverse': registry.npmjs.org/@babel/traverse@7.22.8
'@babel/types': registry.npmjs.org/@babel/types@7.22.5
babel-preset-fbjs: registry.npmjs.org/babel-preset-fbjs@3.4.0(@babel/core@7.22.9)
chalk: registry.npmjs.org/chalk@4.1.2
fb-watchman: registry.npmjs.org/fb-watchman@2.0.2
fbjs: registry.npmjs.org/fbjs@3.0.5
glob: registry.npmjs.org/glob@7.2.3
graphql: registry.npmjs.org/graphql@16.7.1
immutable: registry.npmjs.org/immutable@3.7.6
invariant: registry.npmjs.org/invariant@2.2.4
nullthrows: registry.npmjs.org/nullthrows@1.1.1
relay-runtime: registry.npmjs.org/relay-runtime@12.0.0
signedsource: registry.npmjs.org/signedsource@1.0.0
yargs: registry.npmjs.org/yargs@15.4.1
transitivePeerDependencies:
- encoding
- supports-color
dev: true
registry.npmjs.org/@ardatan/sync-fetch@0.0.1:
resolution: {integrity: sha512-xhlTqH0m31mnsG0tIP4ETgfSB6gXDaYYsUWTrlUV93fFQPI9dd8hE0Ot6MHLCtqgB32hwJAC3YZMWlXZw7AleA==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@ardatan/sync-fetch/-/sync-fetch-0.0.1.tgz}
name: '@ardatan/sync-fetch'
version: 0.0.1
engines: {node: '>=14'}
dependencies:
node-fetch: registry.npmjs.org/node-fetch@2.6.12
transitivePeerDependencies:
- encoding
dev: true
registry.npmjs.org/@babel/code-frame@7.22.5:
resolution: {integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz}
name: '@babel/code-frame'
version: 7.22.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': registry.npmjs.org/@babel/highlight@7.22.5
dev: true
registry.npmjs.org/@babel/compat-data@7.22.9:
resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.9.tgz}
name: '@babel/compat-data'
version: 7.22.9
engines: {node: '>=6.9.0'}
dev: true
registry.npmjs.org/@babel/core@7.22.9:
resolution: {integrity: sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/core/-/core-7.22.9.tgz}
name: '@babel/core'
version: 7.22.9
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': registry.npmjs.org/@ampproject/remapping@2.2.1
'@babel/code-frame': registry.npmjs.org/@babel/code-frame@7.22.5
'@babel/generator': registry.npmjs.org/@babel/generator@7.22.9
'@babel/helper-compilation-targets': registry.npmjs.org/@babel/helper-compilation-targets@7.22.9(@babel/core@7.22.9)
'@babel/helper-module-transforms': registry.npmjs.org/@babel/helper-module-transforms@7.22.9(@babel/core@7.22.9)
'@babel/helpers': registry.npmjs.org/@babel/helpers@7.22.6
'@babel/parser': registry.npmjs.org/@babel/parser@7.22.7
'@babel/template': registry.npmjs.org/@babel/template@7.22.5
'@babel/traverse': registry.npmjs.org/@babel/traverse@7.22.8
'@babel/types': registry.npmjs.org/@babel/types@7.22.5
convert-source-map: registry.npmjs.org/convert-source-map@1.9.0
debug: registry.npmjs.org/debug@4.3.4
gensync: registry.npmjs.org/gensync@1.0.0-beta.2
json5: registry.npmjs.org/json5@2.2.3
semver: registry.npmjs.org/semver@6.3.1
transitivePeerDependencies:
- supports-color
dev: true
registry.npmjs.org/@babel/generator@7.22.9:
resolution: {integrity: sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/generator/-/generator-7.22.9.tgz}
name: '@babel/generator'
version: 7.22.9
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types@7.22.5
'@jridgewell/gen-mapping': registry.npmjs.org/@jridgewell/gen-mapping@0.3.3
'@jridgewell/trace-mapping': registry.npmjs.org/@jridgewell/trace-mapping@0.3.18
jsesc: registry.npmjs.org/jsesc@2.5.2
dev: true
registry.npmjs.org/@babel/helper-annotate-as-pure@7.22.5:
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz}
name: '@babel/helper-annotate-as-pure'
version: 7.22.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types@7.22.5
dev: true
registry.npmjs.org/@babel/helper-compilation-targets@7.22.9(@babel/core@7.22.9):
resolution: {integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.9.tgz}
id: registry.npmjs.org/@babel/helper-compilation-targets/7.22.9
name: '@babel/helper-compilation-targets'
version: 7.22.9
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/compat-data': registry.npmjs.org/@babel/compat-data@7.22.9
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-validator-option': registry.npmjs.org/@babel/helper-validator-option@7.22.5
browserslist: registry.npmjs.org/browserslist@4.21.9
lru-cache: registry.npmjs.org/lru-cache@5.1.1
semver: registry.npmjs.org/semver@6.3.1
dev: true
registry.npmjs.org/@babel/helper-create-class-features-plugin@7.22.9(@babel/core@7.22.9):
resolution: {integrity: sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.9.tgz}
id: registry.npmjs.org/@babel/helper-create-class-features-plugin/7.22.9
name: '@babel/helper-create-class-features-plugin'
version: 7.22.9
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-annotate-as-pure': registry.npmjs.org/@babel/helper-annotate-as-pure@7.22.5
'@babel/helper-environment-visitor': registry.npmjs.org/@babel/helper-environment-visitor@7.22.5
'@babel/helper-function-name': registry.npmjs.org/@babel/helper-function-name@7.22.5
'@babel/helper-member-expression-to-functions': registry.npmjs.org/@babel/helper-member-expression-to-functions@7.22.5
'@babel/helper-optimise-call-expression': registry.npmjs.org/@babel/helper-optimise-call-expression@7.22.5
'@babel/helper-replace-supers': registry.npmjs.org/@babel/helper-replace-supers@7.22.9(@babel/core@7.22.9)
'@babel/helper-skip-transparent-expression-wrappers': registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers@7.22.5
'@babel/helper-split-export-declaration': registry.npmjs.org/@babel/helper-split-export-declaration@7.22.6
semver: registry.npmjs.org/semver@6.3.1
dev: true
registry.npmjs.org/@babel/helper-environment-visitor@7.22.5:
resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz}
name: '@babel/helper-environment-visitor'
version: 7.22.5
engines: {node: '>=6.9.0'}
dev: true
registry.npmjs.org/@babel/helper-function-name@7.22.5:
resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz}
name: '@babel/helper-function-name'
version: 7.22.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': registry.npmjs.org/@babel/template@7.22.5
'@babel/types': registry.npmjs.org/@babel/types@7.22.5
dev: true
registry.npmjs.org/@babel/helper-hoist-variables@7.22.5:
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz}
name: '@babel/helper-hoist-variables'
version: 7.22.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types@7.22.5
dev: true
registry.npmjs.org/@babel/helper-member-expression-to-functions@7.22.5:
resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz}
name: '@babel/helper-member-expression-to-functions'
version: 7.22.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types@7.22.5
dev: true
registry.npmjs.org/@babel/helper-module-imports@7.22.5:
resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz}
name: '@babel/helper-module-imports'
version: 7.22.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types@7.22.5
dev: true
registry.npmjs.org/@babel/helper-module-transforms@7.22.9(@babel/core@7.22.9):
resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz}
id: registry.npmjs.org/@babel/helper-module-transforms/7.22.9
name: '@babel/helper-module-transforms'
version: 7.22.9
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-environment-visitor': registry.npmjs.org/@babel/helper-environment-visitor@7.22.5
'@babel/helper-module-imports': registry.npmjs.org/@babel/helper-module-imports@7.22.5
'@babel/helper-simple-access': registry.npmjs.org/@babel/helper-simple-access@7.22.5
'@babel/helper-split-export-declaration': registry.npmjs.org/@babel/helper-split-export-declaration@7.22.6
'@babel/helper-validator-identifier': registry.npmjs.org/@babel/helper-validator-identifier@7.22.5
dev: true
registry.npmjs.org/@babel/helper-optimise-call-expression@7.22.5:
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz}
name: '@babel/helper-optimise-call-expression'
version: 7.22.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types@7.22.5
dev: true
registry.npmjs.org/@babel/helper-plugin-utils@7.22.5:
resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz}
name: '@babel/helper-plugin-utils'
version: 7.22.5
engines: {node: '>=6.9.0'}
dev: true
registry.npmjs.org/@babel/helper-replace-supers@7.22.9(@babel/core@7.22.9):
resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz}
id: registry.npmjs.org/@babel/helper-replace-supers/7.22.9
name: '@babel/helper-replace-supers'
version: 7.22.9
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-environment-visitor': registry.npmjs.org/@babel/helper-environment-visitor@7.22.5
'@babel/helper-member-expression-to-functions': registry.npmjs.org/@babel/helper-member-expression-to-functions@7.22.5
'@babel/helper-optimise-call-expression': registry.npmjs.org/@babel/helper-optimise-call-expression@7.22.5
dev: true
registry.npmjs.org/@babel/helper-simple-access@7.22.5:
resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz}
name: '@babel/helper-simple-access'
version: 7.22.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types@7.22.5
dev: true
registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers@7.22.5:
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz}
name: '@babel/helper-skip-transparent-expression-wrappers'
version: 7.22.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types@7.22.5
dev: true
registry.npmjs.org/@babel/helper-split-export-declaration@7.22.6:
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz}
name: '@babel/helper-split-export-declaration'
version: 7.22.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmjs.org/@babel/types@7.22.5
dev: true
registry.npmjs.org/@babel/helper-string-parser@7.22.5:
resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz}
name: '@babel/helper-string-parser'
version: 7.22.5
engines: {node: '>=6.9.0'}
dev: true
registry.npmjs.org/@babel/helper-validator-identifier@7.22.5:
resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz}
name: '@babel/helper-validator-identifier'
version: 7.22.5
engines: {node: '>=6.9.0'}
dev: true
registry.npmjs.org/@babel/helper-validator-option@7.22.5:
resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz}
name: '@babel/helper-validator-option'
version: 7.22.5
engines: {node: '>=6.9.0'}
dev: true
registry.npmjs.org/@babel/helpers@7.22.6:
resolution: {integrity: sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.6.tgz}
name: '@babel/helpers'
version: 7.22.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': registry.npmjs.org/@babel/template@7.22.5
'@babel/traverse': registry.npmjs.org/@babel/traverse@7.22.8
'@babel/types': registry.npmjs.org/@babel/types@7.22.5
transitivePeerDependencies:
- supports-color
dev: true
registry.npmjs.org/@babel/highlight@7.22.5:
resolution: {integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz}
name: '@babel/highlight'
version: 7.22.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': registry.npmjs.org/@babel/helper-validator-identifier@7.22.5
chalk: registry.npmjs.org/chalk@2.4.2
js-tokens: registry.npmjs.org/js-tokens@4.0.0
dev: true
registry.npmjs.org/@babel/parser@7.22.7:
resolution: {integrity: sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/parser/-/parser-7.22.7.tgz}
name: '@babel/parser'
version: 7.22.7
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': registry.npmjs.org/@babel/types@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.9):
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz}
id: registry.npmjs.org/@babel/plugin-proposal-class-properties/7.18.6
name: '@babel/plugin-proposal-class-properties'
version: 7.18.6
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-create-class-features-plugin': registry.npmjs.org/@babel/helper-create-class-features-plugin@7.22.9(@babel/core@7.22.9)
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.22.9):
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz}
id: registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/7.20.7
name: '@babel/plugin-proposal-object-rest-spread'
version: 7.20.7
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': registry.npmjs.org/@babel/compat-data@7.22.9
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-compilation-targets': registry.npmjs.org/@babel/helper-compilation-targets@7.22.9(@babel/core@7.22.9)
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
'@babel/plugin-syntax-object-rest-spread': registry.npmjs.org/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.9)
'@babel/plugin-transform-parameters': registry.npmjs.org/@babel/plugin-transform-parameters@7.22.5(@babel/core@7.22.9)
dev: true
registry.npmjs.org/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.9):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz}
id: registry.npmjs.org/@babel/plugin-syntax-class-properties/7.12.13
name: '@babel/plugin-syntax-class-properties'
version: 7.12.13
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.22.5.tgz}
id: registry.npmjs.org/@babel/plugin-syntax-flow/7.22.5
name: '@babel/plugin-syntax-flow'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz}
id: registry.npmjs.org/@babel/plugin-syntax-import-assertions/7.22.5
name: '@babel/plugin-syntax-import-assertions'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz}
id: registry.npmjs.org/@babel/plugin-syntax-jsx/7.22.5
name: '@babel/plugin-syntax-jsx'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.9):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz}
id: registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/7.8.3
name: '@babel/plugin-syntax-object-rest-spread'
version: 7.8.3
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz}
id: registry.npmjs.org/@babel/plugin-transform-arrow-functions/7.22.5
name: '@babel/plugin-transform-arrow-functions'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz}
id: registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/7.22.5
name: '@babel/plugin-transform-block-scoped-functions'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz}
id: registry.npmjs.org/@babel/plugin-transform-block-scoping/7.22.5
name: '@babel/plugin-transform-block-scoping'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-transform-classes@7.22.6(@babel/core@7.22.9):
resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.6.tgz}
id: registry.npmjs.org/@babel/plugin-transform-classes/7.22.6
name: '@babel/plugin-transform-classes'
version: 7.22.6
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-annotate-as-pure': registry.npmjs.org/@babel/helper-annotate-as-pure@7.22.5
'@babel/helper-compilation-targets': registry.npmjs.org/@babel/helper-compilation-targets@7.22.9(@babel/core@7.22.9)
'@babel/helper-environment-visitor': registry.npmjs.org/@babel/helper-environment-visitor@7.22.5
'@babel/helper-function-name': registry.npmjs.org/@babel/helper-function-name@7.22.5
'@babel/helper-optimise-call-expression': registry.npmjs.org/@babel/helper-optimise-call-expression@7.22.5
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
'@babel/helper-replace-supers': registry.npmjs.org/@babel/helper-replace-supers@7.22.9(@babel/core@7.22.9)
'@babel/helper-split-export-declaration': registry.npmjs.org/@babel/helper-split-export-declaration@7.22.6
globals: registry.npmjs.org/globals@11.12.0
dev: true
registry.npmjs.org/@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz}
id: registry.npmjs.org/@babel/plugin-transform-computed-properties/7.22.5
name: '@babel/plugin-transform-computed-properties'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
'@babel/template': registry.npmjs.org/@babel/template@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz}
id: registry.npmjs.org/@babel/plugin-transform-destructuring/7.22.5
name: '@babel/plugin-transform-destructuring'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.22.5.tgz}
id: registry.npmjs.org/@babel/plugin-transform-flow-strip-types/7.22.5
name: '@babel/plugin-transform-flow-strip-types'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
'@babel/plugin-syntax-flow': registry.npmjs.org/@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.9)
dev: true
registry.npmjs.org/@babel/plugin-transform-for-of@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz}
id: registry.npmjs.org/@babel/plugin-transform-for-of/7.22.5
name: '@babel/plugin-transform-for-of'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz}
id: registry.npmjs.org/@babel/plugin-transform-function-name/7.22.5
name: '@babel/plugin-transform-function-name'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-compilation-targets': registry.npmjs.org/@babel/helper-compilation-targets@7.22.9(@babel/core@7.22.9)
'@babel/helper-function-name': registry.npmjs.org/@babel/helper-function-name@7.22.5
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz}
id: registry.npmjs.org/@babel/plugin-transform-literals/7.22.5
name: '@babel/plugin-transform-literals'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz}
id: registry.npmjs.org/@babel/plugin-transform-member-expression-literals/7.22.5
name: '@babel/plugin-transform-member-expression-literals'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz}
id: registry.npmjs.org/@babel/plugin-transform-modules-commonjs/7.22.5
name: '@babel/plugin-transform-modules-commonjs'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-module-transforms': registry.npmjs.org/@babel/helper-module-transforms@7.22.9(@babel/core@7.22.9)
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
'@babel/helper-simple-access': registry.npmjs.org/@babel/helper-simple-access@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-transform-object-super@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz}
id: registry.npmjs.org/@babel/plugin-transform-object-super/7.22.5
name: '@babel/plugin-transform-object-super'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
'@babel/helper-replace-supers': registry.npmjs.org/@babel/helper-replace-supers@7.22.9(@babel/core@7.22.9)
dev: true
registry.npmjs.org/@babel/plugin-transform-parameters@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz}
id: registry.npmjs.org/@babel/plugin-transform-parameters/7.22.5
name: '@babel/plugin-transform-parameters'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz}
id: registry.npmjs.org/@babel/plugin-transform-property-literals/7.22.5
name: '@babel/plugin-transform-property-literals'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.22.5.tgz}
id: registry.npmjs.org/@babel/plugin-transform-react-display-name/7.22.5
name: '@babel/plugin-transform-react-display-name'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.22.5.tgz}
id: registry.npmjs.org/@babel/plugin-transform-react-jsx/7.22.5
name: '@babel/plugin-transform-react-jsx'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-annotate-as-pure': registry.npmjs.org/@babel/helper-annotate-as-pure@7.22.5
'@babel/helper-module-imports': registry.npmjs.org/@babel/helper-module-imports@7.22.5
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
'@babel/plugin-syntax-jsx': registry.npmjs.org/@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.9)
'@babel/types': registry.npmjs.org/@babel/types@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz}
id: registry.npmjs.org/@babel/plugin-transform-shorthand-properties/7.22.5
name: '@babel/plugin-transform-shorthand-properties'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-transform-spread@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz}
id: registry.npmjs.org/@babel/plugin-transform-spread/7.22.5
name: '@babel/plugin-transform-spread'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
'@babel/helper-skip-transparent-expression-wrappers': registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers@7.22.5
dev: true
registry.npmjs.org/@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.9):
resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz}
id: registry.npmjs.org/@babel/plugin-transform-template-literals/7.22.5
name: '@babel/plugin-transform-template-literals'
version: 7.22.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmjs.org/@babel/core@7.22.9
'@babel/helper-plugin-utils': registry.npmjs.org/@babel/helper-plugin-utils@7.22.5
dev: true
registry.npmjs.org/@babel/runtime@7.22.6:
resolution: {integrity: sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.6.tgz}
name: '@babel/runtime'
version: 7.22.6
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: registry.npmjs.org/regenerator-runtime@0.13.11
dev: true
registry.npmjs.org/@babel/template@7.22.5:
resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz}
name: '@babel/template'
version: 7.22.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmjs.org/@babel/code-frame@7.22.5
'@babel/parser': registry.npmjs.org/@babel/parser@7.22.7
'@babel/types': registry.npmjs.org/@babel/types@7.22.5
dev: true
registry.npmjs.org/@babel/traverse@7.22.8:
resolution: {integrity: sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==, registry: https://registry.npmjs.com/, tarball: https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.8.tgz}
name: '@babel/traverse'
version: 7.22.8
engines: {node: '>=6.9.0'}