-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
4188 lines (4188 loc) · 138 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": "hjx",
"version": "1.0.0",
"description": "This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).",
"main": "webpack.config.js",
"private": true,
"peerDependencies": {
"browser-sync": "2.26.7",
"cookie-parser": "1.4.3",
"easy-livereload": "1.3.1",
"hjson": "3.2.2",
"marked": "0.7.0",
"node-dev": "3.1.3",
"plist": "3.0.6",
"portfinder": "1.0.28",
"usb-detection": "4.14.1",
"vscode-chrome-debug-core": "6.8.9",
"vscode-debugadapter": "1.40.0",
"vue-i18n": "8.27.0",
"xml-manifest-decoder": "1.0.6"
},
"dependenciesAll": {
"@aashutoshrathi/word-wrap": "1.2.6",
"@adobe/css-tools": "4.2.0",
"@algolia/autocomplete-core": "1.9.3",
"@algolia/autocomplete-plugin-algolia-insights": "1.9.3",
"@algolia/autocomplete-preset-algolia": "1.9.3",
"@algolia/autocomplete-shared": "1.9.3",
"@algolia/cache-browser-local-storage": "4.22.0",
"@algolia/cache-common": "4.22.0",
"@algolia/cache-in-memory": "4.22.0",
"@algolia/client-account": "4.22.0",
"@algolia/client-analytics": "4.22.0",
"@algolia/client-common": "4.22.0",
"@algolia/client-personalization": "4.22.0",
"@algolia/client-search": "4.22.0",
"@algolia/events": "4.0.1",
"@algolia/logger-common": "4.22.0",
"@algolia/logger-console": "4.22.0",
"@algolia/requester-browser-xhr": "4.22.0",
"@algolia/requester-common": "4.22.0",
"@algolia/requester-node-http": "4.22.0",
"@algolia/transporter": "4.22.0",
"@alipay/faas-common-sdk": "1.1.15",
"@alipay/faas-db-builder": "1.1.15",
"@alipay/faas-web-sdk": "1.1.15",
"@alloc/quick-lru": "5.2.0",
"@aminya/node-gyp-build": "4.5.0-aminya.4",
"@ampproject/remapping": "2.2.1",
"@ant-design/icons-react-native": "2.3.2",
"@ant-design/react-native": "5.0.4",
"@apideck/better-ajv-errors": "0.3.6",
"@azure/abort-controller": "1.0.4",
"@azure/core-auth": "1.3.2",
"@azure/core-client": "1.6.0",
"@azure/core-http": "2.2.5",
"@azure/core-lro": "2.2.4",
"@azure/core-paging": "1.3.0",
"@azure/core-rest-pipeline": "1.8.1",
"@azure/core-tracing": "1.0.0-preview.13",
"@azure/core-util": "1.0.0",
"@azure/identity": "2.0.4",
"@azure/keyvault-keys": "4.4.0",
"@azure/logger": "1.0.3",
"@azure/msal-browser": "2.24.0",
"@azure/msal-common": "6.3.0",
"@azure/msal-node": "1.9.0",
"@azure/opentelemetry-instrumentation-azure-sdk": "1.0.0-beta.4",
"@babel/cli": "7.18.6",
"@babel/code-frame": "7.22.5",
"@babel/compat-data": "7.22.9",
"@babel/core": "7.22.9",
"@babel/eslint-parser": "7.22.9",
"@babel/generator": "7.22.9",
"@babel/helper-annotate-as-pure": "7.22.5",
"@babel/helper-builder-binary-assignment-operator-visitor": "7.22.5",
"@babel/helper-compilation-targets": "7.22.9",
"@babel/helper-create-class-features-plugin": "7.22.9",
"@babel/helper-create-regexp-features-plugin": "7.22.9",
"@babel/helper-define-polyfill-provider": "0.4.1",
"@babel/helper-environment-visitor": "7.22.5",
"@babel/helper-explode-assignable-expression": "7.18.6",
"@babel/helper-function-name": "7.22.5",
"@babel/helper-get-function-arity": "7.15.4",
"@babel/helper-hoist-variables": "7.22.5",
"@babel/helper-member-expression-to-functions": "7.22.5",
"@babel/helper-module-imports": "7.22.5",
"@babel/helper-module-transforms": "7.22.9",
"@babel/helper-optimise-call-expression": "7.22.5",
"@babel/helper-plugin-utils": "7.22.5",
"@babel/helper-remap-async-to-generator": "7.22.9",
"@babel/helper-replace-supers": "7.22.9",
"@babel/helper-simple-access": "7.22.5",
"@babel/helper-skip-transparent-expression-wrappers": "7.22.5",
"@babel/helper-split-export-declaration": "7.22.6",
"@babel/helper-string-parser": "7.22.5",
"@babel/helper-validator-identifier": "7.22.5",
"@babel/helper-validator-option": "7.22.5",
"@babel/helper-wrap-function": "7.22.9",
"@babel/helpers": "7.22.6",
"@babel/highlight": "7.22.5",
"@babel/parser": "7.22.7",
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "7.22.5",
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "7.22.5",
"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "7.23.3",
"@babel/plugin-proposal-async-generator-functions": "7.20.7",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-class-static-block": "7.20.7",
"@babel/plugin-proposal-decorators": "7.22.7",
"@babel/plugin-proposal-dynamic-import": "7.18.6",
"@babel/plugin-proposal-export-default-from": "7.22.17",
"@babel/plugin-proposal-export-namespace-from": "7.18.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-private-methods": "7.18.6",
"@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2",
"@babel/plugin-proposal-unicode-property-regex": "7.18.6",
"@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-class-static-block": "7.14.5",
"@babel/plugin-syntax-decorators": "7.22.5",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-export-default-from": "7.22.5",
"@babel/plugin-syntax-export-namespace-from": "7.8.3",
"@babel/plugin-syntax-flow": "7.22.5",
"@babel/plugin-syntax-import-assertions": "7.22.5",
"@babel/plugin-syntax-import-attributes": "7.22.5",
"@babel/plugin-syntax-import-meta": "7.10.4",
"@babel/plugin-syntax-json-strings": "7.8.3",
"@babel/plugin-syntax-jsx": "7.22.5",
"@babel/plugin-syntax-logical-assignment-operators": "7.10.4",
"@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-private-property-in-object": "7.14.5",
"@babel/plugin-syntax-top-level-await": "7.14.5",
"@babel/plugin-syntax-typescript": "7.22.5",
"@babel/plugin-syntax-unicode-sets-regex": "7.18.6",
"@babel/plugin-transform-arrow-functions": "7.22.5",
"@babel/plugin-transform-async-generator-functions": "7.22.7",
"@babel/plugin-transform-async-to-generator": "7.22.5",
"@babel/plugin-transform-block-scoped-functions": "7.22.5",
"@babel/plugin-transform-block-scoping": "7.22.5",
"@babel/plugin-transform-class-properties": "7.22.5",
"@babel/plugin-transform-class-static-block": "7.22.5",
"@babel/plugin-transform-classes": "7.22.6",
"@babel/plugin-transform-computed-properties": "7.22.5",
"@babel/plugin-transform-destructuring": "7.22.5",
"@babel/plugin-transform-dotall-regex": "7.22.5",
"@babel/plugin-transform-duplicate-keys": "7.22.5",
"@babel/plugin-transform-dynamic-import": "7.22.5",
"@babel/plugin-transform-exponentiation-operator": "7.22.5",
"@babel/plugin-transform-export-namespace-from": "7.22.5",
"@babel/plugin-transform-flow-strip-types": "7.22.5",
"@babel/plugin-transform-for-of": "7.22.5",
"@babel/plugin-transform-function-name": "7.22.5",
"@babel/plugin-transform-json-strings": "7.22.5",
"@babel/plugin-transform-literals": "7.22.5",
"@babel/plugin-transform-logical-assignment-operators": "7.22.5",
"@babel/plugin-transform-member-expression-literals": "7.22.5",
"@babel/plugin-transform-modules-amd": "7.22.5",
"@babel/plugin-transform-modules-commonjs": "7.22.5",
"@babel/plugin-transform-modules-systemjs": "7.22.5",
"@babel/plugin-transform-modules-umd": "7.22.5",
"@babel/plugin-transform-named-capturing-groups-regex": "7.22.5",
"@babel/plugin-transform-new-target": "7.22.5",
"@babel/plugin-transform-nullish-coalescing-operator": "7.22.5",
"@babel/plugin-transform-numeric-separator": "7.22.5",
"@babel/plugin-transform-object-assign": "7.22.5",
"@babel/plugin-transform-object-rest-spread": "7.22.5",
"@babel/plugin-transform-object-super": "7.22.5",
"@babel/plugin-transform-optional-catch-binding": "7.22.5",
"@babel/plugin-transform-optional-chaining": "7.22.6",
"@babel/plugin-transform-parameters": "7.22.5",
"@babel/plugin-transform-private-methods": "7.22.5",
"@babel/plugin-transform-private-property-in-object": "7.22.5",
"@babel/plugin-transform-property-literals": "7.22.5",
"@babel/plugin-transform-react-constant-elements": "7.22.5",
"@babel/plugin-transform-react-display-name": "7.22.5",
"@babel/plugin-transform-react-jsx-development": "7.22.5",
"@babel/plugin-transform-react-jsx-self": "7.22.5",
"@babel/plugin-transform-react-jsx-source": "7.22.5",
"@babel/plugin-transform-react-jsx": "7.22.5",
"@babel/plugin-transform-react-pure-annotations": "7.22.5",
"@babel/plugin-transform-regenerator": "7.22.5",
"@babel/plugin-transform-reserved-words": "7.22.5",
"@babel/plugin-transform-runtime": "7.22.9",
"@babel/plugin-transform-shorthand-properties": "7.22.5",
"@babel/plugin-transform-spread": "7.22.5",
"@babel/plugin-transform-sticky-regex": "7.22.5",
"@babel/plugin-transform-template-literals": "7.22.5",
"@babel/plugin-transform-typeof-symbol": "7.22.5",
"@babel/plugin-transform-typescript": "7.22.9",
"@babel/plugin-transform-unicode-escapes": "7.22.5",
"@babel/plugin-transform-unicode-property-regex": "7.22.5",
"@babel/plugin-transform-unicode-regex": "7.22.5",
"@babel/plugin-transform-unicode-sets-regex": "7.22.5",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.22.9",
"@babel/preset-flow": "7.22.15",
"@babel/preset-modules": "0.1.5",
"@babel/preset-react": "7.22.5",
"@babel/preset-typescript": "7.22.5",
"@babel/register": "7.22.15",
"@babel/regjsgen": "0.8.0",
"@babel/runtime-corejs3": "7.20.7",
"@babel/runtime": "7.22.6",
"@babel/template": "7.22.5",
"@babel/traverse": "7.22.8",
"@babel/types": "7.22.5",
"@bam.tech/react-native-image-resizer": "3.0.7",
"@bang88/react-native-ultimate-listview": "4.1.0",
"@bcoe/v8-coverage": "0.2.3",
"@chiragrupani/karma-chromium-edge-launcher": "2.1.0",
"@ckeditor/ckeditor5-basic-styles": "39.0.0",
"@ckeditor/ckeditor5-clipboard": "39.0.0",
"@ckeditor/ckeditor5-core": "39.0.0",
"@ckeditor/ckeditor5-editor-inline": "39.0.0",
"@ckeditor/ckeditor5-engine": "39.0.0",
"@ckeditor/ckeditor5-enter": "39.0.0",
"@ckeditor/ckeditor5-essentials": "39.0.0",
"@ckeditor/ckeditor5-paragraph": "39.0.0",
"@ckeditor/ckeditor5-react": "5.1.0",
"@ckeditor/ckeditor5-select-all": "39.0.0",
"@ckeditor/ckeditor5-special-characters": "39.0.0",
"@ckeditor/ckeditor5-typing": "39.0.0",
"@ckeditor/ckeditor5-ui": "39.0.0",
"@ckeditor/ckeditor5-undo": "39.0.0",
"@ckeditor/ckeditor5-upload": "39.0.0",
"@ckeditor/ckeditor5-utils": "39.0.0",
"@ckeditor/ckeditor5-watchdog": "39.0.0",
"@ckeditor/ckeditor5-widget": "39.0.0",
"@colors/colors": "1.5.0",
"@cspotcode/source-map-consumer": "0.8.0",
"@cspotcode/source-map-support": "0.8.1",
"@csstools/normalize.css": "12.0.0",
"@csstools/postcss-cascade-layers": "1.1.1",
"@csstools/postcss-color-function": "1.1.1",
"@csstools/postcss-font-format-keywords": "1.0.1",
"@csstools/postcss-hwb-function": "1.0.2",
"@csstools/postcss-ic-unit": "1.0.1",
"@csstools/postcss-is-pseudo-class": "2.0.7",
"@csstools/postcss-nested-calc": "1.0.0",
"@csstools/postcss-normalize-display-values": "1.0.1",
"@csstools/postcss-oklab-function": "1.1.1",
"@csstools/postcss-progressive-custom-properties": "1.3.0",
"@csstools/postcss-stepped-value-functions": "1.0.1",
"@csstools/postcss-text-decoration-shorthand": "1.0.0",
"@csstools/postcss-trigonometric-functions": "1.0.2",
"@csstools/postcss-unset-value": "1.0.2",
"@csstools/selector-specificity": "2.2.0",
"@date-io/core": "2.16.0",
"@date-io/date-fns": "2.16.0",
"@date-io/dayjs": "2.16.0",
"@date-io/luxon": "2.16.1",
"@date-io/moment": "2.16.1",
"@devexpress/error-stack-parser": "2.0.6",
"@discoveryjs/json-ext": "0.5.7",
"@docsearch/css": "3.5.2",
"@docsearch/react": "3.5.2",
"@docusaurus/core": "3.0.1",
"@docusaurus/cssnano-preset": "3.0.1",
"@docusaurus/logger": "3.0.1",
"@docusaurus/mdx-loader": "3.0.1",
"@docusaurus/module-type-aliases": "3.0.1",
"@docusaurus/plugin-content-blog": "3.0.1",
"@docusaurus/plugin-content-docs": "3.0.1",
"@docusaurus/plugin-content-pages": "3.0.1",
"@docusaurus/plugin-debug": "3.0.1",
"@docusaurus/plugin-google-analytics": "3.0.1",
"@docusaurus/plugin-google-gtag": "3.0.1",
"@docusaurus/plugin-google-tag-manager": "3.0.1",
"@docusaurus/plugin-sitemap": "3.0.1",
"@docusaurus/preset-classic": "3.0.1",
"@docusaurus/react-loadable": "5.5.2",
"@docusaurus/theme-classic": "3.0.1",
"@docusaurus/theme-common": "3.0.1",
"@docusaurus/theme-search-algolia": "3.0.1",
"@docusaurus/theme-translations": "3.0.1",
"@docusaurus/tsconfig": "3.0.1",
"@docusaurus/types": "3.0.1",
"@docusaurus/utils-common": "3.0.1",
"@docusaurus/utils-validation": "3.0.1",
"@docusaurus/utils": "3.0.1",
"@egjs/hammerjs": "2.0.17",
"@electron/remote": "2.0.1",
"@emotion/babel-plugin": "11.11.0",
"@emotion/cache": "11.11.0",
"@emotion/hash": "0.9.1",
"@emotion/is-prop-valid": "1.2.1",
"@emotion/memoize": "0.8.1",
"@emotion/react": "11.11.1",
"@emotion/serialize": "1.1.2",
"@emotion/sheet": "1.2.2",
"@emotion/styled": "11.11.0",
"@emotion/unitless": "0.8.1",
"@emotion/use-insertion-effect-with-fallbacks": "1.0.1",
"@emotion/utils": "1.2.1",
"@emotion/weak-memoize": "0.3.1",
"@esbuild/win32-x64": "0.19.11",
"@eslint-community/eslint-utils": "4.4.0",
"@eslint-community/regexpp": "4.5.1",
"@eslint/eslintrc": "1.4.1",
"@eslint/js": "8.44.0",
"@exodus/schemasafe": "1.0.0-rc.3",
"@fontsource/inconsolata": "4.5.10",
"@fontsource/inter": "4.5.15",
"@fontsource/open-sans": "4.5.14",
"@fontsource/roboto": "4.5.8",
"@formatjs/cli": "4.8.4",
"@formatjs/ecma402-abstract": "1.11.4",
"@formatjs/fast-memoize": "1.2.1",
"@formatjs/icu-messageformat-parser": "2.1.0",
"@formatjs/icu-skeleton-parser": "1.3.6",
"@formatjs/intl-displaynames": "5.4.3",
"@formatjs/intl-listformat": "6.5.3",
"@formatjs/intl-localematcher": "0.2.25",
"@formatjs/intl": "2.2.1",
"@formatjs/ts-transformer": "3.9.4",
"@hapi/hoek": "9.3.0",
"@hapi/topo": "5.1.0",
"@hcaptcha/react-hcaptcha": "1.8.1",
"@humanwhocodes/config-array": "0.10.7",
"@humanwhocodes/gitignore-to-minimatch": "1.0.2",
"@humanwhocodes/module-importer": "1.0.1",
"@humanwhocodes/object-schema": "1.2.1",
"@isaacs/cliui": "8.0.2",
"@istanbuljs/load-nyc-config": "1.1.0",
"@istanbuljs/schema": "0.1.3",
"@jest/console": "27.5.1",
"@jest/core": "27.5.1",
"@jest/create-cache-key-function": "29.7.0",
"@jest/environment": "27.5.1",
"@jest/expect-utils": "29.6.1",
"@jest/expect": "29.7.0",
"@jest/fake-timers": "27.5.1",
"@jest/globals": "27.5.1",
"@jest/reporters": "27.5.1",
"@jest/schemas": "28.1.3",
"@jest/source-map": "27.5.1",
"@jest/test-result": "27.5.1",
"@jest/test-sequencer": "27.5.1",
"@jest/transform": "27.5.1",
"@jest/types": "27.5.1",
"@jridgewell/gen-mapping": "0.3.3",
"@jridgewell/resolve-uri": "3.1.0",
"@jridgewell/set-array": "1.1.2",
"@jridgewell/source-map": "0.3.5",
"@jridgewell/sourcemap-codec": "1.4.15",
"@jridgewell/trace-mapping": "0.3.18",
"@js-joda/core": "4.3.1",
"@koa/router": "10.1.1",
"@koale/useworker": "4.0.2",
"@kwsites/file-exists": "1.1.1",
"@kwsites/promise-deferred": "1.1.1",
"@leichtgewicht/ip-codec": "2.0.4",
"@mapbox/node-pre-gyp": "1.0.5",
"@mdx-js/mdx": "3.0.0",
"@mdx-js/react": "3.0.0",
"@messageformat/core": "3.2.0",
"@messageformat/date-skeleton": "1.0.1",
"@messageformat/number-skeleton": "1.2.0",
"@messageformat/parser": "5.1.0",
"@messageformat/runtime": "3.0.1",
"@microsoft/1ds-core-js": "3.2.12",
"@microsoft/1ds-post-js": "3.2.12",
"@microsoft/applicationinsights-channel-js": "3.0.2",
"@microsoft/applicationinsights-common": "3.0.2",
"@microsoft/applicationinsights-core-js": "3.0.2",
"@microsoft/applicationinsights-shims": "3.0.1",
"@microsoft/applicationinsights-web-basic": "3.0.2",
"@microsoft/applicationinsights-web-snippet": "1.0.1",
"@microsoft/dynamicproto-js": "2.0.2",
"@microsoft/fast-element": "1.12.0",
"@microsoft/fast-foundation": "2.49.0",
"@microsoft/fast-react-wrapper": "0.1.48",
"@microsoft/fast-web-utilities": "5.4.1",
"@microsoft/servicehub-framework": "2.6.74",
"@mini-types/alipay": "3.0.11",
"@mini-types/global": "3.0.11",
"@mini-types/my": "3.0.11",
"@mrmlnc/readdir-enhanced": "2.2.1",
"@mui/base": "5.0.0-alpha.110",
"@mui/core-downloads-tracker": "5.14.0",
"@mui/icons-material": "5.8.4",
"@mui/lab": "5.0.0-alpha.110",
"@mui/material": "5.14.0",
"@mui/private-theming": "5.13.7",
"@mui/styled-engine": "5.13.2",
"@mui/styles": "5.9.1",
"@mui/system": "5.14.0",
"@mui/types": "7.2.4",
"@mui/utils": "5.13.7",
"@mui/x-data-grid": "5.13.1",
"@mui/x-date-pickers": "5.0.20",
"@napi-rs/snappy-android-arm-eabi": "7.2.2",
"@napi-rs/snappy-android-arm64": "7.2.2",
"@napi-rs/snappy-darwin-arm64": "7.2.2",
"@napi-rs/snappy-darwin-x64": "7.2.2",
"@napi-rs/snappy-freebsd-x64": "7.2.2",
"@napi-rs/snappy-linux-arm-gnueabihf": "7.2.2",
"@napi-rs/snappy-linux-arm64-gnu": "7.2.2",
"@napi-rs/snappy-linux-arm64-musl": "7.2.2",
"@napi-rs/snappy-linux-x64-gnu": "7.2.2",
"@napi-rs/snappy-linux-x64-musl": "7.2.2",
"@napi-rs/snappy-win32-arm64-msvc": "7.2.2",
"@napi-rs/snappy-win32-ia32-msvc": "7.2.2",
"@napi-rs/snappy-win32-x64-msvc": "7.2.2",
"@nevware21/ts-async": "0.2.6",
"@nevware21/ts-utils": "0.9.8",
"@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents.3",
"@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1",
"@nicolo-ribaudo/semver-v6": "6.3.3",
"@nodelib/fs.scandir": "2.1.5",
"@nodelib/fs.stat": "2.0.5",
"@nodelib/fs.walk": "1.2.8",
"@opentelemetry/api": "1.1.0",
"@opentelemetry/core": "1.15.0",
"@opentelemetry/instrumentation": "0.40.0",
"@opentelemetry/resources": "1.15.0",
"@opentelemetry/sdk-trace-base": "1.15.0",
"@opentelemetry/semantic-conventions": "1.15.0",
"@parcel/css": "1.14.0",
"@pkgjs/parseargs": "0.11.0",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.10",
"@pnpm/config.env-replace": "1.1.0",
"@pnpm/network.ca-file": "1.0.2",
"@pnpm/npm-conf": "2.2.2",
"@polka/url": "1.0.0-next.24",
"@popperjs/core": "2.11.8",
"@protobufjs/aspromise": "1.1.2",
"@protobufjs/base64": "1.1.2",
"@protobufjs/codegen": "2.0.4",
"@protobufjs/eventemitter": "1.1.0",
"@protobufjs/fetch": "1.1.0",
"@protobufjs/float": "1.0.2",
"@protobufjs/inquire": "1.1.0",
"@protobufjs/path": "1.1.2",
"@protobufjs/pool": "1.1.0",
"@protobufjs/utf8": "1.1.0",
"@react-native-async-storage/async-storage": "1.17.12",
"@react-native-camera-roll/camera-roll": "5.0.4",
"@react-native-clipboard/clipboard": "1.11.2",
"@react-native-community/cli-clean": "9.2.1",
"@react-native-community/cli-config": "9.2.1",
"@react-native-community/cli-debugger-ui": "9.0.0",
"@react-native-community/cli-doctor": "9.3.0",
"@react-native-community/cli-hermes": "9.3.4",
"@react-native-community/cli-platform-android": "9.3.4",
"@react-native-community/cli-platform-ios": "9.3.0",
"@react-native-community/cli-plugin-metro": "9.3.3",
"@react-native-community/cli-server-api": "9.2.1",
"@react-native-community/cli-tools": "9.2.1",
"@react-native-community/cli-types": "9.1.0",
"@react-native-community/cli": "9.3.4",
"@react-native-community/geolocation": "3.0.6",
"@react-native-community/masked-view": "0.1.11",
"@react-native-community/netinfo": "9.3.11",
"@react-native-community/slider": "4.3.3",
"@react-native-masked-view/masked-view": "0.2.9",
"@react-native-picker/picker": "2.4.10",
"@react-native/assets-registry": "0.72.0",
"@react-native/assets": "1.0.0",
"@react-native/babel-plugin-codegen": "0.74.0",
"@react-native/babel-preset": "0.74.0",
"@react-native/codegen": "0.74.0",
"@react-native/gradle-plugin": "0.72.11",
"@react-native/js-polyfills": "0.74.0",
"@react-native/metro-babel-transformer": "0.74.0",
"@react-native/metro-config": "0.74.0",
"@react-native/normalize-color": "2.0.0",
"@react-native/normalize-colors": "0.72.0",
"@react-native/polyfills": "2.0.0",
"@react-native/virtualized-lists": "0.72.8",
"@react-navigation/bottom-tabs": "6.5.11",
"@react-navigation/core": "6.4.10",
"@react-navigation/elements": "1.3.21",
"@react-navigation/native-stack": "6.9.17",
"@react-navigation/native": "6.1.9",
"@react-navigation/routers": "6.1.9",
"@react-navigation/stack": "6.3.20",
"@reduxjs/toolkit": "1.9.5",
"@remix-run/router": "1.7.1",
"@rnx-kit/console": "1.0.12",
"@rnx-kit/metro-resolver-symlinks": "0.1.34",
"@rnx-kit/tools-language": "2.0.1",
"@rnx-kit/tools-node": "2.1.0",
"@rnx-kit/tools-react-native": "1.3.4",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "20.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "11.2.1",
"@rollup/plugin-replace": "2.4.2",
"@rollup/pluginutils": "3.1.0",
"@rollup/rollup-win32-x64-msvc": "4.9.4",
"@rushstack/eslint-patch": "1.3.2",
"@sideway/address": "4.1.4",
"@sideway/formula": "3.0.1",
"@sideway/pinpoint": "2.0.0",
"@sinclair/typebox": "0.24.51",
"@sindresorhus/is": "4.6.0",
"@sinonjs/commons": "1.8.6",
"@sinonjs/fake-timers": "8.1.0",
"@sinonjs/samsam": "5.3.1",
"@sinonjs/text-encoding": "0.7.2",
"@slorber/remark-comment": "1.0.0",
"@slorber/static-site-generator-webpack-plugin": "4.0.7",
"@stencil/core": "2.22.3",
"@surma/rollup-plugin-off-main-thread": "2.2.3",
"@svgr/babel-plugin-add-jsx-attribute": "5.4.0",
"@svgr/babel-plugin-remove-jsx-attribute": "5.4.0",
"@svgr/babel-plugin-remove-jsx-empty-expression": "5.0.1",
"@svgr/babel-plugin-replace-jsx-attribute-value": "5.0.1",
"@svgr/babel-plugin-svg-dynamic-title": "5.4.0",
"@svgr/babel-plugin-svg-em-dimensions": "5.4.0",
"@svgr/babel-plugin-transform-react-native-svg": "5.4.0",
"@svgr/babel-plugin-transform-svg-component": "5.5.0",
"@svgr/babel-preset": "5.5.0",
"@svgr/core": "5.5.0",
"@svgr/hast-util-to-babel-ast": "5.5.0",
"@svgr/plugin-jsx": "5.5.0",
"@svgr/plugin-svgo": "5.5.0",
"@svgr/webpack": "5.5.0",
"@swc/core-win32-x64-msvc": "1.3.23",
"@swc/core": "1.3.23",
"@swc/counter": "0.1.2",
"@swc/register": "0.1.10",
"@swc/types": "0.1.5",
"@szmarczak/http-timer": "4.0.6",
"@tarojs/api": "3.6.18",
"@tarojs/cli": "3.6.18",
"@tarojs/components-advanced": "3.6.18",
"@tarojs/components-react": "3.6.18",
"@tarojs/components-rn": "3.6.18",
"@tarojs/components": "3.6.18",
"@tarojs/helper": "3.6.18",
"@tarojs/plugin-doctor-win32-x64-msvc": "0.0.11",
"@tarojs/plugin-doctor": "0.0.11",
"@tarojs/plugin-framework-react": "3.6.18",
"@tarojs/plugin-platform-alipay": "3.6.18",
"@tarojs/plugin-platform-h5": "3.6.18",
"@tarojs/plugin-platform-jd": "3.6.18",
"@tarojs/plugin-platform-qq": "3.6.18",
"@tarojs/plugin-platform-swan": "3.6.18",
"@tarojs/plugin-platform-tt": "3.6.18",
"@tarojs/plugin-platform-weapp": "3.6.18",
"@tarojs/react": "3.6.18",
"@tarojs/rn-runner": "3.6.18",
"@tarojs/rn-style-transformer": "3.6.18",
"@tarojs/rn-supporter": "3.6.18",
"@tarojs/rn-transformer": "3.6.18",
"@tarojs/router-rn": "3.6.18",
"@tarojs/router": "3.6.18",
"@tarojs/runner-utils": "3.6.18",
"@tarojs/runtime-rn": "3.6.18",
"@tarojs/runtime": "3.6.18",
"@tarojs/service": "3.6.18",
"@tarojs/shared": "3.6.18",
"@tarojs/taro-h5": "3.6.18",
"@tarojs/taro-loader": "3.6.18",
"@tarojs/taro-rn": "3.6.18",
"@tarojs/taro": "3.6.18",
"@tarojs/webpack5-prebundle": "3.6.18",
"@tarojs/webpack5-runner": "3.6.18",
"@tediousjs/connection-string": "0.3.0",
"@testing-library/dom": "8.20.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "12.1.5",
"@testing-library/user-event": "13.5.0",
"@tootallnate/once": "1.1.2",
"@trysound/sax": "0.2.0",
"@ts-morph/bootstrap": "0.12.2",
"@ts-morph/common": "0.12.3",
"@tsconfig/node10": "1.0.9",
"@tsconfig/node12": "1.0.11",
"@tsconfig/node14": "1.0.3",
"@tsconfig/node16": "1.0.4",
"@types/accepts": "1.3.5",
"@types/acorn": "4.0.6",
"@types/adm-zip": "0.5.0",
"@types/agent-base": "4.2.2",
"@types/archiver": "2.1.3",
"@types/archy": "0.0.31",
"@types/are-we-there-yet": "1.1.0",
"@types/argparse": "2.0.10",
"@types/aria-query": "5.0.1",
"@types/array-find-index": "1.0.0",
"@types/array.prototype.flat": "1.2.1",
"@types/array.prototype.flatmap": "1.2.2",
"@types/asap": "2.0.0",
"@types/async": "3.2.20",
"@types/babel__core": "7.20.1",
"@types/babel__generator": "7.6.4",
"@types/babel__plugin-transform-runtime": "7.9.2",
"@types/babel__preset-env": "7.9.2",
"@types/babel__template": "7.4.1",
"@types/babel__traverse": "7.20.1",
"@types/babel-plugin-macros": "3.1.0",
"@types/babel-types": "7.0.11",
"@types/balanced-match": "1.0.3",
"@types/base-64": "1.0.0",
"@types/big.js": "6.2.0",
"@types/bigi": "1.4.3",
"@types/bluebird": "3.5.38",
"@types/body-parser": "1.19.2",
"@types/bonjour": "3.5.10",
"@types/boolbase": "1.0.1",
"@types/brace-expansion": "1.1.0",
"@types/braces": "3.0.2",
"@types/bser": "2.0.1",
"@types/buffer-from": "1.1.0",
"@types/bytes": "3.1.1",
"@types/cacheable-request": "6.0.3",
"@types/call-bind": "1.0.3",
"@types/camelcase-css": "2.0.0",
"@types/caniuse-api": "3.0.3",
"@types/caniuse-lite": "1.0.2",
"@types/case-sensitive-paths-webpack-plugin": "2.1.6",
"@types/caseless": "0.12.2",
"@types/chai": "4.3.4",
"@types/check-types": "7.3.4",
"@types/cheerio": "0.22.31",
"@types/clean-css": "4.2.6",
"@types/co": "4.6.4",
"@types/color-convert": "2.0.1",
"@types/color-name": "1.1.1",
"@types/combined-stream": "1.0.4",
"@types/command-line-args": "5.2.0",
"@types/command-line-usage": "5.0.2",
"@types/common-tags": "1.8.2",
"@types/commondir": "1.0.0",
"@types/component-emitter": "1.2.11",
"@types/compressible": "2.0.0",
"@types/compression": "1.7.3",
"@types/concat-map": "0.0.1",
"@types/confusing-browser-globals": "1.0.1",
"@types/connect-history-api-fallback": "1.5.0",
"@types/connect": "3.4.35",
"@types/content-disposition": "0.5.6",
"@types/content-type": "1.1.6",
"@types/convert-source-map": "2.0.1",
"@types/cookie-signature": "1.1.0",
"@types/cookie": "0.4.1",
"@types/core-js": "2.5.6",
"@types/cors": "2.8.13",
"@types/cross-spawn": "6.0.3",
"@types/crypto-js": "4.1.1",
"@types/css-tree": "2.3.2",
"@types/css.escape": "1.5.0",
"@types/css": "0.0.33",
"@types/cssesc": "3.0.0",
"@types/csso": "5.0.1",
"@types/cssom": "0.4.1",
"@types/cssstyle": "2.2.2",
"@types/damerau-levenshtein": "1.0.0",
"@types/data-urls": "3.0.1",
"@types/debug": "4.1.8",
"@types/dedent": "0.7.0",
"@types/deep-diff": "1.0.2",
"@types/deep-equal": "1.0.1",
"@types/default-gateway": "7.2.0",
"@types/define-properties": "1.1.3",
"@types/depd": "1.1.32",
"@types/destroy": "1.0.0",
"@types/detect-node": "2.0.0",
"@types/didyoumean": "1.2.0",
"@types/dir-glob": "2.0.1",
"@types/discontinuous-range": "1.0.2",
"@types/dlv": "1.1.2",
"@types/dns-packet": "5.6.0",
"@types/doctrine": "0.0.6",
"@types/domexception": "4.0.0",
"@types/draft-convert": "2.1.4",
"@types/draft-js": "0.11.12",
"@types/ee-first": "1.1.0",
"@types/ejs": "3.1.2",
"@types/encodeurl": "1.0.0",
"@types/enzyme": "3.10.13",
"@types/es-abstract": "1.17.3",
"@types/es-get-iterator": "1.1.0",
"@types/es-to-primitive": "1.2.4",
"@types/escape-html": "1.0.2",
"@types/escodegen": "0.0.7",
"@types/eslint-config-prettier": "6.11.0",
"@types/eslint-plugin-prettier": "3.1.0",
"@types/eslint-scope": "3.7.4",
"@types/eslint-utils": "3.0.2",
"@types/eslint": "8.44.0",
"@types/esprima": "4.0.3",
"@types/esquery": "1.5.0",
"@types/estraverse": "5.1.3",
"@types/estree-jsx": "1.0.3",
"@types/estree": "1.0.1",
"@types/esutils": "2.0.0",
"@types/etag": "1.8.1",
"@types/events": "3.0.0",
"@types/exit": "0.1.31",
"@types/expect": "1.20.4",
"@types/express-serve-static-core": "4.17.35",
"@types/express": "4.17.17",
"@types/fast-levenshtein": "0.0.2",
"@types/fb-watchman": "2.0.1",
"@types/fbjs": "3.0.4",
"@types/file-entry-cache": "5.0.2",
"@types/file-loader": "5.0.1",
"@types/fill-range": "7.0.0",
"@types/finalhandler": "1.2.0",
"@types/find-root": "1.1.2",
"@types/flat-cache": "2.0.0",
"@types/follow-redirects": "1.14.1",
"@types/forwarded": "0.1.0",
"@types/fresh": "0.5.0",
"@types/fs-extra": "9.0.13",
"@types/function-bind": "1.1.7",
"@types/functional-red-black-tree": "1.0.3",
"@types/gauge": "5.0.0",
"@types/gensync": "1.0.0",
"@types/geojson": "7946.0.13",
"@types/get-intrinsic": "1.2.0",
"@types/glob-parent": "5.1.1",
"@types/glob-to-regexp": "0.4.1",
"@types/glob": "7.2.0",
"@types/global-modules": "2.0.0",
"@types/global-prefix": "3.0.0",
"@types/globalthis": "1.0.1",
"@types/gopd": "1.0.0",
"@types/graceful-fs": "4.1.6",
"@types/gtag.js": "0.0.12",
"@types/hammerjs": "2.0.44",
"@types/has-ansi": "5.0.0",
"@types/has-bigints": "1.0.0",
"@types/has-symbols": "1.0.0",
"@types/has": "1.0.0",
"@types/hast": "3.0.3",
"@types/he": "1.2.0",
"@types/history": "4.7.11",
"@types/hoist-non-react-statics": "3.3.1",
"@types/html-encoding-sniffer": "3.0.0",
"@types/html-escaper": "3.0.0",
"@types/html-minifier-terser": "6.1.0",
"@types/html-minifier": "4.0.2",
"@types/html-webpack-plugin": "3.2.6",
"@types/http-cache-semantics": "4.0.1",
"@types/http-errors": "2.0.1",
"@types/http-proxy": "1.17.11",
"@types/hyphenate-style-name": "1.0.0",
"@types/icss-utils": "5.1.0",
"@types/identity-obj-proxy": "3.0.0",
"@types/import-local": "3.1.0",
"@types/imurmurhash": "0.1.1",
"@types/inherits": "0.0.30",
"@types/ini": "1.3.31",
"@types/internal-slot": "1.0.1",
"@types/invariant": "2.2.35",
"@types/is-arguments": "1.0.0",
"@types/is-base64": "1.1.1",
"@types/is-bigint": "1.0.0",
"@types/is-boolean-object": "1.1.0",
"@types/is-callable": "1.1.0",
"@types/is-core-module": "2.2.0",
"@types/is-date-object": "1.0.2",
"@types/is-glob": "4.0.2",
"@types/is-map": "2.0.0",
"@types/is-number": "7.0.3",
"@types/is-regex": "1.0.0",
"@types/is-string": "1.0.0",
"@types/is-symbol": "1.0.0",
"@types/is-typedarray": "1.0.0",
"@types/isarray": "2.0.0",
"@types/isexe": "2.0.1",
"@types/isomorphic-fetch": "0.0.36",
"@types/istanbul-lib-coverage": "2.0.4",
"@types/istanbul-lib-instrument": "1.7.4",
"@types/istanbul-lib-report": "3.0.0",
"@types/istanbul-lib-source-maps": "4.0.1",
"@types/istanbul-reports": "3.0.1",
"@types/jake": "0.0.33",
"@types/jest": "29.5.3",
"@types/js-cookie": "2.2.7",
"@types/js-yaml": "4.0.5",
"@types/jsdom": "21.1.1",
"@types/jsesc": "3.0.1",
"@types/json-schema": "7.0.12",
"@types/json-stable-stringify-without-jsonify": "1.0.0",
"@types/json-stable-stringify": "1.0.34",
"@types/json2md": "1.5.1",
"@types/json5": "0.0.29",
"@types/jsonfile": "6.1.1",
"@types/jszip": "3.1.5",
"@types/keyv": "3.1.4",
"@types/kind-of": "6.0.0",
"@types/language-tags": "1.0.2",
"@types/less": "3.0.4",
"@types/loader-runner": "2.2.5",
"@types/loader-utils": "2.0.3",
"@types/lodash-es": "4.17.9",
"@types/lodash.debounce": "4.0.7",
"@types/lodash.escape": "4.0.7",
"@types/lodash.flattendeep": "4.4.7",
"@types/lodash.isequal": "4.5.6",
"@types/lodash.memoize": "4.1.7",
"@types/lodash.merge": "4.6.7",
"@types/lodash.sortby": "4.7.7",
"@types/lodash.uniq": "4.5.7",
"@types/lodash": "4.14.195",
"@types/long": "4.0.2",
"@types/make-fetch-happen": "10.0.1",
"@types/mdast": "4.0.3",
"@types/mdx": "2.0.10",
"@types/media-typer": "1.1.1",
"@types/merge-descriptors": "1.0.1",
"@types/merge-stream": "1.1.2",
"@types/merge2": "1.4.1",
"@types/methods": "1.1.1",
"@types/micromatch": "4.0.2",
"@types/mime-db": "1.43.1",
"@types/mime-types": "2.1.1",
"@types/mime": "3.0.1",
"@types/min-indent": "1.0.0",
"@types/minimalistic-assert": "1.0.1",
"@types/minimatch": "5.1.2",
"@types/minimist": "1.2.2",
"@types/minizlib": "2.1.4",
"@types/mocha": "8.2.3",
"@types/mockjs": "1.0.7",
"@types/moo": "0.5.6",
"@types/ms": "0.7.31",
"@types/multicast-dns": "7.2.1",
"@types/mz": "2.7.4",
"@types/natural-compare-lite": "1.4.0",
"@types/natural-compare": "1.4.1",
"@types/nearley": "2.11.2",
"@types/negotiator": "0.6.1",
"@types/neo-async": "2.6.1",
"@types/node-fetch": "2.6.4",
"@types/node-forge": "1.3.4",
"@types/node-int64": "0.4.29",
"@types/node-sass": "4.11.3",
"@types/node-schedule": "2.1.0",
"@types/node": "20.4.2",
"@types/normalize-package-data": "2.4.4",
"@types/normalize-path": "3.0.0",
"@types/npm-package-arg": "6.1.1",
"@types/npm-registry-fetch": "8.0.4",
"@types/npmlog": "4.1.4",
"@types/nwsapi": "2.2.3",
"@types/object-assign": "4.0.30",
"@types/object-hash": "3.0.4",
"@types/object-inspect": "1.8.2",
"@types/object-keys": "1.0.1",
"@types/object.fromentries": "2.0.2",
"@types/object.getownpropertydescriptors": "2.1.2",
"@types/on-finished": "2.3.2",
"@types/on-headers": "1.0.1",
"@types/once": "1.4.1",
"@types/parse-conflict-json": "1.1.0",
"@types/parse-json": "4.0.0",
"@types/parseurl": "1.3.1",
"@types/path-is-absolute": "1.0.0",
"@types/path-parse": "1.0.19",
"@types/pg": "8.10.2",
"@types/picomatch": "2.3.0",
"@types/pify": "5.0.1",
"@types/postcss-clamp": "4.1.0",
"@types/postcss-flexbugs-fixes": "5.0.0",
"@types/postcss-font-variant": "5.0.0",
"@types/postcss-gap-properties": "2.0.1",
"@types/postcss-import": "14.0.0",
"@types/postcss-js": "4.0.1",
"@types/postcss-modules-extract-imports": "3.0.2",
"@types/postcss-modules-local-by-default": "4.0.0",
"@types/postcss-modules-scope": "3.0.1",
"@types/postcss-modules-values": "4.0.0",
"@types/prelude-ls": "1.1.30",
"@types/prettier-linter-helpers": "1.0.1",
"@types/prettier": "2.7.3",
"@types/prismjs": "1.26.3",
"@types/proc-log": "3.0.1",
"@types/prompts": "2.4.4",
"@types/prop-types": "15.7.5",
"@types/protocol-buffers-schema": "3.4.1",
"@types/proxy-addr": "2.0.0",
"@types/psl": "1.1.0",
"@types/punycode": "2.1.0",
"@types/q": "1.5.5",
"@types/qs": "6.9.7",
"@types/querystringify": "2.0.0",
"@types/raf-schd": "4.0.1",
"@types/raf": "3.4.0",
"@types/ramda": "0.29.2",
"@types/randombytes": "2.0.0",
"@types/range-parser": "1.2.4",
"@types/react-beautiful-dnd": "13.1.4",
"@types/react-csv": "1.1.3",
"@types/react-custom-scrollbars": "4.0.10",
"@types/react-dev-utils": "9.0.11",
"@types/react-dom": "17.0.20",
"@types/react-input-autosize": "2.2.1",
"@types/react-is": "18.2.1",
"@types/react-mentions": "4.1.8",
"@types/react-native": "0.69.24",
"@types/react-recaptcha": "2.3.4",
"@types/react-redux": "7.1.25",
"@types/react-refresh": "0.14.0",
"@types/react-router-config": "5.0.11",
"@types/react-router-dom": "5.3.3",
"@types/react-router": "5.1.20",
"@types/react-test-renderer": "18.0.5",
"@types/react-transition-group": "4.4.6",
"@types/react": "18.2.15",
"@types/readable-stream": "4.0.2",
"@types/recursive-readdir": "2.2.1",
"@types/redux-logger": "3.0.9",
"@types/regenerate": "1.4.1",
"@types/regenerator-runtime": "0.13.1",
"@types/relateurl": "0.2.29",
"@types/request": "2.48.8",
"@types/require-directory": "2.1.2",
"@types/require-from-string": "1.2.1",
"@types/require-relative": "0.8.0",
"@types/requires-port": "1.0.0",
"@types/resolve-protobuf-schema": "2.1.0",
"@types/resolve": "1.17.1",
"@types/responselike": "1.0.0",
"@types/retry": "0.12.0",
"@types/run-parallel": "1.1.0",
"@types/safe-regex-test": "1.0.0",
"@types/safer-buffer": "2.1.0",
"@types/sass-loader": "8.0.5",
"@types/sass": "1.45.0",
"@types/sax": "1.2.4",
"@types/scheduler": "0.16.3",
"@types/semver": "7.5.0",
"@types/send": "0.17.1",
"@types/serialize-javascript": "5.0.2",
"@types/serve-index": "1.9.1",
"@types/serve-static": "1.15.2",
"@types/set-blocking": "2.0.0",
"@types/setimmediate": "1.0.2",
"@types/shallowequal": "1.1.4",
"@types/shebang-command": "1.2.0",
"@types/shell-quote": "1.7.1",
"@types/signal-exit": "3.0.1",
"@types/sinon-chai": "3.2.9",
"@types/sinon": "9.0.11",
"@types/sinonjs__fake-timers": "8.1.2",
"@types/sm-crypto": "0.3.1",
"@types/sockjs": "0.3.33",
"@types/source-list-map": "0.1.2",
"@types/source-map-support": "0.5.7",
"@types/source-map": "0.1.29",
"@types/spdy": "3.4.5",
"@types/sprintf-js": "1.1.2",
"@types/ssri": "7.1.1",
"@types/stack-utils": "2.0.1",
"@types/statuses": "2.0.1",
"@types/stream-buffers": "3.0.3",
"@types/string-natural-compare": "3.0.2",
"@types/string.prototype.matchall": "4.0.1",
"@types/stringify-object": "4.0.2",
"@types/strip-comments": "2.0.1",
"@types/strip-final-newline": "3.0.0",
"@types/stylis": "4.2.0",
"@types/stylus": "0.48.39",
"@types/supports-color": "8.1.1",
"@types/svg-parser": "2.0.3",
"@types/svgo": "2.6.4",
"@types/symbol-tree": "3.2.2",
"@types/tapable": "1.0.8",
"@types/test-exclude": "6.0.0",
"@types/testing-library__jest-dom": "5.14.8",
"@types/text-table": "0.2.2",
"@types/thunky": "1.1.0",
"@types/tmpl": "1.0.0",
"@types/to-camel-case": "1.0.0",
"@types/to-regex-range": "5.0.0",
"@types/to-space-case": "1.0.0",
"@types/toidentifier": "1.0.0",
"@types/tough-cookie": "4.0.2",
"@types/tr46": "3.0.0",
"@types/trusted-types": "2.0.3",
"@types/tryer": "1.0.2",
"@types/type-check": "0.3.27",
"@types/type-detect": "4.0.1",
"@types/type-is": "1.6.3",
"@types/typedarray-to-buffer": "4.0.0",
"@types/ua-parser-js": "0.7.37",
"@types/uglify-js": "3.17.1",
"@types/unbox-primitive": "1.0.1",
"@types/unist": "2.0.3",
"@types/universalify": "1.0.0",
"@types/urijs": "*",