-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package_versions.txt
executable file
·1921 lines (1921 loc) · 242 KB
/
package_versions.txt
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 VERSION TYPE
@apideck/better-ajv-errors 0.3.3 npm
@babel/code-frame 7.16.7 npm
@babel/compat-data 7.17.0 npm
@babel/core 7.16.0 npm
@babel/eslint-parser 7.17.0 npm
@babel/generator 7.17.3 npm
@babel/helper-annotate-as-pure 7.16.7 npm
@babel/helper-builder-binary-assignment-operator-visitor 7.16.7 npm
@babel/helper-compilation-targets 7.16.7 npm
@babel/helper-create-class-features-plugin 7.17.6 npm
@babel/helper-create-regexp-features-plugin 7.17.0 npm
@babel/helper-define-polyfill-provider 0.3.1 npm
@babel/helper-environment-visitor 7.16.7 npm
@babel/helper-explode-assignable-expression 7.16.7 npm
@babel/helper-function-name 7.16.7 npm
@babel/helper-get-function-arity 7.16.7 npm
@babel/helper-hoist-variables 7.16.7 npm
@babel/helper-member-expression-to-functions 7.16.7 npm
@babel/helper-module-imports 7.16.7 npm
@babel/helper-module-transforms 7.17.6 npm
@babel/helper-optimise-call-expression 7.16.7 npm
@babel/helper-plugin-utils 7.16.7 npm
@babel/helper-remap-async-to-generator 7.16.8 npm
@babel/helper-replace-supers 7.16.7 npm
@babel/helper-simple-access 7.16.7 npm
@babel/helper-skip-transparent-expression-wrappers 7.16.0 npm
@babel/helper-split-export-declaration 7.16.7 npm
@babel/helper-validator-identifier 7.16.7 npm
@babel/helper-validator-option 7.16.7 npm
@babel/helper-wrap-function 7.16.8 npm
@babel/helpers 7.16.3 npm
@babel/highlight 7.16.10 npm
@babel/parser 7.17.3 npm
@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression 7.16.7 npm
@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining 7.16.7 npm
@babel/plugin-proposal-async-generator-functions 7.16.8 npm
@babel/plugin-proposal-class-properties 7.16.7 npm
@babel/plugin-proposal-class-static-block 7.17.6 npm
@babel/plugin-proposal-decorators 7.17.2 npm
@babel/plugin-proposal-dynamic-import 7.16.7 npm
@babel/plugin-proposal-export-namespace-from 7.16.7 npm
@babel/plugin-proposal-json-strings 7.16.7 npm
@babel/plugin-proposal-logical-assignment-operators 7.16.7 npm
@babel/plugin-proposal-nullish-coalescing-operator 7.16.7 npm
@babel/plugin-proposal-numeric-separator 7.16.7 npm
@babel/plugin-proposal-object-rest-spread 7.17.3 npm
@babel/plugin-proposal-optional-catch-binding 7.16.7 npm
@babel/plugin-proposal-optional-chaining 7.16.7 npm
@babel/plugin-proposal-private-methods 7.16.11 npm
@babel/plugin-proposal-private-property-in-object 7.16.7 npm
@babel/plugin-proposal-unicode-property-regex 7.16.7 npm
@babel/plugin-syntax-async-generators 7.8.4 npm
@babel/plugin-syntax-bigint 7.8.3 npm
@babel/plugin-syntax-class-properties 7.12.13 npm
@babel/plugin-syntax-class-static-block 7.14.5 npm
@babel/plugin-syntax-decorators 7.17.0 npm
@babel/plugin-syntax-dynamic-import 7.8.3 npm
@babel/plugin-syntax-export-namespace-from 7.8.3 npm
@babel/plugin-syntax-flow 7.16.7 npm
@babel/plugin-syntax-import-meta 7.10.4 npm
@babel/plugin-syntax-json-strings 7.8.3 npm
@babel/plugin-syntax-jsx 7.16.0 npm
@babel/plugin-syntax-logical-assignment-operators 7.10.4 npm
@babel/plugin-syntax-nullish-coalescing-operator 7.8.3 npm
@babel/plugin-syntax-numeric-separator 7.10.4 npm
@babel/plugin-syntax-object-rest-spread 7.8.3 npm
@babel/plugin-syntax-optional-catch-binding 7.8.3 npm
@babel/plugin-syntax-optional-chaining 7.8.3 npm
@babel/plugin-syntax-private-property-in-object 7.14.5 npm
@babel/plugin-syntax-top-level-await 7.14.5 npm
@babel/plugin-syntax-typescript 7.16.7 npm
@babel/plugin-transform-arrow-functions 7.16.7 npm
@babel/plugin-transform-async-to-generator 7.16.8 npm
@babel/plugin-transform-block-scoped-functions 7.16.7 npm
@babel/plugin-transform-block-scoping 7.16.7 npm
@babel/plugin-transform-classes 7.16.7 npm
@babel/plugin-transform-computed-properties 7.16.7 npm
@babel/plugin-transform-destructuring 7.17.3 npm
@babel/plugin-transform-dotall-regex 7.16.7 npm
@babel/plugin-transform-duplicate-keys 7.16.7 npm
@babel/plugin-transform-exponentiation-operator 7.16.7 npm
@babel/plugin-transform-flow-strip-types 7.16.7 npm
@babel/plugin-transform-for-of 7.16.7 npm
@babel/plugin-transform-function-name 7.16.7 npm
@babel/plugin-transform-literals 7.16.7 npm
@babel/plugin-transform-member-expression-literals 7.16.7 npm
@babel/plugin-transform-modules-amd 7.16.7 npm
@babel/plugin-transform-modules-commonjs 7.16.8 npm
@babel/plugin-transform-modules-systemjs 7.16.7 npm
@babel/plugin-transform-modules-umd 7.16.7 npm
@babel/plugin-transform-named-capturing-groups-regex 7.16.8 npm
@babel/plugin-transform-new-target 7.16.7 npm
@babel/plugin-transform-object-super 7.16.7 npm
@babel/plugin-transform-parameters 7.16.7 npm
@babel/plugin-transform-property-literals 7.16.7 npm
@babel/plugin-transform-react-constant-elements 7.16.0 npm
@babel/plugin-transform-react-display-name 7.16.0 npm
@babel/plugin-transform-react-jsx 7.16.0 npm
@babel/plugin-transform-react-jsx-development 7.16.0 npm
@babel/plugin-transform-react-pure-annotations 7.16.0 npm
@babel/plugin-transform-regenerator 7.16.7 npm
@babel/plugin-transform-reserved-words 7.16.7 npm
@babel/plugin-transform-runtime 7.17.0 npm
@babel/plugin-transform-shorthand-properties 7.16.7 npm
@babel/plugin-transform-spread 7.16.7 npm
@babel/plugin-transform-sticky-regex 7.16.7 npm
@babel/plugin-transform-template-literals 7.16.7 npm
@babel/plugin-transform-typeof-symbol 7.16.7 npm
@babel/plugin-transform-typescript 7.16.8 npm
@babel/plugin-transform-unicode-escapes 7.16.7 npm
@babel/plugin-transform-unicode-regex 7.16.7 npm
@babel/preset-env 7.16.11 npm
@babel/preset-modules 0.1.5 npm
@babel/preset-react 7.16.0 npm
@babel/preset-typescript 7.16.7 npm
@babel/runtime 7.17.2 npm
@babel/runtime-corejs3 7.16.3 npm
@babel/template 7.16.7 npm
@babel/traverse 7.17.3 npm
@babel/types 7.17.0 npm
@bcoe/v8-coverage 0.2.3 npm (+1 duplicate)
@cspotcode/source-map-consumer 0.8.0 npm (+1 duplicate)
@cspotcode/source-map-support 0.7.0 npm (+1 duplicate)
@csstools/normalize.css 12.0.0 npm
@csstools/postcss-color-function 1.0.2 npm
@csstools/postcss-font-format-keywords 1.0.0 npm
@csstools/postcss-hwb-function 1.0.0 npm
@csstools/postcss-ic-unit 1.0.0 npm
@csstools/postcss-is-pseudo-class 2.0.0 npm
@csstools/postcss-normalize-display-values 1.0.0 npm
@csstools/postcss-oklab-function 1.0.1 npm
@csstools/postcss-progressive-custom-properties 1.2.0 npm
@dabh/diagnostics 2.0.2 npm
@date-io/core 2.11.0 npm (+3 duplicates)
@date-io/date-fns 2.11.0 npm
@date-io/dayjs 2.11.0 npm
@date-io/luxon 2.11.1 npm
@date-io/moment 2.11.0 npm
@dinero.js/calculator-number 2.0.0-alpha.8 npm (+1 duplicate)
@dinero.js/core 2.0.0-alpha.8 npm (+1 duplicate)
@dinero.js/currencies 2.0.0-alpha.8 npm (+1 duplicate)
@emotion/babel-plugin 11.3.0 npm
@emotion/cache 11.6.0 npm
@emotion/hash 0.8.0 npm
@emotion/is-prop-valid 1.1.1 npm
@emotion/memoize 0.7.5 npm
@emotion/react 11.5.0 npm
@emotion/serialize 1.0.2 npm
@emotion/sheet 1.1.0 npm
@emotion/styled 11.3.0 npm
@emotion/unitless 0.7.5 npm
@emotion/utils 1.0.0 npm
@emotion/weak-memoize 0.2.5 npm
@eslint/eslintrc 1.1.0 npm
@humanwhocodes/config-array 0.9.3 npm
@humanwhocodes/object-schema 1.2.1 npm
@isaacs/cliui 8.0.2 npm
@isaacs/string-locale-compare 1.1.0 npm
@istanbuljs/load-nyc-config 1.1.0 npm
@istanbuljs/schema 0.1.3 npm
@jest/console 27.5.1 npm
@jest/core 27.5.1 npm
@jest/environment 27.5.1 npm
@jest/fake-timers 27.5.1 npm
@jest/globals 27.5.1 npm
@jest/reporters 27.5.1 npm
@jest/source-map 27.5.1 npm
@jest/test-result 27.5.1 npm
@jest/test-sequencer 27.5.1 npm
@jest/transform 27.5.1 npm
@jest/types 26.6.2 npm
@jest/types 27.2.5 npm
@jest/types 27.5.1 npm (+28 duplicates)
@juggle/resize-observer 3.3.1 npm
@mapbox/node-pre-gyp 1.0.6 npm
@mui/base 5.0.0-alpha.58 npm
@mui/base 5.0.0-alpha.59 npm
@mui/icons-material 5.2.0 npm
@mui/lab 5.0.0-alpha.59 npm
@mui/material 5.2.2 npm
@mui/private-theming 5.2.3 npm
@mui/styled-engine 5.2.0 npm
@mui/styles 5.2.2 npm
@mui/system 5.2.3 npm
@mui/types 7.1.0 npm
@mui/utils 5.2.3 npm
@my-scope/package-a 0.0.0 npm (+1 duplicate)
@my-scope/package-b 0.0.0 npm (+1 duplicate)
@nodelib/fs.scandir 2.1.5 npm
@nodelib/fs.stat 2.0.5 npm
@nodelib/fs.walk 1.2.8 npm
@npmcli/agent 2.2.2 npm
@npmcli/arborist 7.5.2 npm
@npmcli/config 8.3.2 npm
@npmcli/fs 3.1.1 npm
@npmcli/git 5.0.7 npm
@npmcli/installed-package-contents 2.1.0 npm
@npmcli/map-workspaces 3.0.6 npm
@npmcli/metavuln-calculator 7.1.1 npm
@npmcli/name-from-folder 2.0.0 npm
@npmcli/node-gyp 3.0.0 npm
@npmcli/package-json 5.1.0 npm
@npmcli/promise-spawn 7.0.2 npm
@npmcli/query 3.1.0 npm
@npmcli/redact 2.0.0 npm
@npmcli/run-script 8.1.0 npm
@pkgjs/parseargs 0.11.0 npm
@pmmmwh/react-refresh-webpack-plugin 0.5.4 npm
@popperjs/core 2.10.2 npm
@reduxjs/toolkit 1.6.2 npm
@reduxjs/toolkit-query 1.0.0 npm
@reduxjs/toolkit-query-react 1.0.0 npm
@rollup/plugin-babel 5.3.0 npm
@rollup/plugin-node-resolve 11.2.1 npm
@rollup/plugin-replace 2.4.2 npm
@rollup/pluginutils 3.1.0 npm
@rsuite/icon-font 4.0.0 npm
@rsuite/icons 1.0.2 npm
@rushstack/eslint-patch 1.1.0 npm
@sigstore/bundle 2.3.1 npm
@sigstore/core 1.1.0 npm
@sigstore/protobuf-specs 0.3.2 npm
@sigstore/sign 2.3.1 npm
@sigstore/tuf 2.3.3 npm
@sigstore/verify 1.2.0 npm
@sindresorhus/is 4.2.0 npm
@sinonjs/commons 1.8.3 npm
@sinonjs/fake-timers 8.1.0 npm
@sqltools/formatter 1.2.3 npm
@surma/rollup-plugin-off-main-thread 2.2.3 npm
@svgr/babel-plugin-add-jsx-attribute 5.4.0 npm
@svgr/babel-plugin-remove-jsx-attribute 5.4.0 npm
@svgr/babel-plugin-remove-jsx-empty-expression 5.0.1 npm
@svgr/babel-plugin-replace-jsx-attribute-value 5.0.1 npm
@svgr/babel-plugin-svg-dynamic-title 5.4.0 npm
@svgr/babel-plugin-svg-em-dimensions 5.4.0 npm
@svgr/babel-plugin-transform-react-native-svg 5.4.0 npm
@svgr/babel-plugin-transform-svg-component 5.5.0 npm
@svgr/babel-preset 5.5.0 npm
@svgr/core 5.5.0 npm
@svgr/hast-util-to-babel-ast 5.5.0 npm
@svgr/plugin-jsx 5.5.0 npm
@svgr/plugin-svgo 5.5.0 npm
@svgr/webpack 5.5.0 npm
@szmarczak/http-timer 4.0.6 npm
@testing-library/dom 10.4.0 npm
@testing-library/dom 7.31.2 npm
@testing-library/jest-dom 5.15.0 npm
@testing-library/react 11.2.7 npm
@testing-library/user-event 12.8.3 npm
@tootallnate/once 1.1.2 npm
@trysound/sax 0.2.0 npm
@tsconfig/node10 1.0.8 npm (+1 duplicate)
@tsconfig/node12 1.0.9 npm (+1 duplicate)
@tsconfig/node14 1.0.1 npm (+1 duplicate)
@tsconfig/node16 1.0.2 npm (+1 duplicate)
@tsoa/cli 3.14.0 npm
@tsoa/runtime 3.13.0 npm
@tufjs/canonical-json 2.0.0 npm
@tufjs/models 2.0.1 npm
@types/aria-query 4.2.2 npm
@types/aria-query 5.0.4 npm
@types/babel__core 7.1.18 npm
@types/babel__generator 7.6.4 npm
@types/babel__template 7.4.1 npm
@types/babel__traverse 7.14.2 npm
@types/bcrypt 5.0.0 npm
@types/body-parser 1.19.2 npm
@types/bonjour 3.5.10 npm
@types/cacheable-request 6.0.2 npm
@types/connect 3.4.35 npm
@types/connect-history-api-fallback 1.3.5 npm
@types/eslint 7.29.0 npm
@types/eslint-scope 3.7.3 npm
@types/estree 0.0.39 npm
@types/estree 0.0.51 npm
@types/express 4.17.13 npm
@types/express-serve-static-core 4.17.28 npm
@types/graceful-fs 4.1.5 npm
@types/hoist-non-react-statics 3.3.1 npm
@types/html-minifier-terser 6.1.0 npm
@types/http-cache-semantics 4.0.1 npm
@types/http-proxy 1.17.8 npm
@types/istanbul-lib-coverage 2.0.3 npm
@types/istanbul-lib-report 3.0.0 npm
@types/istanbul-reports 3.0.1 npm
@types/jest 27.0.2 npm
@types/json-schema 7.0.9 npm
@types/json5 0.0.29 npm
@types/jsonwebtoken 8.5.5 npm
@types/keyv 3.1.3 npm
@types/luxon 2.0.9 npm
@types/mime 1.3.2 npm
@types/node 14.14.16 npm
@types/node 16.11.11 npm
@types/node 16.11.7 npm
@types/parse-json 4.0.0 npm
@types/prettier 2.4.4 npm
@types/prop-types 15.7.4 npm
@types/q 1.5.5 npm
@types/qs 6.9.7 npm
@types/range-parser 1.2.4 npm
@types/react 17.0.34 npm
@types/react-is 17.0.3 npm
@types/react-redux 7.1.20 npm
@types/react-transition-group 4.4.4 npm
@types/resolve 1.17.1 npm
@types/responselike 1.0.0 npm
@types/retry 0.12.1 npm
@types/scheduler 0.16.2 npm
@types/serve-index 1.9.1 npm
@types/serve-static 1.13.10 npm
@types/sockjs 0.3.33 npm
@types/stack-utils 2.0.1 npm
@types/testing-library__jest-dom 5.14.1 npm
@types/trusted-types 2.0.2 npm
@types/validator 13.6.6 npm
@types/ws 8.2.3 npm
@types/yargs 15.0.14 npm
@types/yargs 16.0.4 npm (+29 duplicates)
@types/yargs-parser 20.2.1 npm
@types/zen-observable 0.8.3 npm
@typescript-eslint/eslint-plugin 5.12.1 npm
@typescript-eslint/experimental-utils 5.12.1 npm
@typescript-eslint/parser 5.12.1 npm
@typescript-eslint/scope-manager 5.12.1 npm (+2 duplicates)
@typescript-eslint/type-utils 5.12.1 npm
@typescript-eslint/types 5.12.1 npm
@typescript-eslint/typescript-estree 5.12.1 npm (+1 duplicate)
@typescript-eslint/utils 5.12.1 npm
@typescript-eslint/visitor-keys 5.12.1 npm
@webassemblyjs/ast 1.11.1 npm
@webassemblyjs/floating-point-hex-parser 1.11.1 npm
@webassemblyjs/helper-api-error 1.11.1 npm
@webassemblyjs/helper-buffer 1.11.1 npm
@webassemblyjs/helper-numbers 1.11.1 npm
@webassemblyjs/helper-wasm-bytecode 1.11.1 npm
@webassemblyjs/helper-wasm-section 1.11.1 npm
@webassemblyjs/ieee754 1.11.1 npm
@webassemblyjs/leb128 1.11.1 npm
@webassemblyjs/utf8 1.11.1 npm
@webassemblyjs/wasm-edit 1.11.1 npm
@webassemblyjs/wasm-gen 1.11.1 npm
@webassemblyjs/wasm-opt 1.11.1 npm
@webassemblyjs/wasm-parser 1.11.1 npm
@webassemblyjs/wast-printer 1.11.1 npm
@xtuc/ieee754 1.2.0 npm
@xtuc/long 4.2.2 npm
BudgE 0.0.8 npm (+1 duplicate)
abab 2.0.5 npm
abbrev 1.1.1 npm
abbrev 2.0.0 npm
accepts 1.3.7 npm
accepts 1.3.8 npm
acorn 7.4.1 npm
acorn 8.5.0 npm (+1 duplicate)
acorn 8.6.0 npm
acorn 8.7.0 npm (+2 duplicates)
acorn-globals 6.0.0 npm
acorn-import-assertions 1.8.0 npm
acorn-jsx 5.3.2 npm
acorn-node 1.8.2 npm
acorn-walk 7.2.0 npm
acorn-walk 8.2.0 npm (+1 duplicate)
ada-libs 2.7.8-r0 apk
address 1.1.2 npm
adjust-sourcemap-loader 4.0.0 npm
agent-base 6.0.2 npm (+1 duplicate)
agent-base 7.1.1 npm
aggregate-error 3.1.0 npm (+1 duplicate)
ajv 6.12.6 npm (+1 duplicate)
ajv 8.10.0 npm (+5 duplicates)
ajv-formats 2.1.1 npm
ajv-keywords 3.5.2 npm
ajv-keywords 5.1.0 npm (+3 duplicates)
alpine-baselayout 3.6.5-r0 apk
alpine-baselayout-data 3.6.5-r0 apk
alpine-keys 2.4-r1 apk
alpine-release 3.20.3-r0 apk
ansi-escapes 4.3.2 npm
ansi-html-community 0.0.8 npm
ansi-regex 2.1.1 npm (+3 duplicates)
ansi-regex 3.0.0 npm
ansi-regex 4.1.0 npm (+2 duplicates)
ansi-regex 5.0.1 npm (+4 duplicates)
ansi-regex 6.0.1 npm (+3 duplicates)
ansi-styles 2.2.1 npm
ansi-styles 3.2.1 npm (+1 duplicate)
ansi-styles 4.3.0 npm (+45 duplicates)
ansi-styles 5.2.0 npm (+11 duplicates)
ansi-styles 6.2.1 npm
any-promise 1.3.0 npm
anymatch 3.1.2 npm
apache2-utils 2.4.62-r0 apk
apk-tools 2.14.4-r0 apk
app-root-path 3.0.0 npm
apr 1.7.5-r0 apk
apr-util 1.6.3-r1 apk
aproba 1.2.0 npm (+1 duplicate)
aproba 2.0.0 npm (+1 duplicate)
archy 1.0.0 npm
are-we-there-yet 1.1.7 npm (+1 duplicate)
are-we-there-yet 2.0.0 npm
arg 4.1.3 npm (+1 duplicate)
arg 5.0.1 npm
argon2-libs 20190702-r5 apk
argparse 1.0.10 npm (+1 duplicate)
argparse 2.0.1 npm (+2 duplicates)
aria-query 4.2.2 npm
aria-query 5.3.0 npm
array-flatten 1.1.1 npm (+1 duplicate)
array-flatten 2.1.2 npm
array-includes 3.1.4 npm
array-union 2.1.0 npm
array.prototype.flat 1.2.5 npm
array.prototype.flatmap 1.2.5 npm
array.prototype.map 1.0.4 npm
asap 2.0.6 npm
asn1 0.2.4 npm
assert-plus 1.0.0 npm
ast-types-flow 0.0.7 npm
async 0.9.2 npm (+1 duplicate)
async 1.0.0 npm
async 2.6.3 npm
async 3.2.0 npm
asynckit 0.4.0 npm (+1 duplicate)
at-least-node 1.0.0 npm
atob 2.1.2 npm
autoprefixer 10.4.2 npm
aws-sign2 0.7.0 npm
aws4 1.11.0 npm
axe-core 4.4.1 npm
axios 0.24.0 npm
axobject-query 2.2.0 npm
babel-jest 27.5.1 npm
babel-loader 8.2.3 npm
babel-plugin-dynamic-import-node 2.3.3 npm
babel-plugin-istanbul 6.1.1 npm
babel-plugin-jest-hoist 27.5.1 npm
babel-plugin-macros 2.8.0 npm
babel-plugin-macros 3.1.0 npm
babel-plugin-named-asset-import 0.3.8 npm
babel-plugin-polyfill-corejs2 0.3.1 npm
babel-plugin-polyfill-corejs3 0.5.2 npm
babel-plugin-polyfill-regenerator 0.3.1 npm
babel-plugin-transform-react-remove-prop-types 0.4.24 npm
babel-preset-current-node-syntax 1.0.1 npm
babel-preset-jest 27.5.1 npm
babel-preset-react-app 10.0.1 npm
balanced-match 1.0.0 npm
balanced-match 1.0.2 npm (+1 duplicate)
base64-js 1.5.1 npm
bash 5.2.26-r0 apk
basic-auth 2.0.1 npm
batch 0.6.1 npm
baz UNKNOWN npm (+1 duplicate)
bcrypt 5.0.1 npm
bcrypt-pbkdf 1.0.2 npm
bfj 7.0.2 npm
big.js 5.2.2 npm
bignumber.js 9.0.0 npm
bin 1.0.0 npm
bin-links 4.0.4 npm
binary-extensions 2.2.0 npm
binary-extensions 2.3.0 npm
bl 2.2.1 npm
block-stream 0.0.9 npm
bluebird 3.7.2 npm
body-parser 1.19.0 npm
body-parser 1.19.2 npm
bonjour 3.5.0 npm
boolbase 1.0.0 npm
brace-expansion 1.1.11 npm (+1 duplicate)
brace-expansion 2.0.1 npm
braces 3.0.2 npm
brotli-libs 1.1.0-r2 apk
browser-process-hrtime 1.0.0 npm
browser_field UNKNOWN npm (+1 duplicate)
browserslist 4.19.3 npm
bser 2.1.1 npm
bson 1.1.6 npm
bson UNKNOWN npm
buffer 6.0.3 npm
buffer-equal-constant-time 1.0.1 npm
buffer-from 1.1.2 npm
buffer-indexof 1.1.1 npm
buffer-writer 2.0.0 npm
builtin-modules 3.2.0 npm
busybox 1.36.1-r29 apk
busybox-binsh 1.36.1-r29 apk
bytes 3.0.0 npm
bytes 3.1.0 npm
bytes 3.1.2 npm (+1 duplicate)
c-ares 1.33.1-r0 apk
ca-certificates 20240705-r0 apk
ca-certificates-bundle 20240705-r0 apk
cacache 18.0.3 npm
cacheable-lookup 5.0.4 npm
cacheable-request 7.0.2 npm
call-bind 1.0.2 npm (+1 duplicate)
callsites 3.1.0 npm
camel-case 4.1.2 npm
camelcase 5.3.1 npm (+1 duplicate)
camelcase 6.3.0 npm
camelcase-css 2.0.1 npm
caniuse-api 3.0.0 npm
caniuse-lite 1.0.30001312 npm
case-sensitive-paths-webpack-plugin 2.4.0 npm
caseless 0.12.0 npm
catatonit 0.2.0-r0 apk
chalk 1.1.3 npm
chalk 2.4.2 npm
chalk 3.0.0 npm
chalk 4.1.2 npm (+41 duplicates)
chalk 5.3.0 npm
char-regex 1.0.2 npm
char-regex 2.0.1 npm
charcodes 0.2.0 npm
check-types 11.1.2 npm
chokidar 3.5.3 npm
chownr 1.1.4 npm
chownr 2.0.0 npm (+1 duplicate)
chrome-trace-event 1.0.3 npm
ci-info 3.3.0 npm
ci-info 4.0.0 npm
cidr-regex 4.0.5 npm
cjs-module-lexer 1.2.2 npm
class-validator 0.13.1 npm
classnames 2.3.1 npm
clean-css 5.2.4 npm
clean-stack 2.2.0 npm (+1 duplicate)
cli-columns 4.0.0 npm
cli-highlight 2.1.11 npm
cliui 5.0.0 npm
cliui 7.0.4 npm (+2 duplicates)
clone-response 1.0.2 npm
clsx 1.1.1 npm
cmd-shim 6.0.3 npm
co 4.6.0 npm
coa 2.0.2 npm
code-point-at 1.1.0 npm
collect-v8-coverage 1.0.1 npm
color 3.0.0 npm
color-convert 1.9.3 npm (+1 duplicate)
color-convert 2.0.1 npm (+45 duplicates)
color-name 1.1.3 npm (+1 duplicate)
color-name 1.1.4 npm (+45 duplicates)
color-string 1.6.0 npm
color-support 1.1.3 npm
colord 2.9.2 npm
colorette 2.0.16 npm
colors 1.0.3 npm
colors 1.4.0 npm (+1 duplicate)
colorspace 1.1.2 npm
combined-stream 1.0.8 npm (+1 duplicate)
commander 2.20.3 npm
commander 7.2.0 npm
commander 8.3.0 npm
common-ancestor-path 1.0.1 npm
common-path-prefix 3.0.0 npm
common-tags 1.8.2 npm
commondir 1.0.1 npm
composer 2.8.3 binary
compressible 2.0.18 npm
compression 1.7.4 npm
concat-map 0.0.1 npm (+1 duplicate)
confusing-browser-globals 1.0.11 npm
connect-history-api-fallback 1.6.0 npm
console-control-strings 1.1.0 npm
content-disposition 0.5.3 npm
content-disposition 0.5.4 npm
content-type 1.0.4 npm (+1 duplicate)
convert-source-map 1.8.0 npm
cookie 0.4.0 npm
cookie 0.4.2 npm
cookie-parser 1.4.5 npm
cookie-signature 1.0.6 npm (+1 duplicate)
core-js 3.21.1 npm
core-js-compat 3.21.1 npm
core-js-pure 3.19.1 npm
core-util-is 1.0.2 npm
core-util-is 1.0.3 npm
coreutils 9.5-r1 apk
coreutils-env 9.5-r1 apk
coreutils-fmt 9.5-r1 apk
coreutils-sha512sum 9.5-r1 apk
cors 2.8.5 npm
cosmiconfig 6.0.0 npm (+1 duplicate)
cosmiconfig 7.0.1 npm
create-require 1.1.1 npm (+1 duplicate)
cross-spawn 7.0.3 npm (+1 duplicate)
crypto-random-string 2.0.0 npm
css 3.0.0 npm
css-blank-pseudo 3.0.3 npm
css-declaration-sorter 6.1.4 npm
css-has-pseudo 3.0.4 npm
css-loader 6.6.0 npm
css-minimizer-webpack-plugin 3.4.1 npm
css-prefers-color-scheme 6.0.3 npm
css-select 2.1.0 npm
css-select 4.2.1 npm
css-select-base-adapter 0.1.1 npm
css-tree 1.0.0-alpha.37 npm
css-tree 1.1.3 npm (+1 duplicate)
css-vendor 2.0.8 npm
css-what 3.4.2 npm
css-what 5.1.0 npm
css.escape 1.5.1 npm
cssdb 6.4.0 npm
cssesc 3.0.0 npm (+1 duplicate)
cssnano 5.0.17 npm
cssnano-preset-default 5.1.12 npm
cssnano-utils 3.0.2 npm
csso 4.2.0 npm
cssom 0.3.8 npm
cssom 0.4.4 npm
cssstyle 2.3.0 npm
csstype 3.0.10 npm
csv-parse 4.16.3 npm
csv-parse 5.0.4 npm
curl 8.9.1-r2 apk
cycle 1.0.3 npm
damerau-levenshtein 1.0.8 npm
dashdash 1.14.1 npm
data-urls 2.0.0 npm
date-fns 2.25.0 npm
dayjs 1.10.7 npm
debug 2.6.9 npm (+12 duplicates)
debug 3.2.7 npm (+3 duplicates)
debug 4.3.2 npm (+1 duplicate)
debug 4.3.4 npm
decamelize 1.2.0 npm
decimal.js 10.3.1 npm
decode-uri-component 0.2.0 npm
decompress-response 6.0.0 npm
dedent 0.7.0 npm
deep-equal 1.1.1 npm
deep-extend 0.6.0 npm
deep-is 0.1.4 npm
deepmerge 4.2.2 npm (+1 duplicate)
default-gateway 6.0.3 npm
defer-to-connect 2.0.1 npm
define-lazy-prop 2.0.0 npm
define-properties 1.1.3 npm (+1 duplicate)
defined 1.0.0 npm
del 6.0.0 npm
delayed-stream 1.0.0 npm (+1 duplicate)
delegates 1.0.0 npm
denque 1.5.1 npm
depd 1.1.2 npm (+1 duplicate)
depd 2.0.0 npm
dequal 2.0.3 npm
destroy 1.0.4 npm (+1 duplicate)
detect-libc 1.0.3 npm
detect-newline 3.1.0 npm
detect-node 2.1.0 npm
detect-port-alt 1.1.6 npm
detective 5.2.0 npm
didyoumean 1.2.2 npm
diff 4.0.2 npm (+1 duplicate)
diff 5.2.0 npm
diff-sequences 27.5.1 npm
dinero.js 2.0.0-alpha.8 npm (+1 duplicate)
dir-glob 3.0.1 npm
dist 1.0.0 npm
dlv 1.1.3 npm
dns-equal 1.0.0 npm
dns-packet 1.3.4 npm
dns-txt 2.0.2 npm
doctrine 2.1.0 npm (+1 duplicate)
doctrine 3.0.0 npm
dom-accessibility-api 0.5.10 npm
dom-converter 0.2.0 npm
dom-helpers 5.2.1 npm
dom-helpers/activeElement UNKNOWN npm
dom-helpers/addClass UNKNOWN npm
dom-helpers/addEventListener UNKNOWN npm
dom-helpers/animate UNKNOWN npm
dom-helpers/animationFrame UNKNOWN npm
dom-helpers/attribute UNKNOWN npm
dom-helpers/camelize UNKNOWN npm
dom-helpers/camelizeStyle UNKNOWN npm
dom-helpers/canUseDOM UNKNOWN npm
dom-helpers/childElements UNKNOWN npm
dom-helpers/childNodes UNKNOWN npm
dom-helpers/clear UNKNOWN npm
dom-helpers/closest UNKNOWN npm
dom-helpers/collectElements UNKNOWN npm
dom-helpers/collectSiblings UNKNOWN npm
dom-helpers/contains UNKNOWN npm
dom-helpers/css UNKNOWN npm
dom-helpers/filterEventHandler UNKNOWN npm
dom-helpers/getComputedStyle UNKNOWN npm
dom-helpers/getScrollAccessor UNKNOWN npm
dom-helpers/hasClass UNKNOWN npm
dom-helpers/height UNKNOWN npm
dom-helpers/hyphenate UNKNOWN npm
dom-helpers/hyphenateStyle UNKNOWN npm
dom-helpers/insertAfter UNKNOWN npm
dom-helpers/isDocument UNKNOWN npm
dom-helpers/isInput UNKNOWN npm
dom-helpers/isTransform UNKNOWN npm
dom-helpers/isVisible UNKNOWN npm
dom-helpers/isWindow UNKNOWN npm
dom-helpers/listen UNKNOWN npm
dom-helpers/matches UNKNOWN npm
dom-helpers/nextUntil UNKNOWN npm
dom-helpers/offset UNKNOWN npm
dom-helpers/offsetParent UNKNOWN npm
dom-helpers/ownerDocument UNKNOWN npm
dom-helpers/ownerWindow UNKNOWN npm
dom-helpers/parents UNKNOWN npm
dom-helpers/position UNKNOWN npm
dom-helpers/prepend UNKNOWN npm
dom-helpers/querySelectorAll UNKNOWN npm
dom-helpers/remove UNKNOWN npm
dom-helpers/removeClass UNKNOWN npm
dom-helpers/removeEventListener UNKNOWN npm
dom-helpers/scrollLeft UNKNOWN npm
dom-helpers/scrollParent UNKNOWN npm
dom-helpers/scrollTo UNKNOWN npm
dom-helpers/scrollTop UNKNOWN npm
dom-helpers/scrollbarSize UNKNOWN npm
dom-helpers/siblings UNKNOWN npm
dom-helpers/text UNKNOWN npm
dom-helpers/toggleClass UNKNOWN npm
dom-helpers/transitionEnd UNKNOWN npm
dom-helpers/triggerEvent UNKNOWN npm
dom-helpers/width UNKNOWN npm
dom-lib 3.0.1 npm
dom-lib/DOMMouseMoveTracker UNKNOWN npm
dom-lib/WheelHandler UNKNOWN npm
dom-lib/addClass UNKNOWN npm
dom-lib/addStyle UNKNOWN npm
dom-lib/canUseDOM UNKNOWN npm
dom-lib/cancelAnimationFramePolyfill UNKNOWN npm
dom-lib/contains UNKNOWN npm
dom-lib/getAnimationEnd UNKNOWN npm
dom-lib/getContainer UNKNOWN npm
dom-lib/getHeight UNKNOWN npm
dom-lib/getOffset UNKNOWN npm
dom-lib/getOffsetParent UNKNOWN npm
dom-lib/getPosition UNKNOWN npm
dom-lib/getScrollbarSize UNKNOWN npm
dom-lib/getStyle UNKNOWN npm
dom-lib/getTransitionEnd UNKNOWN npm
dom-lib/getTransitionProperties UNKNOWN npm
dom-lib/getWidth UNKNOWN npm
dom-lib/getWindow UNKNOWN npm
dom-lib/hasClass UNKNOWN npm
dom-lib/index UNKNOWN npm
dom-lib/isFocusable UNKNOWN npm
dom-lib/isOverflowing UNKNOWN npm
dom-lib/nodeName UNKNOWN npm
dom-lib/off UNKNOWN npm
dom-lib/on UNKNOWN npm
dom-lib/ownerDocument UNKNOWN npm
dom-lib/ownerWindow UNKNOWN npm
dom-lib/removeClass UNKNOWN npm
dom-lib/removeStyle UNKNOWN npm
dom-lib/requestAnimationFramePolyfill UNKNOWN npm
dom-lib/scrollLeft UNKNOWN npm
dom-lib/scrollTop UNKNOWN npm
dom-lib/toggleClass UNKNOWN npm
dom-lib/translateDOMPositionXY UNKNOWN npm
dom-serializer 0.2.2 npm
dom-serializer 1.3.2 npm
domelementtype 1.3.1 npm
domelementtype 2.2.0 npm
domexception 2.0.1 npm
domhandler 4.3.0 npm
domutils 1.7.0 npm
domutils 2.8.0 npm
dot-case 3.0.4 npm
dotenv 10.0.0 npm
dotenv 8.6.0 npm
dotenv-expand 5.1.0 npm
duplexer 0.1.2 npm
eastasianwidth 0.2.0 npm
ecc-jsbn 0.1.2 npm
ecdsa-sig-formatter 1.0.11 npm
ee-first 1.1.1 npm (+1 duplicate)
ejs 3.1.6 npm
electron-to-chromium 1.4.71 npm
emittery 0.8.1 npm
emoji-regex 7.0.3 npm
emoji-regex 8.0.0 npm (+2 duplicates)
emoji-regex 9.2.2 npm (+2 duplicates)
emojis-list 3.0.0 npm
enabled 2.0.0 npm
encodeurl 1.0.2 npm (+1 duplicate)
encoding 0.1.13 npm
end-of-stream 1.4.4 npm
enhanced-resolve 5.9.0 npm
entities 2.2.0 npm
env-paths 2.2.1 npm
err-code 2.0.3 npm
error-ex 1.3.2 npm
error-stack-parser 2.0.7 npm
es-abstract 1.19.1 npm (+1 duplicate)
es-aggregate-error 1.0.7 npm
es-array-method-boxes-properly 1.0.0 npm
es-get-iterator 1.1.2 npm
es-module-lexer 0.9.3 npm
es-to-primitive 1.2.1 npm (+1 duplicate)
escalade 3.1.1 npm (+1 duplicate)
escape-html 1.0.3 npm (+1 duplicate)
escape-string-regexp 1.0.5 npm (+1 duplicate)
escape-string-regexp 2.0.0 npm
escape-string-regexp 4.0.0 npm (+2 duplicates)
escodegen 2.0.0 npm
eslint 8.9.0 npm
eslint-config-react-app 7.0.0 npm
eslint-import-resolver-node 0.3.6 npm
eslint-module-utils 2.7.3 npm
eslint-plugin-flowtype 8.0.3 npm
eslint-plugin-import 2.25.4 npm
eslint-plugin-jest 25.7.0 npm
eslint-plugin-jsx-a11y 6.5.1 npm
eslint-plugin-react 7.28.0 npm
eslint-plugin-react-hooks 4.3.0 npm
eslint-plugin-testing-library 5.0.5 npm
eslint-scope 5.1.1 npm
eslint-scope 7.1.1 npm
eslint-utils 3.0.0 npm
eslint-visitor-keys 2.1.0 npm
eslint-visitor-keys 3.3.0 npm (+2 duplicates)
eslint-webpack-plugin 3.1.1 npm
espree 9.3.1 npm
esprima 4.0.1 npm
esquery 1.4.0 npm
esrecurse 4.3.0 npm
estraverse 4.3.0 npm
estraverse 5.3.0 npm
estree-walker 1.0.1 npm
esutils 2.0.3 npm
etag 1.8.1 npm (+1 duplicate)
eventemitter3 4.0.7 npm
events 3.3.0 npm
execa 5.1.1 npm
exit 0.1.2 npm
expect 27.5.1 npm
exponential-backoff 3.1.1 npm
express 4.17.1 npm
express 4.17.3 npm
extend 3.0.2 npm
extsprintf 1.3.0 npm
eyes 0.1.8 npm
fast-deep-equal 3.1.3 npm (+1 duplicate)
fast-glob 3.2.11 npm
fast-json-stable-stringify 2.1.0 npm (+1 duplicate)
fast-levenshtein 2.0.6 npm
fast-safe-stringify 2.0.7 npm
fastest-levenshtein 1.0.16 npm
fastq 1.13.0 npm
faye-websocket 0.11.4 npm
fb-watchman 2.0.1 npm
fecha 4.2.0 npm
figlet 1.5.2 npm
file-entry-cache 6.0.1 npm
file-loader 6.2.0 npm
filefy 0.1.11 npm
filelist 1.0.2 npm
filesize 8.0.7 npm
fill-range 7.0.1 npm
finalhandler 1.1.2 npm (+1 duplicate)
find-cache-dir 3.3.2 npm
find-root 1.1.0 npm
find-up 2.1.0 npm
find-up 3.0.0 npm (+1 duplicate)
find-up 4.1.0 npm (+1 duplicate)
find-up 5.0.0 npm
findutils 4.9.0-r5 apk
flat-cache 3.0.4 npm
flatted 3.2.4 npm
fn.name 1.1.0 npm
follow-redirects 1.14.7 npm
foreground-child 3.1.1 npm
forever-agent 0.6.1 npm
fork-ts-checker-webpack-plugin 6.5.0 npm
form-data 2.3.3 npm
form-data 3.0.1 npm
forwarded 0.1.2 npm
forwarded 0.2.0 npm
fraction.js 4.1.3 npm
fresh 0.5.2 npm (+1 duplicate)
fs-extra 10.0.0 npm
fs-extra 8.1.0 npm
fs-extra 9.1.0 npm (+1 duplicate)
fs-minipass 1.2.7 npm
fs-minipass 2.1.0 npm (+1 duplicate)
fs-minipass 3.0.3 npm
fs-monkey 1.0.3 npm
fs.realpath 1.0.0 npm (+1 duplicate)
fstream 1.0.12 npm
function-bind 1.1.1 npm (+1 duplicate)
function-bind 1.1.2 npm
functional-red-black-tree 1.0.1 npm
functions-have-names 1.2.2 npm
gauge 2.7.4 npm (+1 duplicate)
gauge 3.0.1 npm
gensync 1.0.0-beta.2 npm
get-caller-file 2.0.5 npm (+1 duplicate)
get-intrinsic 1.1.1 npm (+1 duplicate)
get-own-enumerable-property-symbols 3.0.2 npm
get-package-type 0.1.0 npm
get-stream 5.2.0 npm
get-stream 6.0.1 npm
get-symbol-description 1.0.0 npm (+1 duplicate)
getpass 0.1.7 npm
git 2.45.2-r0 apk
git-init-template 2.45.2-r0 apk
glob 10.3.15 npm
glob 7.1.6 npm
glob 7.2.0 npm
glob-parent 5.1.2 npm
glob-parent 6.0.2 npm (+1 duplicate)
glob-to-regexp 0.4.1 npm
global-modules 2.0.0 npm
global-prefix 3.0.0 npm
globals 11.12.0 npm
globals 13.12.0 npm
globals 13.12.1 npm
globalthis 1.0.2 npm
globby 11.0.4 npm
got 11.8.3 npm
graceful-fs 4.2.11 npm
graceful-fs 4.2.8 npm
graceful-fs 4.2.9 npm
gzip-size 6.0.0 npm
handle-thing 2.0.1 npm
handlebars 4.7.7 npm
har-schema 2.0.0 npm
har-validator 5.1.5 npm
harmony-reflect 1.6.2 npm
has 1.0.3 npm (+1 duplicate)
has-ansi 2.0.0 npm
has-bigints 1.0.1 npm (+1 duplicate)
has-flag 3.0.0 npm
has-flag 4.0.0 npm (+46 duplicates)
has-symbols 1.0.2 npm (+1 duplicate)
has-tostringtag 1.0.0 npm (+1 duplicate)
has-unicode 2.0.1 npm
hasown 2.0.2 npm
he 1.2.0 npm
helmet 4.6.0 npm
highlight.js 10.7.3 npm
history 5.1.0 npm
hoist-non-react-statics 3.3.2 npm
hoopy 0.1.4 npm
hosted-git-info 7.0.2 npm
hpack.js 2.1.6 npm
html-encoding-sniffer 2.0.1 npm
html-entities 2.3.2 npm
html-escaper 2.0.2 npm
html-minifier-terser 6.1.0 npm
html-webpack-plugin 5.5.0 npm
htmlparser2 6.1.0 npm
http-cache-semantics 4.1.0 npm
http-cache-semantics 4.1.1 npm
http-deceiver 1.2.7 npm
http-errors 1.6.3 npm
http-errors 1.7.2 npm
http-errors 1.8.1 npm
http-parser-js 0.5.5 npm
http-proxy 1.18.1 npm
http-proxy-agent 4.0.1 npm
http-proxy-agent 7.0.2 npm
http-proxy-middleware 2.0.3 npm
http-signature 1.2.0 npm
http2-wrapper 1.0.3 npm
https-proxy-agent 5.0.0 npm (+1 duplicate)
https-proxy-agent 7.0.4 npm
human-signals 2.1.0 npm
hyphenate-style-name 1.0.4 npm
iconv-lite 0.4.24 npm (+1 duplicate)
iconv-lite 0.6.3 npm (+1 duplicate)
icss-utils 5.1.0 npm
icu-data-en 74.2-r0 apk
icu-libs 74.2-r0 apk
idb 6.1.5 npm
identity-obj-proxy 3.0.0 npm
ieee754 1.2.1 npm
ignore 4.0.6 npm
ignore 5.1.9 npm
ignore 5.2.0 npm
ignore-walk 3.0.4 npm
ignore-walk 6.0.5 npm
immer 9.0.12 npm
import-fresh 3.3.0 npm
import-local 3.1.0 npm
imurmurhash 0.1.4 npm (+1 duplicate)
indent-string 4.0.0 npm (+1 duplicate)
inflight 1.0.6 npm (+1 duplicate)
inherits 2.0.3 npm (+1 duplicate)
inherits 2.0.4 npm (+1 duplicate)
ini 1.3.8 npm (+1 duplicate)
ini 4.1.2 npm
init-package-json 6.0.3 npm