-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
1443 lines (1443 loc) · 58.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "web-for-vite-project-template",
"version": "1.0.0",
"description": "This is a web for Vite project template.",
"keywords": [
"CSS",
"CSS3",
"HTML",
"HTML5",
"JavaScript",
"TypeScript",
"WebAssembly",
"Web Components",
"ECMAScript6",
"ES6",
"ES7",
"ES8",
"ES9",
"ES10",
"ES11",
"ES12",
"ES13",
"ES14",
"ES15",
"ES2015",
"ES2016",
"ES2017",
"ES2018",
"ES2019",
"ES2020",
"ES2021",
"ES2022",
"ES2023",
"ES2024",
"ESNext",
"ESM",
"函数式编程",
"面向对象编程",
"Vite 5",
"ESBuild",
"Rollup 4",
"微前端",
"Module Federation",
"Vue 2",
"Vue 3",
"EJS",
"FlexLayout",
"GridLayout",
"PWA",
"Web Worker",
"Shared Worker",
"Service Worker",
"IndexedDB",
"MongoDB",
"GraphQL",
"RESTful API",
"Deno",
"Node",
"Go",
"SSE",
"Web Socket",
"HTTP",
"HTTPS",
"HTTP/1.1",
"HTTP/2",
"HTTP/3"
],
"homepage": "https://github.com/LP1994/web-for-vite-project-template",
"repository": {
"type": "git",
"url": "https://github.com/LP1994/web-for-vite-project-template.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/LP1994/web-for-vite-project-template/issues"
},
"author": {
"name": "LP1994",
"email": "[email protected]",
"url": "https://github.com/LP1994"
},
"license": "MIT",
"os": [
"aix",
"android",
"darwin",
"freebsd",
"linux",
"openbsd",
"sunos",
"win32"
],
"cpu": [
"arm",
"arm64",
"ia32",
"loong64",
"mips",
"mipsel",
"ppc",
"ppc64",
"riscv64",
"s390",
"s390x",
"x64"
],
"private": true,
"engines": {
"node": ">=23.1.0",
"npm": ">=10.9.0"
},
"browserslist": [
"Chrome >= 130",
"Android >= 130",
"ChromeAndroid >= 130",
"Edge >= 130",
"Firefox >= 132",
"FirefoxAndroid >= 132",
"Safari >= 18",
"iOS >= 18",
"Opera >= 114"
],
"sideEffects": [
"**/*.se.*",
"**/*.se.js",
"**/*.se.commonjs.js",
"**/*.se.esm.js",
"**/*.se.cjs",
"**/*.se.commonjs.cjs",
"**/*.se.mjs",
"**/*.se.esm.mjs",
"**/*.se.ts",
"**/*.se.commonjs.ts",
"**/*.se.esm.ts",
"**/*.se.cts",
"**/*.se.commonjs.cts",
"**/*.se.mts",
"**/*.se.esm.mts",
"**/*.se.tsx",
"**/*.se.commonjs.tsx",
"**/*.se.esm.tsx",
"**/*.se.jsx",
"**/*.se.commonjs.jsx",
"**/*.se.esm.jsx",
"**/*.css",
"**/*.scss",
"**/*.less",
"**/*.sass",
"**/*.styl",
"**/*.stylus",
"**/*.pcss",
"**/*.postcss"
],
"scripts": {
"命令说明": "为什么没直接用“vite”作为命令呢!而是用“./node_modules/vite/bin/vite.js”呢!是因为,使用后者的方式可以在启用node的各个选项的同时运行“vite”,比如启用node的某些实验性选项以使node在运行vite的配置文件时支持配置文件使用某些ECMAScript的提案语法书写配置文件。",
"dev": "vue-tsc -p ./tsconfig.vite.json --noEmit && vue-tsc -p ./tsconfig.vite.json --declaration --emitDeclarationOnly && node --experimental-import-meta-resolve --experimental-shadow-realm --experimental-vm-modules --experimental-wasm-modules --experimental-websocket --max-http-header-size=1024000 --no-warnings --no-deprecation ./node_modules/vite/bin/vite.js serve --force --mode dev_server --config ./vite.base.esm.mjs",
"nodemon:dev": "nodemon --ext json,json5,js,cjs,mjs,ts,cts,mts,crt,key,pem,p12 --ignore configures/update_graphQL_schema_json --ignore configures/update_tsconfig_lib --watch configures --watch tsconfig.vite.json --watch vite.base.esm.mjs --exec npm run dev",
"local": "vue-tsc -p ./tsconfig.vite.json --noEmit && vue-tsc -p ./tsconfig.vite.json --declaration --emitDeclarationOnly && node --experimental-import-meta-resolve --experimental-shadow-realm --experimental-vm-modules --experimental-wasm-modules --experimental-websocket --max-http-header-size=1024000 --no-warnings --no-deprecation ./node_modules/vite/bin/vite.js serve --force --mode local_server --config ./vite.base.esm.mjs",
"nodemon:local": "nodemon --ext json,json5,js,cjs,mjs,ts,cts,mts,crt,key,pem,p12 --ignore configures/update_graphQL_schema_json --ignore configures/update_tsconfig_lib --watch configures --watch tsconfig.vite.json --watch vite.base.esm.mjs --exec npm run local",
"test": "vue-tsc -p ./tsconfig.vite.json --noEmit && vue-tsc -p ./tsconfig.vite.json --declaration --emitDeclarationOnly && node --experimental-import-meta-resolve --experimental-shadow-realm --experimental-vm-modules --experimental-wasm-modules --experimental-websocket --max-http-header-size=1024000 --no-warnings --no-deprecation ./node_modules/vite/bin/vite.js build --force --mode test --config ./vite.base.esm.mjs",
"production": "vue-tsc -p ./tsconfig.vite.json --noEmit && vue-tsc -p ./tsconfig.vite.json --declaration --emitDeclarationOnly && node --experimental-import-meta-resolve --experimental-shadow-realm --experimental-vm-modules --experimental-wasm-modules --experimental-websocket --max-http-header-size=1024000 --no-warnings --no-deprecation ./node_modules/vite/bin/vite.js build --force --mode production --config ./vite.base.esm.mjs",
"build_dts": "vue-tsc -p ./tsconfig.vite.json --noEmit && vue-tsc -p ./tsconfig.vite.json --declaration --emitDeclarationOnly",
"open_dev_web_page": "start https://localhost:8500/dev_server/Index.html",
"open_local_web_page": "start https://localhost:8600/local_server/Index.html",
"open_test_web_page": "start http://localhost:8090/web-for-vite-project-template/dist/test/Index.html",
"open_production_web_page": "start http://localhost:8090/web-for-vite-project-template/dist/production/Index.html",
"simulation_servers_deno": "cd ./simulation_servers/deno&Start.bat",
"update_graphQL_schema_json": "node --experimental-import-meta-resolve --experimental-shadow-realm --experimental-vm-modules --experimental-wasm-modules --experimental-websocket --max-http-header-size=1024000 --no-warnings --no-deprecation ./configures/update_graphQL_schema_json/UpdateGraphQLSchemaJSON.mjs",
"update_tsconfig_lib": "node --experimental-import-meta-resolve --experimental-shadow-realm --experimental-vm-modules --experimental-wasm-modules --experimental-websocket --max-http-header-size=1024000 --no-warnings --no-deprecation ./configures/update_tsconfig_lib/UpdateTSConfigLib.mjs",
"Chii4RemoteLikeWeinre": "chii start -p 8700 -h 0.0.0.0 --https --ssl-cert ./configures/openssl/HTTPSSL001/002服务端CA证书/HTTPSSL001_Servers_CA.crt --ssl-key ./configures/openssl/HTTPSSL001/001根CA证书/HTTPSSL001_Root_CA_Key.key",
"graphql_codegen": "graphql-codegen-esm --config ./GraphqlCodegenConfig.esm.mts"
},
"devDependencies": {
"@angular/core": "^18.2.10",
"@apollo/client": "^3.11.8",
"@appium/typedoc-plugin-appium": "^0.6.6",
"@babel/cli": "^7.25.9",
"@babel/code-frame": "^7.26.2",
"@babel/compat-data": "^7.26.2",
"@babel/core": "^7.26.0",
"@babel/generator": "^7.26.2",
"@babel/helper-annotate-as-pure": "^7.25.9",
"@babel/helper-bindify-decorators": "^7.12.13",
"@babel/helper-builder-binary-assignment-operator-visitor": "^7.25.9",
"@babel/helper-builder-react-jsx": "^7.25.9",
"@babel/helper-builder-react-jsx-experimental": "^7.12.11",
"@babel/helper-call-delegate": "^7.12.13",
"@babel/helper-check-duplicate-nodes": "^7.25.9",
"@babel/helper-compilation-targets": "^7.25.9",
"@babel/helper-create-class-features-plugin": "^7.25.9",
"@babel/helper-create-regexp-features-plugin": "^7.25.9",
"@babel/helper-define-map": "^7.18.6",
"@babel/helper-environment-visitor": "^7.24.7",
"@babel/helper-explode-assignable-expression": "^7.18.6",
"@babel/helper-explode-class": "^7.12.13",
"@babel/helper-fixtures": "^7.26.0",
"@babel/helper-function-name": "^7.24.7",
"@babel/helper-get-function-arity": "^7.16.7",
"@babel/helper-hoist-variables": "^7.24.7",
"@babel/helper-member-expression-to-functions": "^7.25.9",
"@babel/helper-module-imports": "^7.25.9",
"@babel/helper-module-transforms": "^7.26.0",
"@babel/helper-optimise-call-expression": "^7.25.9",
"@babel/helper-plugin-test-runner": "^7.25.9",
"@babel/helper-plugin-utils": "^7.25.9",
"@babel/helper-regex": "^7.10.5",
"@babel/helper-remap-async-to-generator": "^7.25.9",
"@babel/helper-replace-supers": "^7.25.9",
"@babel/helper-simple-access": "^7.25.9",
"@babel/helper-skip-transparent-expression-wrappers": "^7.25.9",
"@babel/helper-split-export-declaration": "^7.24.7",
"@babel/helper-string-parser": "^7.25.9",
"@babel/helper-transform-fixture-test-runner": "^7.26.0",
"@babel/helper-validator-identifier": "^7.25.9",
"@babel/helper-validator-option": "^7.25.9",
"@babel/helper-wrap-function": "^7.25.9",
"@babel/helpers": "^7.26.0",
"@babel/highlight": "^7.25.9",
"@babel/node": "^7.26.0",
"@babel/parser": "^7.26.2",
"@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.9",
"@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.9",
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.9",
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.25.9",
"@babel/plugin-check-constants": "^7.0.0-beta.38",
"@babel/plugin-codemod-object-assign-to-object-spread": "^7.10.4",
"@babel/plugin-codemod-optional-catch-binding": "^7.10.4",
"@babel/plugin-external-helpers": "^7.25.9",
"@babel/plugin-proposal-async-do-expressions": "^7.25.9",
"@babel/plugin-proposal-async-generator-functions": "^7.20.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-class-static-block": "^7.21.0",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/plugin-proposal-destructuring-private": "^7.26.0",
"@babel/plugin-proposal-do-expressions": "^7.25.9",
"@babel/plugin-proposal-duplicate-named-capturing-groups-regex": "^7.24.7",
"@babel/plugin-proposal-dynamic-import": "^7.18.6",
"@babel/plugin-proposal-explicit-resource-management": "^7.25.9",
"@babel/plugin-proposal-export-default-from": "^7.25.9",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-function-bind": "^7.25.9",
"@babel/plugin-proposal-function-sent": "^7.25.9",
"@babel/plugin-proposal-import-attributes-to-assertions": "^7.25.9",
"@babel/plugin-proposal-import-defer": "^7.25.9",
"@babel/plugin-proposal-import-wasm-source": "^7.25.9",
"@babel/plugin-proposal-json-modules": "^7.25.9",
"@babel/plugin-proposal-json-strings": "^7.18.6",
"@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-optional-catch-binding": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-proposal-optional-chaining-assign": "^7.25.9",
"@babel/plugin-proposal-partial-application": "^7.25.9",
"@babel/plugin-proposal-pipeline-operator": "^7.25.9",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-proposal-record-and-tuple": "^7.25.9",
"@babel/plugin-proposal-regexp-modifiers": "^7.25.9",
"@babel/plugin-proposal-throw-expressions": "^7.25.9",
"@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
"@babel/plugin-proposal-unicode-sets-regex": "^7.18.6",
"@babel/plugin-syntax-async-do-expressions": "^7.25.9",
"@babel/plugin-syntax-async-generators": "^7.8.4",
"@babel/plugin-syntax-bigint": "^7.8.3",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/plugin-syntax-decimal": "^7.24.7",
"@babel/plugin-syntax-decorators": "^7.25.9",
"@babel/plugin-syntax-destructuring-private": "^7.25.9",
"@babel/plugin-syntax-do-expressions": "^7.25.9",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-explicit-resource-management": "^7.25.9",
"@babel/plugin-syntax-export-default-from": "^7.25.9",
"@babel/plugin-syntax-export-extensions": "^7.0.0-beta.32",
"@babel/plugin-syntax-export-namespace-from": "^7.8.3",
"@babel/plugin-syntax-flow": "^7.26.0",
"@babel/plugin-syntax-function-bind": "^7.25.9",
"@babel/plugin-syntax-function-sent": "^7.25.9",
"@babel/plugin-syntax-import-assertions": "^7.26.0",
"@babel/plugin-syntax-import-attributes": "^7.26.0",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-syntax-import-reflection": "^7.24.7",
"@babel/plugin-syntax-json-strings": "^7.8.3",
"@babel/plugin-syntax-jsx": "^7.25.9",
"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
"@babel/plugin-syntax-module-blocks": "^7.25.9",
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-syntax-numeric-separator": "^7.10.4",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
"@babel/plugin-syntax-partial-application": "^7.25.9",
"@babel/plugin-syntax-pipeline-operator": "^7.25.9",
"@babel/plugin-syntax-record-and-tuple": "^7.25.9",
"@babel/plugin-syntax-throw-expressions": "^7.25.9",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"@babel/plugin-syntax-typescript": "^7.25.9",
"@babel/plugin-syntax-unicode-sets-regex": "^7.18.6",
"@babel/plugin-transform-arrow-functions": "^7.25.9",
"@babel/plugin-transform-async-generator-functions": "^7.25.9",
"@babel/plugin-transform-async-to-generator": "^7.25.9",
"@babel/plugin-transform-block-scoped-functions": "^7.25.9",
"@babel/plugin-transform-block-scoping": "^7.25.9",
"@babel/plugin-transform-class-properties": "^7.25.9",
"@babel/plugin-transform-class-static-block": "^7.26.0",
"@babel/plugin-transform-classes": "^7.25.9",
"@babel/plugin-transform-computed-properties": "^7.25.9",
"@babel/plugin-transform-destructuring": "^7.25.9",
"@babel/plugin-transform-dotall-regex": "^7.25.9",
"@babel/plugin-transform-duplicate-keys": "^7.25.9",
"@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.9",
"@babel/plugin-transform-dynamic-import": "^7.25.9",
"@babel/plugin-transform-eval": "^7.0.0-beta.38",
"@babel/plugin-transform-exponentiation-operator": "^7.25.9",
"@babel/plugin-transform-export-namespace-from": "^7.25.9",
"@babel/plugin-transform-flow-comments": "^7.25.9",
"@babel/plugin-transform-flow-strip-types": "^7.25.9",
"@babel/plugin-transform-for-of": "^7.25.9",
"@babel/plugin-transform-function-name": "^7.25.9",
"@babel/plugin-transform-instanceof": "^7.25.9",
"@babel/plugin-transform-jscript": "^7.25.9",
"@babel/plugin-transform-json-strings": "^7.25.9",
"@babel/plugin-transform-literals": "^7.25.9",
"@babel/plugin-transform-logical-assignment-operators": "^7.25.9",
"@babel/plugin-transform-member-expression-literals": "^7.25.9",
"@babel/plugin-transform-modules-amd": "^7.25.9",
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@babel/plugin-transform-modules-systemjs": "^7.25.9",
"@babel/plugin-transform-modules-umd": "^7.25.9",
"@babel/plugin-transform-named-capturing-groups-regex": "^7.25.9",
"@babel/plugin-transform-new-target": "^7.25.9",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.25.9",
"@babel/plugin-transform-numeric-separator": "^7.25.9",
"@babel/plugin-transform-object-assign": "^7.25.9",
"@babel/plugin-transform-object-rest-spread": "^7.25.9",
"@babel/plugin-transform-object-set-prototype-of-to-assign": "^7.25.9",
"@babel/plugin-transform-object-super": "^7.25.9",
"@babel/plugin-transform-optional-catch-binding": "^7.25.9",
"@babel/plugin-transform-optional-chaining": "^7.25.9",
"@babel/plugin-transform-parameters": "^7.25.9",
"@babel/plugin-transform-private-methods": "^7.25.9",
"@babel/plugin-transform-private-property-in-object": "^7.25.9",
"@babel/plugin-transform-property-literals": "^7.25.9",
"@babel/plugin-transform-property-mutators": "^7.25.9",
"@babel/plugin-transform-proto-to-assign": "^7.25.9",
"@babel/plugin-transform-react-constant-elements": "^7.25.9",
"@babel/plugin-transform-react-display-name": "^7.25.9",
"@babel/plugin-transform-react-inline-elements": "^7.25.9",
"@babel/plugin-transform-react-jsx": "^7.25.9",
"@babel/plugin-transform-react-jsx-compat": "^7.25.9",
"@babel/plugin-transform-react-jsx-development": "^7.25.9",
"@babel/plugin-transform-react-jsx-self": "^7.25.9",
"@babel/plugin-transform-react-jsx-source": "^7.25.9",
"@babel/plugin-transform-react-pure-annotations": "^7.25.9",
"@babel/plugin-transform-regenerator": "^7.25.9",
"@babel/plugin-transform-reserved-words": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/plugin-transform-shorthand-properties": "^7.25.9",
"@babel/plugin-transform-spread": "^7.25.9",
"@babel/plugin-transform-sticky-regex": "^7.25.9",
"@babel/plugin-transform-strict-mode": "^7.25.9",
"@babel/plugin-transform-template-literals": "^7.25.9",
"@babel/plugin-transform-typeof-symbol": "^7.25.9",
"@babel/plugin-transform-typescript": "^7.25.9",
"@babel/plugin-transform-unicode-escapes": "^7.25.9",
"@babel/plugin-transform-unicode-property-regex": "^7.25.9",
"@babel/plugin-transform-unicode-regex": "^7.25.9",
"@babel/plugin-transform-unicode-sets-regex": "^7.25.9",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.26.0",
"@babel/preset-env-standalone": "^7.8.3",
"@babel/preset-flow": "^7.25.9",
"@babel/preset-modules": "^0.1.6",
"@babel/preset-react": "^7.25.9",
"@babel/preset-stage-0": "^7.8.3",
"@babel/preset-stage-1": "^7.8.3",
"@babel/preset-stage-2": "^7.8.3",
"@babel/preset-stage-3": "^7.8.3",
"@babel/preset-typescript": "^7.26.0",
"@babel/register": "^7.25.9",
"@babel/runtime": "^7.26.0",
"@babel/runtime-corejs2": "^7.26.0",
"@babel/runtime-corejs3": "^7.26.0",
"@babel/standalone": "^7.26.2",
"@babel/template": "^7.25.9",
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.26.0",
"@bloomberg/record-tuple-polyfill": "^0.0.4",
"@ckeditor/ckeditor5-build-classic": "^43.3.0",
"@csstools/postcss-nested-calc": "^4.0.0",
"@eddeee888/gcg-typescript-resolver-files": "^0.11.0",
"@envelop/apollo-datasources": "^4.0.0",
"@envelop/apollo-federation": "^5.0.0",
"@envelop/apollo-server-errors": "^6.0.0",
"@envelop/apollo-tracing": "^6.1.0",
"@envelop/auth0": "^6.0.0",
"@envelop/core": "^5.0.2",
"@envelop/dataloader": "^6.0.0",
"@envelop/depth-limit": "^4.0.0",
"@envelop/disable-introspection": "^6.0.0",
"@envelop/execute-subscription-event": "^5.0.0",
"@envelop/extended-validation": "^4.1.0",
"@envelop/filter-operation-type": "^6.0.0",
"@envelop/fragment-arguments": "^6.0.0",
"@envelop/generic-auth": "^8.0.0",
"@envelop/graphql-jit": "^8.0.3",
"@envelop/graphql-middleware": "^6.0.0",
"@envelop/graphql-modules": "^6.0.0",
"@envelop/immediate-introspection": "^4.0.0",
"@envelop/live-query": "^7.0.0",
"@envelop/newrelic": "^7.1.0",
"@envelop/on-resolve": "^4.1.1",
"@envelop/opentelemetry": "^6.3.1",
"@envelop/operation-field-permissions": "^6.0.0",
"@envelop/parser-cache": "^7.0.0",
"@envelop/persisted-operations": "^7.0.0",
"@envelop/preload-assets": "^6.0.0",
"@envelop/prometheus": "^11.0.0",
"@envelop/rate-limiter": "^6.2.0",
"@envelop/resource-limitations": "^5.0.0",
"@envelop/response-cache": "^6.2.4",
"@envelop/response-cache-cloudflare-kv": "^1.0.0",
"@envelop/response-cache-redis": "^4.1.2",
"@envelop/sentry": "^10.0.0",
"@envelop/statsd": "^5.0.0",
"@envelop/testing": "^7.0.0",
"@envelop/types": "^5.0.0",
"@envelop/validation-cache": "^7.0.0",
"@graphql-codegen/add": "^5.0.3",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/client-preset": "^4.5.0",
"@graphql-codegen/client-preset-swc-plugin": "^0.2.0",
"@graphql-codegen/core": "^4.0.2",
"@graphql-codegen/flutter-freezed": "^4.0.0",
"@graphql-codegen/fragment-matcher": "^5.0.2",
"@graphql-codegen/gql-tag-operations": "^4.0.11",
"@graphql-codegen/graphql-modules-preset": "^4.0.11",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
"@graphql-codegen/plugin-helpers": "^5.1.0",
"@graphql-codegen/schema-ast": "^4.1.0",
"@graphql-codegen/testing": "^3.0.4",
"@graphql-codegen/time": "^5.0.1",
"@graphql-codegen/typed-document-node": "^5.0.11",
"@graphql-codegen/typescript": "^4.1.1",
"@graphql-codegen/typescript-apollo-angular": "^4.0.0",
"@graphql-codegen/typescript-document-nodes": "^4.0.11",
"@graphql-codegen/typescript-operations": "^4.3.1",
"@graphql-codegen/typescript-react-apollo": "^4.3.2",
"@graphql-codegen/typescript-resolvers": "^4.4.0",
"@graphql-codegen/visitor-plugin-common": "^5.5.0",
"@graphql-eslint/eslint-plugin": "^3.20.1",
"@graphql-hive/cli": "^0.44.2",
"@graphql-hive/client": "^0.32.0",
"@graphql-hive/core": "^0.8.2",
"@graphql-inspector/action": "^5.0.6",
"@graphql-inspector/audit-command": "^5.0.6",
"@graphql-inspector/ci": "^5.0.6",
"@graphql-inspector/cli": "^5.0.6",
"@graphql-inspector/code-loader": "^5.0.1",
"@graphql-inspector/commands": "^5.0.4",
"@graphql-inspector/config": "^4.0.2",
"@graphql-inspector/core": "^6.1.0",
"@graphql-inspector/coverage-command": "^6.1.0",
"@graphql-inspector/diff-command": "^5.0.6",
"@graphql-inspector/docs-command": "^5.0.4",
"@graphql-inspector/git-loader": "^5.0.1",
"@graphql-inspector/github-loader": "^5.0.1",
"@graphql-inspector/graphql-loader": "^5.0.1",
"@graphql-inspector/introspect-command": "^5.0.6",
"@graphql-inspector/json-loader": "^5.0.1",
"@graphql-inspector/loaders": "^4.0.5",
"@graphql-inspector/logger": "^5.0.1",
"@graphql-inspector/serve-command": "^5.0.5",
"@graphql-inspector/similar-command": "^5.0.6",
"@graphql-inspector/url-loader": "^5.0.1",
"@graphql-inspector/validate-command": "^5.0.6",
"@graphql-mesh/apollo-link": "^0.103.12",
"@graphql-mesh/cache-cfw-kv": "^0.102.11",
"@graphql-mesh/cache-file": "^0.102.11",
"@graphql-mesh/cache-localforage": "^0.102.11",
"@graphql-mesh/cache-redis": "^0.102.11",
"@graphql-mesh/cli": "^0.96.12",
"@graphql-mesh/compose-cli": "^1.1.6",
"@graphql-mesh/config": "^0.104.12",
"@graphql-mesh/container": "^0.2.4",
"@graphql-mesh/cross-helpers": "^0.4.7",
"@graphql-mesh/fusion-composition": "^0.6.5",
"@graphql-mesh/fusion-execution": "^0.0.2",
"@graphql-mesh/fusion-federation": "^0.0.2",
"@graphql-mesh/fusion-runtime": "^0.9.7",
"@graphql-mesh/graphql": "^0.102.13",
"@graphql-mesh/grpc": "^0.105.0",
"@graphql-mesh/http": "^0.103.12",
"@graphql-mesh/json-schema": "^0.107.5",
"@graphql-mesh/merger-bare": "^0.102.11",
"@graphql-mesh/merger-federation": "^0.102.11",
"@graphql-mesh/merger-stitching": "^0.102.11",
"@graphql-mesh/mongoose": "^0.102.12",
"@graphql-mesh/mysql": "^0.103.12",
"@graphql-mesh/neo4j": "^0.104.0",
"@graphql-mesh/odata": "^0.104.11",
"@graphql-mesh/openapi": "^0.107.5",
"@graphql-mesh/plugin-deduplicate-request": "^0.102.11",
"@graphql-mesh/plugin-hive": "^0.102.13",
"@graphql-mesh/plugin-http-cache": "^0.102.11",
"@graphql-mesh/plugin-http-details-extensions": "^0.102.11",
"@graphql-mesh/plugin-live-query": "^0.102.11",
"@graphql-mesh/plugin-mock": "^0.102.12",
"@graphql-mesh/plugin-newrelic": "^0.102.11",
"@graphql-mesh/plugin-operation-field-permissions": "^0.102.11",
"@graphql-mesh/plugin-operation-headers": "^1.2.6",
"@graphql-mesh/plugin-prometheus": "^1.2.6",
"@graphql-mesh/plugin-rate-limit": "^0.102.11",
"@graphql-mesh/plugin-response-cache": "^0.102.11",
"@graphql-mesh/plugin-snapshot": "^0.102.11",
"@graphql-mesh/plugin-statsd": "^0.102.11",
"@graphql-mesh/postgraphile": "^0.102.11",
"@graphql-mesh/raml": "^0.107.5",
"@graphql-mesh/runtime": "^0.103.12",
"@graphql-mesh/serve-cli": "^1.4.0",
"@graphql-mesh/serve-runtime": "^1.2.4",
"@graphql-mesh/soap": "^0.104.12",
"@graphql-mesh/store": "^0.102.11",
"@graphql-mesh/string-interpolation": "^0.5.6",
"@graphql-mesh/supergraph": "^0.8.13",
"@graphql-mesh/thrift": "^0.104.13",
"@graphql-mesh/transform-cache": "^0.102.11",
"@graphql-mesh/transform-encapsulate": "^0.102.11",
"@graphql-mesh/transform-extend": "^0.102.11",
"@graphql-mesh/transform-federation": "^0.102.11",
"@graphql-mesh/transform-filter-schema": "^0.102.11",
"@graphql-mesh/transform-hive": "^0.102.13",
"@graphql-mesh/transform-hoist-field": "^0.102.11",
"@graphql-mesh/transform-naming-convention": "^0.102.11",
"@graphql-mesh/transform-prefix": "^0.102.11",
"@graphql-mesh/transform-prune": "^0.102.11",
"@graphql-mesh/transform-rate-limit": "^0.102.11",
"@graphql-mesh/transform-rename": "^0.102.11",
"@graphql-mesh/transform-replace-field": "^0.102.11",
"@graphql-mesh/transform-resolvers-composition": "^0.102.11",
"@graphql-mesh/transform-transfer-schema": "^0.102.11",
"@graphql-mesh/transform-type-merging": "^0.102.11",
"@graphql-mesh/transport-common": "^0.7.12",
"@graphql-mesh/transport-http": "^0.6.13",
"@graphql-mesh/transport-mysql": "^0.7.12",
"@graphql-mesh/transport-neo4j": "^0.7.13",
"@graphql-mesh/transport-rest": "^0.7.12",
"@graphql-mesh/transport-soap": "^0.7.12",
"@graphql-mesh/transport-thrift": "^0.7.12",
"@graphql-mesh/tuql": "^0.103.11",
"@graphql-mesh/types": "^0.102.11",
"@graphql-mesh/urql-exchange": "^0.103.12",
"@graphql-mesh/utils": "^0.102.11",
"@graphql-tools/apollo-engine-loader": "^8.0.2",
"@graphql-tools/batch-delegate": "^9.0.13",
"@graphql-tools/batch-execute": "^9.0.5",
"@graphql-tools/code-file-loader": "^8.1.4",
"@graphql-tools/delegate": "^10.1.1",
"@graphql-tools/documents": "^1.0.1",
"@graphql-tools/executor": "^1.3.2",
"@graphql-tools/executor-apollo-link": "^1.0.2",
"@graphql-tools/executor-envelop": "^3.0.10",
"@graphql-tools/executor-graphql-ws": "^1.3.1",
"@graphql-tools/executor-http": "^1.1.7",
"@graphql-tools/executor-legacy-ws": "^1.1.1",
"@graphql-tools/executor-urql-exchange": "^1.0.3",
"@graphql-tools/executor-yoga": "^3.0.10",
"@graphql-tools/federation": "^2.2.25",
"@graphql-tools/git-loader": "^8.0.8",
"@graphql-tools/github-loader": "^8.0.2",
"@graphql-tools/graphql-file-loader": "^8.0.2",
"@graphql-tools/graphql-tag-pluck": "^8.3.3",
"@graphql-tools/import": "^7.0.2",
"@graphql-tools/jest-transform": "^2.0.0",
"@graphql-tools/json-file-loader": "^8.0.2",
"@graphql-tools/links": "^9.0.11",
"@graphql-tools/load": "^8.0.3",
"@graphql-tools/load-files": "^7.0.0",
"@graphql-tools/merge": "^9.0.8",
"@graphql-tools/mock": "^9.0.5",
"@graphql-tools/module-loader": "^8.0.2",
"@graphql-tools/node-require": "^7.0.3",
"@graphql-tools/optimize": "^2.0.0",
"@graphql-tools/prisma-loader": "^8.0.15",
"@graphql-tools/relay-operation-optimizer": "^7.0.2",
"@graphql-tools/resolvers-composition": "^7.0.2",
"@graphql-tools/schema": "^10.0.7",
"@graphql-tools/stitch": "^9.3.3",
"@graphql-tools/stitching-directives": "^3.1.12",
"@graphql-tools/url-loader": "^8.0.13",
"@graphql-tools/utils": "^10.5.5",
"@graphql-tools/webpack-loader": "^7.0.0",
"@graphql-tools/webpack-loader-runtime": "^7.0.0",
"@graphql-tools/wrap": "^10.0.15",
"@graphql-typed-document-node/core": "^3.2.0",
"@graphql-yoga/apollo-link": "^3.8.0",
"@graphql-yoga/graphiql": "^4.3.1",
"@graphql-yoga/logger": "^2.0.0",
"@graphql-yoga/nestjs": "^3.8.0",
"@graphql-yoga/nestjs-federation": "^3.8.0",
"@graphql-yoga/plugin-apollo-inline-trace": "^3.8.0",
"@graphql-yoga/plugin-apq": "^3.8.0",
"@graphql-yoga/plugin-csrf-prevention": "^3.8.0",
"@graphql-yoga/plugin-defer-stream": "^3.8.0",
"@graphql-yoga/plugin-disable-introspection": "^2.8.0",
"@graphql-yoga/plugin-graphql-sse": "^3.8.0",
"@graphql-yoga/plugin-jwt": "^3.2.0",
"@graphql-yoga/plugin-persisted-operations": "^3.8.0",
"@graphql-yoga/plugin-prometheus": "^6.2.0",
"@graphql-yoga/plugin-response-cache": "^3.10.0",
"@graphql-yoga/plugin-sofa": "^3.8.0",
"@graphql-yoga/redis-event-target": "^3.0.1",
"@graphql-yoga/render-graphiql": "^5.8.0",
"@graphql-yoga/subscription": "^5.0.1",
"@graphql-yoga/typed-event-target": "^3.0.0",
"@graphql-yoga/urql-exchange": "^3.8.0",
"@kitql/eslint-config": "^0.4.0",
"@kitql/graphql-codegen": "^0.5.4",
"@kitql/handles": "^0.2.0",
"@kitql/helpers": "^0.8.10",
"@kitql/internals": "^0.9.10",
"@kitware/vtk.js": "^32.5.1",
"@mapbox/postcss-html-filter": "^3.0.0",
"@mxssfd/typedoc-theme": "^1.1.7",
"@omnigraph/json-schema": "^0.107.5",
"@omnigraph/mysql": "^0.7.12",
"@omnigraph/neo4j": "^0.8.0",
"@omnigraph/openapi": "^0.107.5",
"@omnigraph/raml": "^0.107.5",
"@omnigraph/soap": "^0.104.12",
"@omnigraph/sqlite": "^0.6.11",
"@omnigraph/thrift": "^0.7.13",
"@parcel/watcher": "^2.5.0",
"@preact/preset-vite": "^2.9.1",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-dsv": "^3.0.5",
"@rollup/plugin-dynamic-import-vars": "^2.1.5",
"@rollup/plugin-graphql": "^2.0.5",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-yaml": "^4.1.2",
"@squoosh/lib": "^0.5.3",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@tailwindcss/language-server": "^0.0.26",
"@terse/webpack": "^1.0.7",
"@tsconfig/create-react-app": "^2.0.5",
"@tsconfig/cypress": "^1.0.2",
"@tsconfig/deno": "^1.0.11",
"@tsconfig/docusaurus": "^2.0.3",
"@tsconfig/ember": "^3.0.8",
"@tsconfig/esm": "^1.0.5",
"@tsconfig/next": "^2.0.3",
"@tsconfig/node10": "^1.0.11",
"@tsconfig/node12": "^12.1.4",
"@tsconfig/node14": "^14.1.2",
"@tsconfig/node16": "^16.1.3",
"@tsconfig/node16-strictest": "^1.0.4",
"@tsconfig/node16-strictest-esm": "^1.0.3",
"@tsconfig/node17": "^17.1.5",
"@tsconfig/node18": "^18.2.4",
"@tsconfig/nuxt": "^2.0.3",
"@tsconfig/react-native": "^3.0.5",
"@tsconfig/recommended": "^1.0.8",
"@tsconfig/remix": "^2.0.5",
"@tsconfig/strictest": "^2.0.5",
"@tsconfig/svelte": "^5.0.4",
"@tsconfig/taro": "^1.0.4",
"@tsconfig/vite-react": "^3.0.2",
"@types/accepts": "^1.3.7",
"@types/anymatch": "^3.0.4",
"@types/babel__core": "^7.20.5",
"@types/babel__generator": "^7.6.8",
"@types/babel__template": "^7.4.4",
"@types/babel__traverse": "^7.20.6",
"@types/babel-types": "^7.0.16",
"@types/babylon": "^6.16.9",
"@types/body-parser": "^1.19.5",
"@types/cacheable-request": "^8.3.6",
"@types/clone": "^2.1.4",
"@types/color-name": "^2.0.0",
"@types/connect": "^3.4.38",
"@types/content-disposition": "^0.5.8",
"@types/cookies": "^0.9.0",
"@types/cors": "^2.8.17",
"@types/d3": "^7.4.3",
"@types/debug": "^4.1.12",
"@types/ejs": "^3.1.5",
"@types/eslint": "^9.6.1",
"@types/eslint-scope": "^3.7.7",
"@types/eslint-visitor-keys": "^3.3.2",
"@types/estree": "^1.0.6",
"@types/events": "^3.0.3",
"@types/expect": "^24.3.2",
"@types/express": "^5.0.0",
"@types/express-serve-static-core": "^5.0.1",
"@types/fancy-log": "^2.0.2",
"@types/fs-capacitor": "^8.0.2",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/graceful-fs": "^4.1.9",
"@types/graphql": "^14.5.0",
"@types/graphql-upload": "^16.0.7",
"@types/hast": "^3.0.4",
"@types/html-minifier-terser": "^7.0.2",
"@types/http-assert": "^1.5.6",
"@types/http-cache-semantics": "^4.0.4",
"@types/http-errors": "^2.0.4",
"@types/http-proxy": "^1.17.15",
"@types/http-proxy-middleware": "^1.0.0",
"@types/imagemin": "^9.0.0",
"@types/imagemin-gifsicle": "^7.0.4",
"@types/imagemin-jpegtran": "^5.0.4",
"@types/imagemin-optipng": "^5.2.4",
"@types/imagemin-svgo": "^10.0.5",
"@types/inquirer": "^9.0.7",
"@types/istanbul-lib-coverage": "^2.0.6",
"@types/istanbul-lib-report": "^3.0.3",
"@types/istanbul-reports": "^3.0.4",
"@types/jquery": "^3.5.32",
"@types/jscodeshift": "^0.12.0",
"@types/json-schema": "^7.0.15",
"@types/json-stable-stringify": "^1.1.0",
"@types/json5": "^2.2.0",
"@types/keygrip": "^1.0.6",
"@types/keyv": "^4.2.0",
"@types/koa": "^2.15.0",
"@types/koa-compose": "^3.2.8",
"@types/long": "^5.0.0",
"@types/mdast": "^4.0.4",
"@types/mime": "^4.0.0",
"@types/minimatch": "^5.1.2",
"@types/minimist": "^1.2.5",
"@types/mongodb": "^4.0.7",
"@types/mongoose": "^5.11.97",
"@types/node": "^22.9.0",
"@types/node-fetch": "^2.6.11",
"@types/normalize-package-data": "^2.4.4",
"@types/parse-json": "^4.0.2",
"@types/parse5": "^7.0.0",
"@types/prettier": "^3.0.0",
"@types/pump": "^1.1.3",
"@types/q": "^1.5.8",
"@types/qs": "^6.9.16",
"@types/range-parser": "^1.2.7",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/readable-stream": "^4.0.18",
"@types/resolve": "^1.20.6",
"@types/responselike": "^1.0.3",
"@types/retry": "^0.12.5",
"@types/semver": "^7.5.8",
"@types/serve-static": "^1.15.7",
"@types/source-list-map": "^0.1.6",
"@types/stack-utils": "^2.0.3",
"@types/strip-bom": "^4.0.1",
"@types/strip-json-comments": "^3.0.0",
"@types/svgo": "^3.0.0",
"@types/swiper": "^6.0.0",
"@types/tapable": "^2.2.7",
"@types/three": "^0.169.0",
"@types/through": "^0.0.33",
"@types/through2": "^2.0.41",
"@types/tough-cookie": "^4.0.5",
"@types/uglify-js": "^3.17.5",
"@types/unist": "^3.0.3",
"@types/vfile": "^4.0.0",
"@types/vfile-message": "^2.0.0",
"@types/vinyl": "^2.0.12",
"@types/webpack": "^5.28.5",
"@types/webpack-dev-server": "^4.7.2",
"@types/webpack-sources": "^3.2.3",
"@types/websocket": "^1.0.10",
"@types/ws": "^8.5.13",
"@types/yargs": "^17.0.33",
"@types/yargs-parser": "^21.0.3",
"@types/yauzl": "^2.10.3",
"@types/zen-observable": "^0.8.7",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"@vitejs/plugin-legacy": "^5.4.3",
"@vitejs/plugin-react": "^4.3.3",
"@vitejs/plugin-vue": "^5.1.4",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"@vitejs/plugin-vue2": "^2.3.1",
"@vue/cli": "^5.0.8",
"@vue/cli-shared-utils": "^5.0.8",
"@vue/cli-ui": "^5.0.8",
"@vue/cli-ui-addon-webpack": "^5.0.8",
"@vue/cli-ui-addon-widgets": "^5.0.8",
"@vue/compiler-core": "^3.5.12",
"@vue/compiler-dom": "^3.5.12",
"@vue/compiler-sfc": "^3.5.12",
"@vue/compiler-ssr": "^3.5.12",
"@vue/component-compiler-utils": "^3.3.0",
"@vue/language-server": "^2.1.10",
"@vue/reactivity": "^3.5.12",
"@vue/runtime-core": "^3.5.12",
"@vue/runtime-dom": "^3.5.12",
"@vue/shared": "^3.5.12",
"@webpack-cli/generators": "^3.0.7",
"@webpack-cli/info": "^2.0.2",
"@webpack-cli/init": "^1.1.3",
"@webpack-cli/serve": "^2.0.5",
"@webpack-cli/utils": "^1.2.1",
"@webpack-cli/webpack-scaffold": "^1.0.3",
"abab": "^2.0.6",
"apng-js": "^1.1.4",
"apollo-angular": "^7.2.1",
"assets-webpack-plugin": "^7.1.1",
"atob": "^2.1.2",
"autoprefixer": "^10.4.20",
"axios": "^1.7.7",
"babel-check-duplicated-nodes": "^1.0.0",
"babel-code-frame": "^6.26.0",
"babel-core": "^7.0.0-bridge.0",
"babel-extract-comments": "^1.0.0",
"babel-generator": "^6.26.1",
"babel-helper-builder-binary-assignment-operator-visitor": "^6.24.1",
"babel-helper-call-delegate": "^6.24.1",
"babel-helper-define-map": "^6.26.0",
"babel-helper-evaluate-path": "^0.5.0",
"babel-helper-explode-assignable-expression": "^6.24.1",
"babel-helper-flip-expressions": "^0.4.3",
"babel-helper-function-name": "^6.24.1",
"babel-helper-get-function-arity": "^6.24.1",
"babel-helper-hoist-variables": "^6.24.1",
"babel-helper-is-nodes-equiv": "^0.0.1",
"babel-helper-is-void-0": "^0.4.3",
"babel-helper-mark-eval-scopes": "^0.4.3",
"babel-helper-optimise-call-expression": "^6.24.1",
"babel-helper-regex": "^6.26.0",
"babel-helper-remap-async-to-generator": "^6.24.1",
"babel-helper-remove-or-void": "^0.4.3",
"babel-helper-replace-supers": "^6.24.1",
"babel-helper-to-multiple-sequence-expressions": "^0.5.0",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-helpers": "^6.24.1",
"babel-jest": "^29.7.0",
"babel-literal-to-ast": "^2.1.0",
"babel-loader": "^9.2.1",
"babel-merge": "^3.0.0",
"babel-messages": "^6.23.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-check-es2015-constants": "^6.22.0",
"babel-plugin-const-enum": "^1.2.0",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-dynamic-import-webpack": "^1.1.0",
"babel-plugin-espower": "^3.0.1",
"babel-plugin-graphql-tag": "^3.3.0",
"babel-plugin-import-graphql": "^2.8.1",
"babel-plugin-import-graphql-string": "^1.2.0",
"babel-plugin-istanbul": "^7.0.0",
"babel-plugin-jest-hoist": "^29.6.3",
"babel-plugin-jsx-event-modifiers": "^2.0.5",
"babel-plugin-jsx-v-model": "^2.0.3",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-minify-builtins": "^0.5.0",
"babel-plugin-minify-constant-folding": "^0.5.0",
"babel-plugin-minify-dead-code-elimination": "^0.5.2",
"babel-plugin-minify-flip-comparisons": "^0.4.3",
"babel-plugin-minify-guarded-expressions": "^0.4.4",
"babel-plugin-minify-infinity": "^0.4.3",
"babel-plugin-minify-mangle-names": "^0.5.1",
"babel-plugin-minify-numeric-literals": "^0.4.3",
"babel-plugin-minify-replace": "^0.5.0",
"babel-plugin-minify-simplify": "^0.5.1",
"babel-plugin-minify-type-constructors": "^0.4.3",
"babel-plugin-ramda": "^2.1.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-syntax-exponentiation-operator": "^6.13.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-syntax-trailing-function-commas": "^7.0.0-beta.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoping": "^6.26.0",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-es2015-computed-properties": "^6.24.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-duplicate-keys": "^6.24.1",
"babel-plugin-transform-es2015-for-of": "^6.23.0",
"babel-plugin-transform-es2015-function-name": "^6.24.1",
"babel-plugin-transform-es2015-literals": "^6.22.0",
"babel-plugin-transform-es2015-modules-amd": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-es2015-modules-systemjs": "^6.24.1",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-transform-es2015-object-super": "^6.24.1",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-plugin-transform-es2015-shorthand-properties": "^6.24.1",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-es2015-sticky-regex": "^6.24.1",
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
"babel-plugin-transform-es2015-typeof-symbol": "^6.23.0",
"babel-plugin-transform-es2015-unicode-regex": "^6.24.1",
"babel-plugin-transform-exponentiation-operator": "^6.24.1",
"babel-plugin-transform-inline-consecutive-adds": "^0.4.3",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"babel-plugin-transform-jsbi-to-bigint": "^1.4.0",
"babel-plugin-transform-member-expression-literals": "^6.9.4",
"babel-plugin-transform-merge-sibling-variables": "^6.9.5",
"babel-plugin-transform-minify-booleans": "^6.9.4",
"babel-plugin-transform-node-env-inline": "^0.4.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-property-literals": "^6.9.4",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-regexp-constructors": "^0.4.3",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-plugin-transform-remove-debugger": "^6.9.4",
"babel-plugin-transform-remove-undefined": "^0.5.0",
"babel-plugin-transform-simplify-comparison-operators": "^6.9.4",
"babel-plugin-transform-strict-mode": "^6.24.1",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"babel-plugin-transform-undefined-to-void": "^6.9.4",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-polyfill": "^6.26.0",
"babel-preset-const-enum": "^1.0.0",
"babel-preset-current-node-syntax": "^1.1.0",
"babel-preset-env": "^1.7.0",
"babel-preset-fbjs": "^3.4.0",
"babel-preset-jest": "^29.6.3",
"babel-preset-minify": "^0.5.2",
"babel-preset-vue": "^2.0.2",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"babel-template": "^6.26.0",
"babel-traverse": "^6.26.0",
"babel-types": "^6.26.0",
"babel-walk": "^3.0.1",
"babelify": "^10.0.0",
"babylon": "^6.18.0",
"babylon-walk": "^1.0.2",
"backbone": "^1.6.0",
"base": "^3.0.0",
"base64-js": "^1.5.1",
"big.js": "^6.2.2",
"blob": "^0.1.0",
"bluebird": "^3.7.2",
"browserslist": "^4.24.2",
"btoa": "^1.2.1",
"buble": "^0.20.0",
"buble-loader": "^0.5.1",
"bundle-loader": "^0.5.6",
"cache-loader": "^4.1.0",
"caniuse-lite": "^1.0.30001677",
"chalk": "^5.3.0",
"cheerio": "^1.0.0",
"chii": "^1.15.4",
"clean-webpack-plugin": "^4.0.0",
"clipboard": "^2.0.11",
"compression-webpack-plugin": "^11.1.0",
"copy-webpack-plugin": "^12.0.2",
"core-js": "^3.39.0",
"create-kitql": "^0.1.7",
"create-vite": "^5.5.5",
"cross-inspect": "^1.0.1",
"cson": "^8.4.0",
"cson-loader": "^0.1.0",
"cson-parser": "^4.0.9",
"css-byebye": "^4.0.1",
"css-declaration-sorter": "^7.2.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"css-mqpacker": "^7.0.0",
"cssnano": "^7.0.6",
"cssnano-preset-advanced": "^7.0.6",
"cssnano-preset-default": "^7.0.6",
"cssnano-preset-lite": "^4.0.3",
"csv-loader": "^3.0.5",
"cwebp": "^3.1.0",
"cwebp-bin": "^8.0.0",
"d3": "^7.9.0",
"dart-sass": "^1.25.0",
"declaration-bundler-webpack-plugin": "^1.0.3",
"dns": "^0.2.2",
"dom7": "^4.0.6",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"dynamic-cdn-webpack-plugin": "^5.0.0",
"echarts": "^5.5.1",
"ejs": "^3.1.10",
"ejs-loader": "^0.5.0",
"element-plus": "^2.8.7",
"element-ui": "^2.15.14",
"esbuild": "^0.24.0",
"esbuild-loader": "^4.2.2",
"eslint": "^9.14.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"exif-js": "^2.3.0",
"exif-parser": "^0.1.12",
"exif-reader": "^2.0.1",
"exit": "^0.1.2",
"exit-hook": "^4.0.0",