-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathyarn.lock
16471 lines (14928 loc) · 594 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: 10/6eebd12a5cd03cee38fcb915ef9f4ea557df6a06f642dfc7fe8eb4839eb5c9ca55a382f3604d52c14200b0c214c12af5e1f23d2a6d8e23ef2d016b105a9d6c0a
languageName: node
linkType: hard
"@alloc/quick-lru@npm:^5.2.0":
version: 5.2.0
resolution: "@alloc/quick-lru@npm:5.2.0"
checksum: 10/bdc35758b552bcf045733ac047fb7f9a07c4678b944c641adfbd41f798b4b91fffd0fdc0df2578d9b0afc7b4d636aa6e110ead5d6281a2adc1ab90efd7f057f8
languageName: node
linkType: hard
"@ampproject/remapping@npm:2.2.1, @ampproject/remapping@npm:^2.2.0":
version: 2.2.1
resolution: "@ampproject/remapping@npm:2.2.1"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.3.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 10/e15fecbf3b54c988c8b4fdea8ef514ab482537e8a080b2978cc4b47ccca7140577ca7b65ad3322dcce65bc73ee6e5b90cbfe0bbd8c766dad04d5c62ec9634c42
languageName: node
linkType: hard
"@angular-devkit/architect@npm:0.1702.3":
version: 0.1702.3
resolution: "@angular-devkit/architect@npm:0.1702.3"
dependencies:
"@angular-devkit/core": "npm:17.2.3"
rxjs: "npm:7.8.1"
checksum: 10/6e4312338ba3dd147edd8605576639be9e213f7d9b99cdf11b247d35bd9c9b27fe2acc7bd4ff2d1ef92f41f6132f55c46ccb256482c8fb25a53c7c8ab36eb2cb
languageName: node
linkType: hard
"@angular-devkit/build-angular@npm:^17.2.3":
version: 17.2.3
resolution: "@angular-devkit/build-angular@npm:17.2.3"
dependencies:
"@ampproject/remapping": "npm:2.2.1"
"@angular-devkit/architect": "npm:0.1702.3"
"@angular-devkit/build-webpack": "npm:0.1702.3"
"@angular-devkit/core": "npm:17.2.3"
"@babel/core": "npm:7.23.9"
"@babel/generator": "npm:7.23.6"
"@babel/helper-annotate-as-pure": "npm:7.22.5"
"@babel/helper-split-export-declaration": "npm:7.22.6"
"@babel/plugin-transform-async-generator-functions": "npm:7.23.9"
"@babel/plugin-transform-async-to-generator": "npm:7.23.3"
"@babel/plugin-transform-runtime": "npm:7.23.9"
"@babel/preset-env": "npm:7.23.9"
"@babel/runtime": "npm:7.23.9"
"@discoveryjs/json-ext": "npm:0.5.7"
"@ngtools/webpack": "npm:17.2.3"
"@vitejs/plugin-basic-ssl": "npm:1.1.0"
ansi-colors: "npm:4.1.3"
autoprefixer: "npm:10.4.17"
babel-loader: "npm:9.1.3"
babel-plugin-istanbul: "npm:6.1.1"
browserslist: "npm:^4.21.5"
copy-webpack-plugin: "npm:11.0.0"
critters: "npm:0.0.20"
css-loader: "npm:6.10.0"
esbuild: "npm:0.20.0"
esbuild-wasm: "npm:0.20.0"
fast-glob: "npm:3.3.2"
http-proxy-middleware: "npm:2.0.6"
https-proxy-agent: "npm:7.0.2"
inquirer: "npm:9.2.14"
jsonc-parser: "npm:3.2.1"
karma-source-map-support: "npm:1.4.0"
less: "npm:4.2.0"
less-loader: "npm:11.1.0"
license-webpack-plugin: "npm:4.0.2"
loader-utils: "npm:3.2.1"
magic-string: "npm:0.30.7"
mini-css-extract-plugin: "npm:2.8.0"
mrmime: "npm:2.0.0"
open: "npm:8.4.2"
ora: "npm:5.4.1"
parse5-html-rewriting-stream: "npm:7.0.0"
picomatch: "npm:4.0.1"
piscina: "npm:4.3.1"
postcss: "npm:8.4.35"
postcss-loader: "npm:8.1.0"
resolve-url-loader: "npm:5.0.0"
rxjs: "npm:7.8.1"
sass: "npm:1.70.0"
sass-loader: "npm:14.1.0"
semver: "npm:7.6.0"
source-map-loader: "npm:5.0.0"
source-map-support: "npm:0.5.21"
terser: "npm:5.27.0"
tree-kill: "npm:1.2.2"
tslib: "npm:2.6.2"
undici: "npm:6.6.2"
vite: "npm:5.0.12"
watchpack: "npm:2.4.0"
webpack: "npm:5.90.1"
webpack-dev-middleware: "npm:6.1.1"
webpack-dev-server: "npm:4.15.1"
webpack-merge: "npm:5.10.0"
webpack-subresource-integrity: "npm:5.1.0"
peerDependencies:
"@angular/compiler-cli": ^17.0.0
"@angular/localize": ^17.0.0
"@angular/platform-server": ^17.0.0
"@angular/service-worker": ^17.0.0
"@web/test-runner": ^0.18.0
browser-sync: ^3.0.2
jest: ^29.5.0
jest-environment-jsdom: ^29.5.0
karma: ^6.3.0
ng-packagr: ^17.0.0
protractor: ^7.0.0
tailwindcss: ^2.0.0 || ^3.0.0
typescript: ">=5.2 <5.4"
dependenciesMeta:
esbuild:
optional: true
peerDependenciesMeta:
"@angular/localize":
optional: true
"@angular/platform-server":
optional: true
"@angular/service-worker":
optional: true
"@web/test-runner":
optional: true
browser-sync:
optional: true
jest:
optional: true
jest-environment-jsdom:
optional: true
karma:
optional: true
ng-packagr:
optional: true
protractor:
optional: true
tailwindcss:
optional: true
checksum: 10/2cf8ad508db5f2ec201e751d31de0c47ae10a208c5dd6db7c78309f0494ec7cb3c4fb33871c2138f188dbe734396d3cc7bb2657c1ddaff0a79d771e02aba9298
languageName: node
linkType: hard
"@angular-devkit/build-webpack@npm:0.1702.3":
version: 0.1702.3
resolution: "@angular-devkit/build-webpack@npm:0.1702.3"
dependencies:
"@angular-devkit/architect": "npm:0.1702.3"
rxjs: "npm:7.8.1"
peerDependencies:
webpack: ^5.30.0
webpack-dev-server: ^4.0.0
checksum: 10/10834add531441ceecad911c067acfbeeca8463c86a5ea0a17be90e94b6db6f7e382032de2a24c05e7a9e843052f60c32f60ca840bd09791d2ccd2bea93473c8
languageName: node
linkType: hard
"@angular-devkit/core@npm:17.2.3":
version: 17.2.3
resolution: "@angular-devkit/core@npm:17.2.3"
dependencies:
ajv: "npm:8.12.0"
ajv-formats: "npm:2.1.1"
jsonc-parser: "npm:3.2.1"
picomatch: "npm:4.0.1"
rxjs: "npm:7.8.1"
source-map: "npm:0.7.4"
peerDependencies:
chokidar: ^3.5.2
peerDependenciesMeta:
chokidar:
optional: true
checksum: 10/80102c542f68eceb49e5cf77b7312693f67ad8ef643fa9fc5ef610b80b68ee606032a1230d00dae7f3e1a4fcc38f3290eeebaaf0ffcf3229f9ba3bff23314232
languageName: node
linkType: hard
"@angular-devkit/schematics@npm:17.2.3":
version: 17.2.3
resolution: "@angular-devkit/schematics@npm:17.2.3"
dependencies:
"@angular-devkit/core": "npm:17.2.3"
jsonc-parser: "npm:3.2.1"
magic-string: "npm:0.30.7"
ora: "npm:5.4.1"
rxjs: "npm:7.8.1"
checksum: 10/ba615ea37c600aaa970baabbb14dcc0dbce40b6c088229d60f507aa39146e49122878a0951d74b1a126ffa2912e5f78635e65c70b90c28b31ca77dfa02e0544d
languageName: node
linkType: hard
"@angular-eslint/builder@npm:17.2.1":
version: 17.2.1
resolution: "@angular-eslint/builder@npm:17.2.1"
dependencies:
"@nx/devkit": "npm:17.2.8"
nx: "npm:17.2.8"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: 10/90016808bfbc3ffbeea8922122e5dfe236dfc1e7a54fef8d58b52ebc0728301e3ecf65edee2f30ebafa5111a9c74caec43b2b435bba7b9935cc67ba864d211d5
languageName: node
linkType: hard
"@angular-eslint/bundled-angular-compiler@npm:17.2.1":
version: 17.2.1
resolution: "@angular-eslint/bundled-angular-compiler@npm:17.2.1"
checksum: 10/da55574bcbff5a83e62c319ccd56b093c2760167680b48b7eb6c15937dc52868f67d143a68df1468f2ab8aca2e078414084d37f7bf8bd75531746aaa924ca328
languageName: node
linkType: hard
"@angular-eslint/eslint-plugin-template@npm:17.2.1":
version: 17.2.1
resolution: "@angular-eslint/eslint-plugin-template@npm:17.2.1"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:17.2.1"
"@angular-eslint/utils": "npm:17.2.1"
"@typescript-eslint/type-utils": "npm:6.19.0"
"@typescript-eslint/utils": "npm:6.19.0"
aria-query: "npm:5.3.0"
axobject-query: "npm:4.0.0"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: 10/b3ff37c0c1ce38cde8dce327c6a8c0c18f0f5ed11d6d54a3585e2a11636574a760c2131c974a9c62da1b82291fe85b87292b23663fa4783413407d185d26270d
languageName: node
linkType: hard
"@angular-eslint/eslint-plugin@npm:17.2.1":
version: 17.2.1
resolution: "@angular-eslint/eslint-plugin@npm:17.2.1"
dependencies:
"@angular-eslint/utils": "npm:17.2.1"
"@typescript-eslint/utils": "npm:6.19.0"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: 10/8c7139606490a9ecbde0986a8119daed26175ec8dffaf5f53e0c8bbc56d5df18588954ac08c6ba06f42802734c8e89dc7f85aa2671321c9685d35724f7352ae2
languageName: node
linkType: hard
"@angular-eslint/schematics@npm:17.2.1":
version: 17.2.1
resolution: "@angular-eslint/schematics@npm:17.2.1"
dependencies:
"@angular-eslint/eslint-plugin": "npm:17.2.1"
"@angular-eslint/eslint-plugin-template": "npm:17.2.1"
"@nx/devkit": "npm:17.2.8"
ignore: "npm:5.3.0"
nx: "npm:17.2.8"
strip-json-comments: "npm:3.1.1"
tmp: "npm:0.2.1"
peerDependencies:
"@angular/cli": ">= 17.0.0 < 18.0.0"
checksum: 10/a3f15a9aac6db720e84cafaa8faea6082f02e64de3a7c0ad75278e1b0cd8baed57eb1e4bf9a8b46c77758ebdda7af4bd0d23afedd12c4a7162ffbd4b2b756ce1
languageName: node
linkType: hard
"@angular-eslint/template-parser@npm:17.2.1":
version: 17.2.1
resolution: "@angular-eslint/template-parser@npm:17.2.1"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:17.2.1"
eslint-scope: "npm:^8.0.0"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: 10/495bfa5b624fdf0294cddd561679e6602f3ea25491f5baf23f19deb92dbed3c90a323eb5088438c39e96b4f885215280db745f699e53631be907a0664b1c3370
languageName: node
linkType: hard
"@angular-eslint/utils@npm:17.2.1":
version: 17.2.1
resolution: "@angular-eslint/utils@npm:17.2.1"
dependencies:
"@angular-eslint/bundled-angular-compiler": "npm:17.2.1"
"@typescript-eslint/utils": "npm:6.19.0"
peerDependencies:
eslint: ^7.20.0 || ^8.0.0
typescript: "*"
checksum: 10/30c5d1dba051f669a325e4ef60defdd03d62ef8adcd7e24a76eec99a85a3b0b91cc5871055b3ea6243c34182e101be4d725aef27d1f71754a62f0d642dfcfdad
languageName: node
linkType: hard
"@angular/animations@npm:^17.2.4":
version: 17.2.4
resolution: "@angular/animations@npm:17.2.4"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 17.2.4
checksum: 10/51741c01c3866973355b0dda1554d0227a54bad3bc8748e8bfbd549d8c0b421346fb8389c24ff1eb0d8f5d9df01f1dd7d9929b9829cde7afa25b1d5c7c79fc59
languageName: node
linkType: hard
"@angular/cdk@npm:^17.2.2":
version: 17.2.2
resolution: "@angular/cdk@npm:17.2.2"
dependencies:
parse5: "npm:^7.1.2"
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": ^17.0.0 || ^18.0.0
"@angular/core": ^17.0.0 || ^18.0.0
rxjs: ^6.5.3 || ^7.4.0
dependenciesMeta:
parse5:
optional: true
checksum: 10/29a73d3a47d43292f9c93cc510e24de5fcc7a0a72754843684ca836166b83655b1efcf6da76bbfd29fab91dc02b83b91ac157debde853f3d61c1aadd05f0f613
languageName: node
linkType: hard
"@angular/cli@npm:^17.2.3":
version: 17.2.3
resolution: "@angular/cli@npm:17.2.3"
dependencies:
"@angular-devkit/architect": "npm:0.1702.3"
"@angular-devkit/core": "npm:17.2.3"
"@angular-devkit/schematics": "npm:17.2.3"
"@schematics/angular": "npm:17.2.3"
"@yarnpkg/lockfile": "npm:1.1.0"
ansi-colors: "npm:4.1.3"
ini: "npm:4.1.1"
inquirer: "npm:9.2.14"
jsonc-parser: "npm:3.2.1"
npm-package-arg: "npm:11.0.1"
npm-pick-manifest: "npm:9.0.0"
open: "npm:8.4.2"
ora: "npm:5.4.1"
pacote: "npm:17.0.6"
resolve: "npm:1.22.8"
semver: "npm:7.6.0"
symbol-observable: "npm:4.0.0"
yargs: "npm:17.7.2"
bin:
ng: bin/ng.js
checksum: 10/0906d61c75f18b3eafde28f07295eb7479a168c8fa49db3d1b6f649314f7137777519bb5a45496b23bb2995f3dd52badf48d07fdbe694fe3acc5299134cc95d2
languageName: node
linkType: hard
"@angular/common@npm:^17.2.4":
version: 17.2.4
resolution: "@angular/common@npm:17.2.4"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 17.2.4
rxjs: ^6.5.3 || ^7.4.0
checksum: 10/c12c74c7fd83789f05bd2ecf1f3cf5b734d5112df0a2ede470e812ec10c290ee6da62ac324addf812d6852be960ba53a47975ce87d4ae05d0ae96a5891269528
languageName: node
linkType: hard
"@angular/compiler-cli@npm:^17.2.4":
version: 17.2.4
resolution: "@angular/compiler-cli@npm:17.2.4"
dependencies:
"@babel/core": "npm:7.23.9"
"@jridgewell/sourcemap-codec": "npm:^1.4.14"
chokidar: "npm:^3.0.0"
convert-source-map: "npm:^1.5.1"
reflect-metadata: "npm:^0.2.0"
semver: "npm:^7.0.0"
tslib: "npm:^2.3.0"
yargs: "npm:^17.2.1"
peerDependencies:
"@angular/compiler": 17.2.4
typescript: ">=5.2 <5.4"
bin:
ng-xi18n: bundles/src/bin/ng_xi18n.js
ngc: bundles/src/bin/ngc.js
ngcc: bundles/ngcc/index.js
checksum: 10/d2b6bb5fa9b7c7e29bc420410e29e2e6f1197172fac33c8f4820cf0ed7484c4ea65fde2b4b3ac38a7e212abc70bc1ad3e8176ff1d3e029bdaf7f1c2c6714550a
languageName: node
linkType: hard
"@angular/compiler@npm:^17.2.4":
version: 17.2.4
resolution: "@angular/compiler@npm:17.2.4"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": 17.2.4
peerDependenciesMeta:
"@angular/core":
optional: true
checksum: 10/e63dc669e74391664bacd00816b28112a7eae9abcad5f98bccc154e12591dadcd8f92e2c7252a997f9d423cb3d5014fb5a255f39546bc33c57b7556bd88743ea
languageName: node
linkType: hard
"@angular/core@npm:^17.2.4":
version: 17.2.4
resolution: "@angular/core@npm:17.2.4"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
rxjs: ^6.5.3 || ^7.4.0
zone.js: ~0.14.0
checksum: 10/b4a5acdb72c06ec0af707a19b01a1ba8af4e5069be0a8bf5b80cb13eaee50575c2614fef59297ae0094f6e376e56fc97a6f4ae84c0143f283835a37d27a3d96b
languageName: node
linkType: hard
"@angular/forms@npm:^17.2.4":
version: 17.2.4
resolution: "@angular/forms@npm:17.2.4"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 17.2.4
"@angular/core": 17.2.4
"@angular/platform-browser": 17.2.4
rxjs: ^6.5.3 || ^7.4.0
checksum: 10/f348e4b2594c7733fda43c80b326e1def53c25a072ea6dc546bcf6a4721b6baa3093153473a11d1a9575338b5dd99a49d95b545ea97c7ef632eab44770dad860
languageName: node
linkType: hard
"@angular/google-maps@npm:^17.2.2":
version: 17.2.2
resolution: "@angular/google-maps@npm:17.2.2"
dependencies:
"@types/google.maps": "npm:^3.54.10"
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": ^17.0.0 || ^18.0.0
"@angular/core": ^17.0.0 || ^18.0.0
rxjs: ^6.5.3 || ^7.4.0
checksum: 10/c7838ef8770a05a14b3e08f5dd0d01cc1668559c89beaf96a120ce1c194914d76084fb4a82c29bfaac51c3410be3f14e8a4e2bd558bc0ac7e08f35eeb820a09d
languageName: node
linkType: hard
"@angular/material-experimental@npm:^17.2.2":
version: 17.2.2
resolution: "@angular/material-experimental@npm:17.2.2"
dependencies:
"@material/animation": "npm:15.0.0-canary.7f224ddd4.0"
"@material/auto-init": "npm:15.0.0-canary.7f224ddd4.0"
"@material/banner": "npm:15.0.0-canary.7f224ddd4.0"
"@material/base": "npm:15.0.0-canary.7f224ddd4.0"
"@material/button": "npm:15.0.0-canary.7f224ddd4.0"
"@material/card": "npm:15.0.0-canary.7f224ddd4.0"
"@material/checkbox": "npm:15.0.0-canary.7f224ddd4.0"
"@material/chips": "npm:15.0.0-canary.7f224ddd4.0"
"@material/circular-progress": "npm:15.0.0-canary.7f224ddd4.0"
"@material/data-table": "npm:15.0.0-canary.7f224ddd4.0"
"@material/density": "npm:15.0.0-canary.7f224ddd4.0"
"@material/dialog": "npm:15.0.0-canary.7f224ddd4.0"
"@material/dom": "npm:15.0.0-canary.7f224ddd4.0"
"@material/drawer": "npm:15.0.0-canary.7f224ddd4.0"
"@material/elevation": "npm:15.0.0-canary.7f224ddd4.0"
"@material/fab": "npm:15.0.0-canary.7f224ddd4.0"
"@material/feature-targeting": "npm:15.0.0-canary.7f224ddd4.0"
"@material/floating-label": "npm:15.0.0-canary.7f224ddd4.0"
"@material/form-field": "npm:15.0.0-canary.7f224ddd4.0"
"@material/icon-button": "npm:15.0.0-canary.7f224ddd4.0"
"@material/image-list": "npm:15.0.0-canary.7f224ddd4.0"
"@material/layout-grid": "npm:15.0.0-canary.7f224ddd4.0"
"@material/line-ripple": "npm:15.0.0-canary.7f224ddd4.0"
"@material/linear-progress": "npm:15.0.0-canary.7f224ddd4.0"
"@material/list": "npm:15.0.0-canary.7f224ddd4.0"
"@material/menu": "npm:15.0.0-canary.7f224ddd4.0"
"@material/menu-surface": "npm:15.0.0-canary.7f224ddd4.0"
"@material/notched-outline": "npm:15.0.0-canary.7f224ddd4.0"
"@material/radio": "npm:15.0.0-canary.7f224ddd4.0"
"@material/ripple": "npm:15.0.0-canary.7f224ddd4.0"
"@material/rtl": "npm:15.0.0-canary.7f224ddd4.0"
"@material/segmented-button": "npm:15.0.0-canary.7f224ddd4.0"
"@material/select": "npm:15.0.0-canary.7f224ddd4.0"
"@material/shape": "npm:15.0.0-canary.7f224ddd4.0"
"@material/slider": "npm:15.0.0-canary.7f224ddd4.0"
"@material/snackbar": "npm:15.0.0-canary.7f224ddd4.0"
"@material/switch": "npm:15.0.0-canary.7f224ddd4.0"
"@material/tab": "npm:15.0.0-canary.7f224ddd4.0"
"@material/tab-bar": "npm:15.0.0-canary.7f224ddd4.0"
"@material/tab-indicator": "npm:15.0.0-canary.7f224ddd4.0"
"@material/tab-scroller": "npm:15.0.0-canary.7f224ddd4.0"
"@material/textfield": "npm:15.0.0-canary.7f224ddd4.0"
"@material/theme": "npm:15.0.0-canary.7f224ddd4.0"
"@material/tooltip": "npm:15.0.0-canary.7f224ddd4.0"
"@material/top-app-bar": "npm:15.0.0-canary.7f224ddd4.0"
"@material/touch-target": "npm:15.0.0-canary.7f224ddd4.0"
"@material/typography": "npm:15.0.0-canary.7f224ddd4.0"
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/animations": ^17.0.0 || ^18.0.0
"@angular/cdk": 17.2.2
"@angular/common": ^17.0.0 || ^18.0.0
"@angular/core": ^17.0.0 || ^18.0.0
"@angular/forms": ^17.0.0 || ^18.0.0
"@angular/material": 17.2.2
"@angular/platform-browser": ^17.0.0 || ^18.0.0
checksum: 10/93d8754af275d4c544bf134ed7a905a06180c14b7ebfc4c17532b6df7b63de56ffb5a8619477b3473ee8b9c1d63edff87f230f93e2d210307aca726975fad188
languageName: node
linkType: hard
"@angular/material-luxon-adapter@npm:^17.2.2":
version: 17.2.2
resolution: "@angular/material-luxon-adapter@npm:17.2.2"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/core": ^17.0.0 || ^18.0.0
"@angular/material": 17.2.2
luxon: ^3.0.0
checksum: 10/4d5cfe1f909485b28b32c8c76a5b5885e0df48f80193c279943d665986722d550a0a4b91050c3b561daa12d71ebb0571ab478da95ec54484acbc715ee7082bb8
languageName: node
linkType: hard
"@angular/material@npm:^17.2.2":
version: 17.2.2
resolution: "@angular/material@npm:17.2.2"
dependencies:
"@material/animation": "npm:15.0.0-canary.7f224ddd4.0"
"@material/auto-init": "npm:15.0.0-canary.7f224ddd4.0"
"@material/banner": "npm:15.0.0-canary.7f224ddd4.0"
"@material/base": "npm:15.0.0-canary.7f224ddd4.0"
"@material/button": "npm:15.0.0-canary.7f224ddd4.0"
"@material/card": "npm:15.0.0-canary.7f224ddd4.0"
"@material/checkbox": "npm:15.0.0-canary.7f224ddd4.0"
"@material/chips": "npm:15.0.0-canary.7f224ddd4.0"
"@material/circular-progress": "npm:15.0.0-canary.7f224ddd4.0"
"@material/data-table": "npm:15.0.0-canary.7f224ddd4.0"
"@material/density": "npm:15.0.0-canary.7f224ddd4.0"
"@material/dialog": "npm:15.0.0-canary.7f224ddd4.0"
"@material/dom": "npm:15.0.0-canary.7f224ddd4.0"
"@material/drawer": "npm:15.0.0-canary.7f224ddd4.0"
"@material/elevation": "npm:15.0.0-canary.7f224ddd4.0"
"@material/fab": "npm:15.0.0-canary.7f224ddd4.0"
"@material/feature-targeting": "npm:15.0.0-canary.7f224ddd4.0"
"@material/floating-label": "npm:15.0.0-canary.7f224ddd4.0"
"@material/form-field": "npm:15.0.0-canary.7f224ddd4.0"
"@material/icon-button": "npm:15.0.0-canary.7f224ddd4.0"
"@material/image-list": "npm:15.0.0-canary.7f224ddd4.0"
"@material/layout-grid": "npm:15.0.0-canary.7f224ddd4.0"
"@material/line-ripple": "npm:15.0.0-canary.7f224ddd4.0"
"@material/linear-progress": "npm:15.0.0-canary.7f224ddd4.0"
"@material/list": "npm:15.0.0-canary.7f224ddd4.0"
"@material/menu": "npm:15.0.0-canary.7f224ddd4.0"
"@material/menu-surface": "npm:15.0.0-canary.7f224ddd4.0"
"@material/notched-outline": "npm:15.0.0-canary.7f224ddd4.0"
"@material/radio": "npm:15.0.0-canary.7f224ddd4.0"
"@material/ripple": "npm:15.0.0-canary.7f224ddd4.0"
"@material/rtl": "npm:15.0.0-canary.7f224ddd4.0"
"@material/segmented-button": "npm:15.0.0-canary.7f224ddd4.0"
"@material/select": "npm:15.0.0-canary.7f224ddd4.0"
"@material/shape": "npm:15.0.0-canary.7f224ddd4.0"
"@material/slider": "npm:15.0.0-canary.7f224ddd4.0"
"@material/snackbar": "npm:15.0.0-canary.7f224ddd4.0"
"@material/switch": "npm:15.0.0-canary.7f224ddd4.0"
"@material/tab": "npm:15.0.0-canary.7f224ddd4.0"
"@material/tab-bar": "npm:15.0.0-canary.7f224ddd4.0"
"@material/tab-indicator": "npm:15.0.0-canary.7f224ddd4.0"
"@material/tab-scroller": "npm:15.0.0-canary.7f224ddd4.0"
"@material/textfield": "npm:15.0.0-canary.7f224ddd4.0"
"@material/theme": "npm:15.0.0-canary.7f224ddd4.0"
"@material/tooltip": "npm:15.0.0-canary.7f224ddd4.0"
"@material/top-app-bar": "npm:15.0.0-canary.7f224ddd4.0"
"@material/touch-target": "npm:15.0.0-canary.7f224ddd4.0"
"@material/typography": "npm:15.0.0-canary.7f224ddd4.0"
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/animations": ^17.0.0 || ^18.0.0
"@angular/cdk": 17.2.2
"@angular/common": ^17.0.0 || ^18.0.0
"@angular/core": ^17.0.0 || ^18.0.0
"@angular/forms": ^17.0.0 || ^18.0.0
"@angular/platform-browser": ^17.0.0 || ^18.0.0
rxjs: ^6.5.3 || ^7.4.0
checksum: 10/f09dfbacb44fb9667c1c9ffbe66702d0a4f9211daa66570fd9735516a9ed25c56da0a4762a788d37c92a4de412de142e5ad55d23cb5ec52322d8733822af2cf4
languageName: node
linkType: hard
"@angular/platform-browser-dynamic@npm:^17.2.4":
version: 17.2.4
resolution: "@angular/platform-browser-dynamic@npm:17.2.4"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 17.2.4
"@angular/compiler": 17.2.4
"@angular/core": 17.2.4
"@angular/platform-browser": 17.2.4
checksum: 10/3ce722ac75ff835e85405dd2647dc67e6731fb7373c088ca9d7a55eccbb9d51693bf3aa0b4d47fb263bb4bc321a1775526499a88f1a114e9406e8f68d4d6af09
languageName: node
linkType: hard
"@angular/platform-browser@npm:^17.2.4":
version: 17.2.4
resolution: "@angular/platform-browser@npm:17.2.4"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/animations": 17.2.4
"@angular/common": 17.2.4
"@angular/core": 17.2.4
peerDependenciesMeta:
"@angular/animations":
optional: true
checksum: 10/a64ee9d4d58e4ff29b14c286f7aca9efa5f7d973c71da5b8f8ea804237546eec2c222815429b28338d20c4e399f155516528dd22e149da22f0c1e848dbfa342f
languageName: node
linkType: hard
"@angular/router@npm:^17.2.4":
version: 17.2.4
resolution: "@angular/router@npm:17.2.4"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 17.2.4
"@angular/core": 17.2.4
"@angular/platform-browser": 17.2.4
rxjs: ^6.5.3 || ^7.4.0
checksum: 10/ff78d1ca43c92eeb4895964304f19466846456bdeddddb129805be17961ab78b42a5bade5d0461c6aa06787caa9b1474e0189ce8c090436080768af859408c10
languageName: node
linkType: hard
"@angular/service-worker@npm:^17.2.4":
version: 17.2.4
resolution: "@angular/service-worker@npm:17.2.4"
dependencies:
tslib: "npm:^2.3.0"
peerDependencies:
"@angular/common": 17.2.4
"@angular/core": 17.2.4
bin:
ngsw-config: ngsw-config.js
checksum: 10/b216ea90899df48fa68cdcd34c3dc2ac771b8d3c7404b830c80d90d4363c2a8347fedcfedfdba98e26d5ee610cf0deffeef3c31fac0a1cb1155a92dfd3712b85
languageName: node
linkType: hard
"@apollo/client@npm:3.9.6":
version: 3.9.6
resolution: "@apollo/client@npm:3.9.6"
dependencies:
"@graphql-typed-document-node/core": "npm:^3.1.1"
"@wry/caches": "npm:^1.0.0"
"@wry/equality": "npm:^0.5.6"
"@wry/trie": "npm:^0.5.0"
graphql-tag: "npm:^2.12.6"
hoist-non-react-statics: "npm:^3.3.2"
optimism: "npm:^0.18.0"
prop-types: "npm:^15.7.2"
rehackt: "npm:0.0.6"
response-iterator: "npm:^0.2.6"
symbol-observable: "npm:^4.0.0"
ts-invariant: "npm:^0.10.3"
tslib: "npm:^2.3.0"
zen-observable-ts: "npm:^1.2.5"
peerDependencies:
graphql: ^15.0.0 || ^16.0.0
graphql-ws: ^5.5.5
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
subscriptions-transport-ws: ^0.9.0 || ^0.11.0
peerDependenciesMeta:
graphql-ws:
optional: true
react:
optional: true
react-dom:
optional: true
subscriptions-transport-ws:
optional: true
checksum: 10/8455e8fe6a2a757bff9c814aec0c152543a920587a4a4278acf44c86f373d4923e4f48912aa88582504d8a56cd6e305656d8f290d8d1357834ec83e63c0b9592
languageName: node
linkType: hard
"@ardatan/relay-compiler@npm:12.0.0":
version: 12.0.0
resolution: "@ardatan/relay-compiler@npm:12.0.0"
dependencies:
"@babel/core": "npm:^7.14.0"
"@babel/generator": "npm:^7.14.0"
"@babel/parser": "npm:^7.14.0"
"@babel/runtime": "npm:^7.0.0"
"@babel/traverse": "npm:^7.14.0"
"@babel/types": "npm:^7.0.0"
babel-preset-fbjs: "npm:^3.4.0"
chalk: "npm:^4.0.0"
fb-watchman: "npm:^2.0.0"
fbjs: "npm:^3.0.0"
glob: "npm:^7.1.1"
immutable: "npm:~3.7.6"
invariant: "npm:^2.2.4"
nullthrows: "npm:^1.1.1"
relay-runtime: "npm:12.0.0"
signedsource: "npm:^1.0.0"
yargs: "npm:^15.3.1"
peerDependencies:
graphql: "*"
bin:
relay-compiler: bin/relay-compiler
checksum: 10/60896560fd282ccc9e705fa18c685d23783f97670fa44be287beaf9d49acfd1a6bbc19daf3e55d9cffdf385ef883be36f7acf5bdcf61c46483e31db9e4e71884
languageName: node
linkType: hard
"@ardatan/sync-fetch@npm:^0.0.1":
version: 0.0.1
resolution: "@ardatan/sync-fetch@npm:0.0.1"
dependencies:
node-fetch: "npm:^2.6.1"
checksum: 10/ee21741badecb18fb9a18a404275e25272f67ade914f98885de79ccecba3403b8a6357e6b033a028e24f0d902197dd541655309d7789ebacd7ad981bf1f12618
languageName: node
linkType: hard
"@auth0/auth0-angular@npm:^2.2.3":
version: 2.2.3
resolution: "@auth0/auth0-angular@npm:2.2.3"
dependencies:
"@auth0/auth0-spa-js": "npm:^2.0.1"
tslib: "npm:^2.0.0"
peerDependencies:
"@angular/common": ">=13"
"@angular/core": ">=13"
"@angular/router": ">=13"
checksum: 10/d651055a332427f32952cdfe3912b8c54e8266975af41456adee50c1ccc8703723ee8c1a3a9e0c6defa9f7f34e89f0ff4c669f5bb01ec62523beeb15694f51cb
languageName: node
linkType: hard
"@auth0/auth0-spa-js@npm:^2.0.1":
version: 2.1.1
resolution: "@auth0/auth0-spa-js@npm:2.1.1"
checksum: 10/87169081fd6e3da36537c005a2935a8bf0ba653e4c7379f4aea24c9a09a89eb52fb34088c12312aa730205500d5d20cd7bc0806a898cd65a8a37f4da73bd7007
languageName: node
linkType: hard
"@azure/abort-controller@npm:^1.0.0":
version: 1.1.0
resolution: "@azure/abort-controller@npm:1.1.0"
dependencies:
tslib: "npm:^2.2.0"
checksum: 10/1efe8735cfe6411f42ab9dda86be627073e0e3345a89bd5d0560175523ab3939db2c82fd17965a49fc70513377866539c91a5c73c871b5a0d771329ffae87dda
languageName: node
linkType: hard
"@azure/core-auth@npm:^1.3.0":
version: 1.5.0
resolution: "@azure/core-auth@npm:1.5.0"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-util": "npm:^1.1.0"
tslib: "npm:^2.2.0"
checksum: 10/07d93f672e9381c40c2c71ddbd9bbf9f0c6f617acd51ecf7d3481373076cb13921788512c5c5a8ad42ff3c1c9e610d56e0f6e02198924f4a3ec3b958b2dffc9f
languageName: node
linkType: hard
"@azure/core-http@npm:^3.0.0":
version: 3.0.2
resolution: "@azure/core-http@npm:3.0.2"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-auth": "npm:^1.3.0"
"@azure/core-tracing": "npm:1.0.0-preview.13"
"@azure/core-util": "npm:^1.1.1"
"@azure/logger": "npm:^1.0.0"
"@types/node-fetch": "npm:^2.5.0"
"@types/tunnel": "npm:^0.0.3"
form-data: "npm:^4.0.0"
node-fetch: "npm:^2.6.7"
process: "npm:^0.11.10"
tslib: "npm:^2.2.0"
tunnel: "npm:^0.0.6"
uuid: "npm:^8.3.0"
xml2js: "npm:^0.5.0"
checksum: 10/d00ca72083f7ae808d541847f548232c5966077aea411bbb173dede32154ce6a518410bbf4286736c3338a45b4f8635d839f62ed5c33070789523f2aeced549b
languageName: node
linkType: hard
"@azure/core-lro@npm:^2.2.0":
version: 2.5.4
resolution: "@azure/core-lro@npm:2.5.4"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-util": "npm:^1.2.0"
"@azure/logger": "npm:^1.0.0"
tslib: "npm:^2.2.0"
checksum: 10/aed94ae345e10be449c15b64c438d347c1823c24d7e61dbfc747001d52fd1ff4988f9dce25383ed7782c91ff2a3d4ded0fb05fb01641dd643e344d986d06405a
languageName: node
linkType: hard
"@azure/core-paging@npm:^1.1.1":
version: 1.5.0
resolution: "@azure/core-paging@npm:1.5.0"
dependencies:
tslib: "npm:^2.2.0"
checksum: 10/b02bbd7b3b00e7bb86f7c1e1e4542d5fb6ebadd7bb33a03112a0b0608dc43a936e271d8a3535ba548f617fc675393bc3d2882e54979e9a05baa321cd109585fc
languageName: node
linkType: hard
"@azure/core-tracing@npm:1.0.0-preview.13":
version: 1.0.0-preview.13
resolution: "@azure/core-tracing@npm:1.0.0-preview.13"
dependencies:
"@opentelemetry/api": "npm:^1.0.1"
tslib: "npm:^2.2.0"
checksum: 10/7a1832fdc7e3a6330a7714b68dcfc210258e52e1f003aaeb8174e0d6675466caf9bb11d977891d0445808119df4ab9045fb6d2888be4a4b6efa1404f02af5a9d
languageName: node
linkType: hard
"@azure/core-util@npm:^1.1.0, @azure/core-util@npm:^1.1.1, @azure/core-util@npm:^1.2.0":
version: 1.4.0
resolution: "@azure/core-util@npm:1.4.0"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
tslib: "npm:^2.2.0"
checksum: 10/8f9406407f3b9597b5348af4192b3358a3c516e2e148ec62cfc55d87c81f74eb5df59fa708c8823b029aa1e70dedd37854ee11093fd309f21ca821cb2d943ea2
languageName: node
linkType: hard
"@azure/logger@npm:^1.0.0":
version: 1.0.4
resolution: "@azure/logger@npm:1.0.4"
dependencies:
tslib: "npm:^2.2.0"
checksum: 10/146359bf94d0049ae5da94f71b045a14fbd8e656db39639a57d0dda0f4dcd3c1cfdf9436f27e8ac9acd3b654d9d81d8dca437f13f78822b79e1b7d46d589ce9d
languageName: node
linkType: hard
"@azure/storage-blob@npm:^12.17.0":
version: 12.17.0
resolution: "@azure/storage-blob@npm:12.17.0"
dependencies:
"@azure/abort-controller": "npm:^1.0.0"
"@azure/core-http": "npm:^3.0.0"
"@azure/core-lro": "npm:^2.2.0"
"@azure/core-paging": "npm:^1.1.1"
"@azure/core-tracing": "npm:1.0.0-preview.13"
"@azure/logger": "npm:^1.0.0"
events: "npm:^3.0.0"
tslib: "npm:^2.2.0"
checksum: 10/6a9279103dae129bd0374a59e2468f45e09e11491b2fdede737956f53c0d42e9e9e06db23d3e619033cfa459a786418d84adaf440b767ea3ea03f5bfd206c8af
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/code-frame@npm:7.22.5"
dependencies:
"@babel/highlight": "npm:^7.22.5"
checksum: 10/b1ac7de75859699a9118c5247f489cc943d8d041339323904cd8140592993762f50abc14bc49b6703cb8a94b1aa90d6df2599625825e7ae470c9283b4a6170aa
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.22.10":
version: 7.22.10
resolution: "@babel/code-frame@npm:7.22.10"
dependencies:
"@babel/highlight": "npm:^7.22.10"
chalk: "npm:^2.4.2"
checksum: 10/53620d831c8f2230a7d2fbe833c01c071740a642317c960d45cda9b0b2d0492e152e00ab45aad8b55329ba5de647354b95f42b546fb905c0b7acf78d3f2d3ecd
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.22.13":
version: 7.22.13
resolution: "@babel/code-frame@npm:7.22.13"
dependencies:
"@babel/highlight": "npm:^7.22.13"
chalk: "npm:^2.4.2"
checksum: 10/bf6ae6ba3a510adfda6a211b4a89b0f1c98ca1352b745c077d113f3b568141e0d44ce750b9ac2a80143ba5c8c4080c50fcfc1aa11d86e194ea6785f62520eb5a
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.23.5":
version: 7.23.5
resolution: "@babel/code-frame@npm:7.23.5"
dependencies:
"@babel/highlight": "npm:^7.23.4"
chalk: "npm:^2.4.2"
checksum: 10/44e58529c9d93083288dc9e649c553c5ba997475a7b0758cc3ddc4d77b8a7d985dbe78cc39c9bbc61f26d50af6da1ddf0a3427eae8cc222a9370619b671ed8f5
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.22.9":
version: 7.22.9
resolution: "@babel/compat-data@npm:7.22.9"
checksum: 10/6797f59857917e57e1765811e4f48371f2bc6063274be012e380e83cbc1a4f7931d616c235df56404134aa4bb4775ee61f7b382688314e1b625a4d51caabd734
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.23.3":
version: 7.23.3
resolution: "@babel/compat-data@npm:7.23.3"
checksum: 10/a3d6c728150c8eb124a77227176723dfd7fd807e731c5bd01d041ae9e6a4efce32f88e6479ad17df9883bb296e181e650aa0034df7e42a3ea130df4c9b0a26fa
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.23.5":
version: 7.23.5
resolution: "@babel/compat-data@npm:7.23.5"
checksum: 10/088f14f646ecbddd5ef89f120a60a1b3389a50a9705d44603dca77662707d0175a5e0e0da3943c3298f1907a4ab871468656fbbf74bb7842cd8b0686b2c19736
languageName: node
linkType: hard
"@babel/core@npm:7.23.9":
version: 7.23.9
resolution: "@babel/core@npm:7.23.9"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.23.5"
"@babel/generator": "npm:^7.23.6"
"@babel/helper-compilation-targets": "npm:^7.23.6"
"@babel/helper-module-transforms": "npm:^7.23.3"
"@babel/helpers": "npm:^7.23.9"
"@babel/parser": "npm:^7.23.9"
"@babel/template": "npm:^7.23.9"
"@babel/traverse": "npm:^7.23.9"
"@babel/types": "npm:^7.23.9"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
checksum: 10/268cdbb86bef1b8ea5b1300f2f325e56a1740a5051360cb228ffeaa0f80282b6674f3a2b4d6466adb0691183759b88d4c37b4a4f77232c84a49ed771c84cdc27
languageName: node
linkType: hard
"@babel/core@npm:^7.12.3, @babel/core@npm:^7.14.0":
version: 7.22.9
resolution: "@babel/core@npm:7.22.9"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.22.5"
"@babel/generator": "npm:^7.22.9"
"@babel/helper-compilation-targets": "npm:^7.22.9"
"@babel/helper-module-transforms": "npm:^7.22.9"
"@babel/helpers": "npm:^7.22.6"
"@babel/parser": "npm:^7.22.7"
"@babel/template": "npm:^7.22.5"
"@babel/traverse": "npm:^7.22.8"
"@babel/types": "npm:^7.22.5"
convert-source-map: "npm:^1.7.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.2"
semver: "npm:^6.3.1"
checksum: 10/0c209a850651e23acd5662fecbd928a4805294579e13b28d1dc7adfb9e3ad31c500e2c5c3db2c8ea18c1f3613b0aed3e24652089652efc8401d824b88962bcf9
languageName: node
linkType: hard
"@babel/core@npm:^7.22.9":
version: 7.22.10
resolution: "@babel/core@npm:7.22.10"
dependencies:
"@ampproject/remapping": "npm:^2.2.0"
"@babel/code-frame": "npm:^7.22.10"
"@babel/generator": "npm:^7.22.10"
"@babel/helper-compilation-targets": "npm:^7.22.10"
"@babel/helper-module-transforms": "npm:^7.22.9"
"@babel/helpers": "npm:^7.22.10"
"@babel/parser": "npm:^7.22.10"
"@babel/template": "npm:^7.22.5"
"@babel/traverse": "npm:^7.22.10"
"@babel/types": "npm:^7.22.10"
convert-source-map: "npm:^1.7.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.2"
semver: "npm:^6.3.1"
checksum: 10/3d8be31a9c1174941b1a56e754c20943bf4d0af4b6fd44d02bfd219d9c5ce268fa3fdc9a91b7df7a7f0668fa7ac32e6d37861d7bb43fec30ad9152dcedcc7013
languageName: node
linkType: hard
"@babel/generator@npm:7.23.6, @babel/generator@npm:^7.23.6":
version: 7.23.6
resolution: "@babel/generator@npm:7.23.6"
dependencies:
"@babel/types": "npm:^7.23.6"
"@jridgewell/gen-mapping": "npm:^0.3.2"
"@jridgewell/trace-mapping": "npm:^0.3.17"
jsesc: "npm:^2.5.1"
checksum: 10/864090d5122c0aa3074471fd7b79d8a880c1468480cbd28925020a3dcc7eb6e98bedcdb38983df299c12b44b166e30915b8085a7bc126e68fa7e2aadc7bd1ac5
languageName: node
linkType: hard
"@babel/generator@npm:^7.14.0, @babel/generator@npm:^7.18.13, @babel/generator@npm:^7.22.7, @babel/generator@npm:^7.22.9":
version: 7.22.9
resolution: "@babel/generator@npm:7.22.9"
dependencies:
"@babel/types": "npm:^7.22.5"
"@jridgewell/gen-mapping": "npm:^0.3.2"
"@jridgewell/trace-mapping": "npm:^0.3.17"
jsesc: "npm:^2.5.1"
checksum: 10/1ee43f99512c51d594c8992f4c4cd07d2843eb58cf3c22d1f605906b9c0ed89640bdcea2c8d583e75a8032a49bb4d950d2055007ecb75af404ebc2db8a513b94
languageName: node
linkType: hard
"@babel/generator@npm:^7.22.10":
version: 7.22.10
resolution: "@babel/generator@npm:7.22.10"
dependencies:
"@babel/types": "npm:^7.22.10"
"@jridgewell/gen-mapping": "npm:^0.3.2"
"@jridgewell/trace-mapping": "npm:^0.3.17"
jsesc: "npm:^2.5.1"