-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package_versions.txt
executable file
·1640 lines (1640 loc) · 159 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
1to2 1.0.0 npm
@algolia/cache-browser-local-storage 4.5.1 npm
@algolia/cache-common 4.5.1 npm
@algolia/cache-in-memory 4.5.1 npm
@algolia/client-account 4.5.1 npm
@algolia/client-analytics 4.5.1 npm
@algolia/client-common 4.5.1 npm
@algolia/client-recommendation 4.5.1 npm
@algolia/client-search 4.5.1 npm
@algolia/logger-common 4.5.1 npm
@algolia/logger-console 4.5.1 npm
@algolia/requester-browser-xhr 4.5.1 npm
@algolia/requester-common 4.5.1 npm
@algolia/requester-node-http 4.5.1 npm
@algolia/transporter 4.5.1 npm
@ampproject/remapping 2.3.0 npm
@apollo/client 3.11.8 npm
@apollo/client/cache UNKNOWN npm
@apollo/client/core UNKNOWN npm
@apollo/client/dev UNKNOWN npm
@apollo/client/errors UNKNOWN npm
@apollo/client/link/batch UNKNOWN npm
@apollo/client/link/batch-http UNKNOWN npm
@apollo/client/link/context UNKNOWN npm
@apollo/client/link/core UNKNOWN npm
@apollo/client/link/error UNKNOWN npm
@apollo/client/link/http UNKNOWN npm
@apollo/client/link/persisted-queries UNKNOWN npm
@apollo/client/link/remove-typename UNKNOWN npm
@apollo/client/link/retry UNKNOWN npm
@apollo/client/link/schema UNKNOWN npm
@apollo/client/link/subscriptions UNKNOWN npm
@apollo/client/link/utils UNKNOWN npm
@apollo/client/link/ws UNKNOWN npm
@apollo/client/react UNKNOWN npm
@apollo/client/react/components UNKNOWN npm
@apollo/client/react/context UNKNOWN npm
@apollo/client/react/hoc UNKNOWN npm
@apollo/client/react/hooks UNKNOWN npm
@apollo/client/react/internal UNKNOWN npm
@apollo/client/react/parser UNKNOWN npm
@apollo/client/react/ssr UNKNOWN npm
@apollo/client/testing UNKNOWN npm
@apollo/client/testing/core UNKNOWN npm
@apollo/client/testing/experimental UNKNOWN npm
@apollo/client/utilities UNKNOWN npm
@apollo/client/utilities/globals UNKNOWN npm
@apollo/client/utilities/subscriptions/relay UNKNOWN npm
@apollo/client/utilities/subscriptions/urql UNKNOWN npm
@apollo/protobufjs 1.2.2 npm
@apollographql/apollo-tools 0.5.4 npm
@apollographql/graphql-playground-html 1.6.27 npm
@apollographql/graphql-upload-8-fork 8.1.4 npm
@ardatan/aggregate-error 0.0.6 npm
@ardatan/relay-compiler 12.0.0 npm
@asciidoctor/cli 3.5.0 npm
@asciidoctor/core 2.2.6 npm
@azure/abort-controller 1.1.0 npm (+1 duplicate)
@azure/abort-controller 2.1.2 npm
@azure/core-auth 1.8.0 npm
@azure/core-http 2.3.2 npm
@azure/core-lro 2.7.2 npm
@azure/core-paging 1.6.2 npm
@azure/core-tracing 1.0.0-preview.13 npm
@azure/core-util 1.10.0 npm
@azure/logger 1.1.4 npm
@azure/ms-rest-azure-env 2.0.0 npm
@azure/ms-rest-js 2.7.0 npm
@azure/ms-rest-nodeauth 3.1.1 npm
@azure/storage-blob 12.12.0 npm
@babel/code-frame 7.25.7 npm
@babel/compat-data 7.25.8 npm
@babel/core 7.25.8 npm
@babel/generator 7.25.7 npm
@babel/helper-annotate-as-pure 7.25.7 npm
@babel/helper-compilation-targets 7.25.7 npm
@babel/helper-create-class-features-plugin 7.25.7 npm
@babel/helper-function-name 7.24.7 npm
@babel/helper-member-expression-to-functions 7.25.7 npm
@babel/helper-module-imports 7.25.7 npm
@babel/helper-module-transforms 7.25.7 npm
@babel/helper-optimise-call-expression 7.25.7 npm
@babel/helper-plugin-utils 7.25.7 npm
@babel/helper-replace-supers 7.25.7 npm
@babel/helper-simple-access 7.25.7 npm
@babel/helper-skip-transparent-expression-wrappers 7.25.7 npm
@babel/helper-split-export-declaration 7.24.7 npm
@babel/helper-string-parser 7.25.7 npm
@babel/helper-validator-identifier 7.25.7 npm
@babel/helper-validator-option 7.25.7 npm
@babel/helpers 7.25.7 npm
@babel/highlight 7.25.7 npm
@babel/parser 7.12.16 npm
@babel/parser 7.25.8 npm (+1 duplicate)
@babel/plugin-proposal-class-properties 7.18.6 npm
@babel/plugin-proposal-object-rest-spread 7.20.7 npm
@babel/plugin-syntax-class-properties 7.12.13 npm
@babel/plugin-syntax-flow 7.25.7 npm
@babel/plugin-syntax-jsx 7.25.7 npm
@babel/plugin-syntax-object-rest-spread 7.8.3 npm
@babel/plugin-transform-arrow-functions 7.25.7 npm
@babel/plugin-transform-block-scoped-functions 7.25.7 npm
@babel/plugin-transform-block-scoping 7.25.7 npm
@babel/plugin-transform-classes 7.25.7 npm
@babel/plugin-transform-computed-properties 7.25.7 npm
@babel/plugin-transform-destructuring 7.25.7 npm
@babel/plugin-transform-flow-strip-types 7.25.7 npm
@babel/plugin-transform-for-of 7.25.7 npm
@babel/plugin-transform-function-name 7.25.7 npm
@babel/plugin-transform-literals 7.25.7 npm
@babel/plugin-transform-member-expression-literals 7.25.7 npm
@babel/plugin-transform-modules-commonjs 7.25.7 npm
@babel/plugin-transform-object-super 7.25.7 npm
@babel/plugin-transform-parameters 7.25.7 npm
@babel/plugin-transform-property-literals 7.25.7 npm
@babel/plugin-transform-react-display-name 7.25.7 npm
@babel/plugin-transform-react-jsx 7.25.7 npm
@babel/plugin-transform-shorthand-properties 7.25.7 npm
@babel/plugin-transform-spread 7.25.7 npm
@babel/plugin-transform-template-literals 7.25.7 npm
@babel/runtime 7.25.7 npm
@babel/template 7.25.7 npm
@babel/traverse 7.12.13 npm
@babel/traverse 7.25.7 npm
@babel/types 7.12.13 npm
@babel/types 7.25.8 npm (+1 duplicate)
@colors/colors 1.5.0 npm
@colors/colors 1.6.0 npm
@dabh/diagnostics 2.0.3 npm
@elastic/elasticsearch 6.8.8 npm
@elastic/elasticsearch 7.17.14 npm
@elastic/elasticsearch 8.15.0 npm
@elastic/transport 8.8.1 npm
@exlinc/keycloak-passport 1.0.2 npm
@gar/promisify 1.1.3 npm
@graphql-tools/batch-delegate 7.0.2 npm
@graphql-tools/batch-delegate/es5 7.0.2 npm
@graphql-tools/batch-execute 7.1.2 npm
@graphql-tools/batch-execute/es5 7.1.2 npm
@graphql-tools/code-file-loader 6.3.1 npm
@graphql-tools/code-file-loader/es5 6.3.1 npm
@graphql-tools/delegate 7.1.5 npm
@graphql-tools/delegate/es5 7.1.5 npm
@graphql-tools/git-loader 6.2.6 npm
@graphql-tools/git-loader/es5 6.2.6 npm
@graphql-tools/github-loader 6.2.5 npm
@graphql-tools/github-loader/es5 6.2.5 npm
@graphql-tools/graphql-file-loader 6.2.7 npm
@graphql-tools/graphql-file-loader/es5 6.2.7 npm
@graphql-tools/graphql-tag-pluck 6.5.1 npm
@graphql-tools/graphql-tag-pluck/es5 6.5.1 npm
@graphql-tools/import 6.7.18 npm
@graphql-tools/json-file-loader 6.2.6 npm
@graphql-tools/json-file-loader/es5 6.2.6 npm
@graphql-tools/links 6.2.5 npm
@graphql-tools/links/es5 6.2.5 npm
@graphql-tools/load 6.2.8 npm
@graphql-tools/load-files 6.6.1 npm
@graphql-tools/load/es5 6.2.8 npm
@graphql-tools/merge 6.2.17 npm
@graphql-tools/merge 8.3.1 npm
@graphql-tools/merge/es5 6.2.17 npm
@graphql-tools/mock 7.0.0 npm
@graphql-tools/mock/es5 7.0.0 npm
@graphql-tools/module-loader 6.2.7 npm
@graphql-tools/module-loader/es5 6.2.7 npm
@graphql-tools/relay-operation-optimizer 6.5.18 npm
@graphql-tools/resolvers-composition 6.5.18 npm
@graphql-tools/schema 7.1.5 npm
@graphql-tools/schema 8.5.1 npm
@graphql-tools/schema/es5 7.1.5 npm
@graphql-tools/stitch 7.5.3 npm
@graphql-tools/stitch/es5 7.5.3 npm
@graphql-tools/url-loader 6.10.1 npm
@graphql-tools/url-loader/es5 6.10.1 npm
@graphql-tools/utils 7.10.0 npm
@graphql-tools/utils 8.0.2 npm
@graphql-tools/utils 8.9.0 npm (+1 duplicate)
@graphql-tools/utils 9.2.1 npm (+2 duplicates)
@graphql-tools/utils/es5 7.10.0 npm
@graphql-tools/utils/es5 8.0.2 npm
@graphql-tools/wrap 7.0.8 npm
@graphql-tools/wrap/es5 7.0.8 npm
@graphql-typed-document-node/core 3.2.0 npm
@heroku/socksv5 0.0.9 npm
@isaacs/cliui 8.0.2 npm
@isaacs/fs-minipass 4.0.1 npm
@isaacs/string-locale-compare 1.1.0 npm
@joplin/turndown-plugin-gfm 1.0.45 npm
@josephg/resolvable 1.0.1 npm
@jridgewell/gen-mapping 0.3.5 npm
@jridgewell/resolve-uri 3.1.2 npm
@jridgewell/set-array 1.2.1 npm
@jridgewell/sourcemap-codec 1.5.0 npm
@jridgewell/trace-mapping 0.3.25 npm
@kwsites/file-exists 1.1.1 npm
@kwsites/promise-deferred 1.1.1 npm
@log4js-node/log4js-api 1.0.2 npm
@mapbox/node-pre-gyp 1.0.11 npm
@microsoft/fetch-event-source 2.0.1 npm
@my-scope/package-a 0.0.0 npm
@my-scope/package-b 0.0.0 npm
@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/agent 3.0.0 npm
@npmcli/arborist 8.0.0 npm
@npmcli/config 9.0.0 npm
@npmcli/fs 1.1.1 npm
@npmcli/fs 3.1.1 npm
@npmcli/fs 4.0.0 npm
@npmcli/git 6.0.1 npm
@npmcli/installed-package-contents 3.0.0 npm
@npmcli/map-workspaces 4.0.1 npm
@npmcli/metavuln-calculator 8.0.1 npm
@npmcli/move-file 1.1.2 npm
@npmcli/name-from-folder 3.0.0 npm
@npmcli/node-gyp 4.0.0 npm
@npmcli/package-json 6.0.1 npm
@npmcli/promise-spawn 8.0.2 npm
@npmcli/query 4.0.0 npm
@npmcli/redact 3.0.0 npm
@npmcli/run-script 9.0.1 npm
@opentelemetry/api 1.9.0 npm
@pkgjs/parseargs 0.11.0 npm
@protobufjs/aspromise 1.1.2 npm
@protobufjs/base64 1.1.2 npm
@protobufjs/codegen 2.0.4 npm
@protobufjs/eventemitter 1.1.0 npm
@protobufjs/fetch 1.1.0 npm
@protobufjs/float 1.0.2 npm
@protobufjs/inquire 1.1.0 npm
@protobufjs/path 1.1.2 npm
@protobufjs/pool 1.1.0 npm
@protobufjs/utf8 1.1.0 npm
@root/acme 3.1.0 npm
@root/asn1 1.0.2 npm
@root/csr 0.8.1 npm
@root/encoding 1.0.1 npm
@root/keypairs 0.10.3 npm
@root/pem 1.0.4 npm
@root/request 1.9.2 npm
@root/x509 0.7.2 npm
@sigstore/bundle 3.0.0 npm
@sigstore/core 2.0.0 npm
@sigstore/protobuf-specs 0.3.2 npm
@sigstore/sign 3.0.0 npm
@sigstore/tuf 3.0.0 npm
@sigstore/verify 2.0.0 npm
@tokenizer/token 0.1.1 npm
@tokenizer/token 0.3.0 npm
@tootallnate/once 1.1.2 npm
@tufjs/canonical-json 2.0.0 npm
@tufjs/models 3.0.1 npm
@types/accepts 1.3.7 npm
@types/body-parser 1.19.0 npm
@types/body-parser 1.19.5 npm (+2 duplicates)
@types/connect 3.4.38 npm
@types/content-disposition 0.5.8 npm
@types/cookiejar 2.1.5 npm
@types/cookies 0.9.0 npm
@types/cors 2.8.10 npm
@types/express 4.17.21 npm
@types/express 5.0.0 npm (+1 duplicate)
@types/express-serve-static-core 4.19.6 npm
@types/express-serve-static-core 5.0.0 npm (+1 duplicate)
@types/fs-capacitor 2.0.0 npm
@types/geojson 7946.0.14 npm
@types/http-assert 1.5.5 npm
@types/http-errors 2.0.4 npm
@types/keygrip 1.0.6 npm
@types/koa 2.15.0 npm
@types/koa-compose 3.2.8 npm
@types/ldapjs 2.2.5 npm
@types/long 4.0.2 npm
@types/mime 1.3.5 npm
@types/node 10.17.60 npm
@types/node 12.20.55 npm
@types/node 22.7.5 npm
@types/node-fetch 2.6.11 npm
@types/pg 7.14.11 npm
@types/qs 6.9.16 npm
@types/range-parser 1.2.7 npm
@types/readable-stream 2.3.15 npm
@types/root__asn1 1.0.5 npm
@types/send 0.17.4 npm
@types/serve-static 1.15.7 npm
@types/superagent 3.8.7 npm
@types/triple-beam 1.3.5 npm
@types/tunnel 0.0.3 npm
@types/websocket 1.0.2 npm
@types/ws 7.4.7 npm
@wry/caches 1.0.1 npm
@wry/context 0.7.4 npm
@wry/equality 0.1.11 npm
@wry/equality 0.5.7 npm
@wry/trie 0.4.3 npm
@wry/trie 0.5.0 npm
@xmldom/xmldom 0.7.13 npm
@xmldom/xmldom 0.8.10 npm
@yarnpkg/lockfile 1.1.0 npm
abab 2.0.6 npm
abbrev 1.1.1 npm
abbrev 2.0.0 npm (+1 duplicate)
abbrev 3.0.0 npm
abort-controller 3.0.0 npm
abstract-logging 2.0.1 npm
accepts 1.3.8 npm
acme 3.0.3 npm
acorn 7.4.1 npm
acorn-globals 6.0.0 npm
acorn-walk 7.2.0 npm
ada-libs 2.7.8-r0 apk
adal-node 0.2.4 npm
agent-base 6.0.2 npm
agent-base 7.1.1 npm
agentkeepalive 4.5.0 npm
aggregate-error 3.1.0 npm (+1 duplicate)
ajv 6.12.6 npm
akismet-api 5.3.0 npm
algoliasearch 4.5.1 npm
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-regex 5.0.1 npm (+1 duplicate)
ansi-regex 6.1.0 npm (+1 duplicate)
ansi-styles 3.2.1 npm
ansi-styles 4.3.0 npm (+1 duplicate)
ansi-styles 6.2.1 npm
any-promise 1.3.0 npm
anymatch 3.1.3 npm
apg-conv-api 1.0.1 npm
apg-lib 3.2.0 npm
apk-tools 2.14.4-r1 apk
apollo-cache-control 0.15.0 npm
apollo-datasource 0.10.0 npm
apollo-fetch 0.7.0 npm
apollo-graphql 0.9.7 npm
apollo-link 1.2.14 npm
apollo-reporting-protobuf 0.8.0 npm
apollo-server 2.25.2 npm
apollo-server-caching 0.7.0 npm
apollo-server-core 2.26.2 npm
apollo-server-env 3.2.0 npm
apollo-server-errors 2.5.0 npm
apollo-server-express 2.25.2 npm
apollo-server-express 2.26.2 npm
apollo-server-plugin-base 0.14.0 npm
apollo-server-types 0.10.0 npm
apollo-server-types 0.9.0 npm
apollo-tracing 0.16.0 npm
apollo-upload-client 14.1.2 npm
apollo-utilities 1.3.4 npm
append-field 1.0.0 npm
aproba 2.0.0 npm (+2 duplicates)
archy 1.0.0 npm
are-we-there-yet 2.0.0 npm
are-we-there-yet 3.0.1 npm
argparse 1.0.10 npm
arr-diff 4.0.0 npm
arr-flatten 1.1.0 npm
arr-union 3.1.0 npm
array-buffer-byte-length 1.0.1 npm
array-each 1.0.1 npm
array-flatten 1.1.1 npm
array-slice 1.1.0 npm
array-union 2.1.0 npm
array-unique 0.3.2 npm
array.prototype.reduce 1.0.7 npm
arraybuffer.prototype.slice 1.0.3 npm
asap 2.0.6 npm
asciidoctor 2.2.6 npm
asciidoctor-opal-runtime 0.3.3 npm
asn1 0.2.6 npm
asn1.js 5.4.1 npm
assert-never 1.3.0 npm
assert-plus 1.0.0 npm
assign-symbols 1.0.0 npm
async 2.6.4 npm
async 3.2.3 npm
async 3.2.6 npm
async-limiter 1.0.1 npm
async-retry 1.3.3 npm
asynckit 0.4.0 npm
at-least-node 1.0.0 npm
atob 2.1.2 npm
auto-load 3.0.4 npm
available-typed-arrays 1.0.7 npm
aws-sdk 2.1309.0 npm
aws-sign2 0.7.0 npm
aws4 1.13.2 npm
axios 0.21.4 npm
axios 0.27.2 npm
azure-search-client 3.1.5 npm
azure-search-types 1.0.10 npm
babel-plugin-syntax-trailing-function-commas 7.0.0-beta.0 npm
babel-preset-fbjs 3.4.0 npm
babel-walk 3.0.0-canary-5 npm
backo2 1.0.2 npm
backoff 2.5.0 npm
balanced-match 1.0.2 npm (+1 duplicate)
base 0.11.2 npm
base64-js 1.5.1 npm
base64url 3.0.1 npm
bash 5.2.26-r0 apk
baz UNKNOWN npm
bcrypt-pbkdf 1.0.2 npm
bcryptjs 2.4.3 npm
bcryptjs-then 1.0.1 npm
benchmarks 1.0.0 npm
bin-links 5.0.0 npm
binary-extensions 2.3.0 npm (+1 duplicate)
bl 2.2.1 npm
bl 3.0.1 npm
bl 4.1.0 npm
bluebird 3.7.2 npm
bn.js 4.12.0 npm
body-parser 1.20.1 npm
body-parser 1.20.3 npm (+1 duplicate)
boolbase 1.0.0 npm
brace-expansion 1.1.11 npm
brace-expansion 2.0.1 npm
braces 2.3.2 npm
braces 3.0.3 npm
brotli-libs 1.1.0-r2 apk
browser-process-hrtime 1.0.0 npm
browser_field UNKNOWN npm
browserslist 4.24.0 npm
bser 2.1.1 npm
bson 1.1.6 npm
bson UNKNOWN npm
buffer 4.9.2 npm
buffer 5.7.1 npm (+1 duplicate)
buffer 6.0.3 npm (+1 duplicate)
buffer-equal-constant-time 1.0.1 npm
buffer-from 1.1.2 npm
buffer-writer 2.0.0 npm
buildcheck 0.0.6 npm
bunyan 1.8.15 npm
busboy 0.2.14 npm
busboy 0.3.1 npm
busybox 1.36.1-r29 apk
busybox-binsh 1.36.1-r29 apk
bytes 3.0.0 npm
bytes 3.1.2 npm
c-ares 1.33.1-r0 apk
ca-certificates 20240705-r0 apk
ca-certificates-bundle 20240705-r0 apk
cacache 15.3.0 npm
cacache 18.0.4 npm
cacache 19.0.1 npm
cache-base 1.0.1 npm
cache-manager 3.6.3 npm
call-bind 1.0.7 npm
camel-case 4.1.2 npm
camelcase 5.3.1 npm
caniuse-lite 1.0.30001668 npm
caseless 0.12.0 npm
catatonit 0.2.0-r0 apk
chalk 2.4.2 npm
chalk 4.1.0 npm
chalk 4.1.2 npm (+1 duplicate)
chalk 5.3.0 npm
character-parser 2.2.0 npm
charenc 0.0.2 npm
cheerio 1.0.0-rc.5 npm
cheerio-select-tmp 0.1.1 npm
chokidar 3.5.3 npm
chownr 1.1.4 npm
chownr 2.0.0 npm (+2 duplicates)
chownr 3.0.0 npm
chromium-pickle-js 0.2.0 npm
ci-info 3.9.0 npm
ci-info 4.1.0 npm
cidr-regex 4.1.1 npm
class-utils 0.3.6 npm
clean-css 5.3.2 npm
clean-stack 2.2.0 npm (+1 duplicate)
cli-columns 4.0.0 npm
cliui 6.0.0 npm
cliui 7.0.4 npm
cliui 8.0.1 npm
clone 2.1.2 npm
cmd-shim 7.0.0 npm
collection-visit 1.0.0 npm
color 3.2.1 npm
color-convert 1.9.3 npm
color-convert 2.0.1 npm (+1 duplicate)
color-name 1.1.3 npm
color-name 1.1.4 npm (+1 duplicate)
color-string 1.9.1 npm
color-support 1.1.3 npm
colorette 1.2.1 npm
colorspace 1.1.4 npm
combined-stream 1.0.8 npm
command-exists 1.2.9 npm
commander 2.20.3 npm
commander 5.1.0 npm
commander 6.2.1 npm
common-ancestor-path 1.0.1 npm
component-emitter 1.3.1 npm
component-props 1.1.1 npm
compressible 2.0.18 npm
compression 1.7.4 npm
concat-map 0.0.1 npm
concat-stream 1.6.2 npm
connect-session-knex 2.0.0 npm
console-control-strings 1.1.0 npm
constantinople 4.0.1 npm
content-disposition 0.5.4 npm
content-type 1.0.5 npm
convert-source-map 2.0.0 npm
cookie 0.3.1 npm
cookie 0.4.1 npm
cookie 0.4.2 npm
cookie 0.5.0 npm
cookie 0.7.1 npm (+1 duplicate)
cookie-parser 1.4.6 npm
cookie-signature 1.0.6 npm
cookiejar 2.1.4 npm
cookies 0.7.1 npm
copy-descriptor 0.1.1 npm
core-js-pure 3.38.1 npm
core-util-is 1.0.2 npm
core-util-is 1.0.3 npm (+2 duplicates)
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
cpu-features 0.0.10 npm
cross-fetch 1.1.1 npm
cross-fetch 3.0.6 npm
cross-fetch 3.1.4 npm
cross-fetch 3.1.8 npm
cross-fetch-polyfill 0.0.0 npm (+3 duplicates)
cross-spawn 7.0.3 npm
cross-spawn 7.0.6 npm
crypt 0.0.2 npm
css-select 3.1.2 npm
css-what 4.0.0 npm
cssesc 3.0.0 npm
cssfilter 0.0.10 npm
cssom 0.3.8 npm
cssom 0.4.4 npm
cssstyle 2.3.0 npm
cuint 0.2.2 npm
curl 8.11.1-r0 apk
custom-error-instance 2.1.2 npm
dashdash 1.14.1 npm
data-urls 2.0.0 npm
data-view-buffer 1.0.1 npm
data-view-byte-length 1.0.1 npm
data-view-byte-offset 1.0.0 npm
dataloader 2.0.0 npm
date-utils 1.2.21 npm
db-errors 0.2.3 npm
debug 2.6.9 npm (+9 duplicates)
debug 3.2.7 npm
debug 4.1.1 npm
debug 4.3.1 npm
debug 4.3.7 npm (+1 duplicate)
decamelize 1.2.0 npm
decimal.js 10.4.3 npm
decode-uri-component 0.2.2 npm
decompress-response 4.2.1 npm
deep-is 0.1.4 npm
define-data-property 1.1.4 npm
define-properties 1.2.1 npm
define-property 0.2.5 npm
define-property 1.0.0 npm (+2 duplicates)
define-property 2.0.2 npm (+2 duplicates)
delayed-stream 1.0.0 npm
delegates 1.0.0 npm
denque 1.5.1 npm
denque 2.1.0 npm
depd 1.1.2 npm (+1 duplicate)
depd 2.0.0 npm
dependency-graph 0.11.0 npm
deprecated-decorator 0.1.6 npm
destroy 1.2.0 npm
detect-file 1.0.0 npm
detect-libc 2.0.3 npm
dezalgo 1.0.4 npm
dicer 0.2.5 npm
dicer 0.3.0 npm
diff 4.0.2 npm
diff 5.2.0 npm
diff2html 3.1.14 npm
dir-glob 3.0.1 npm
doctypes 1.1.0 npm
dom-serializer 1.2.0 npm
dom-serializer 1.4.1 npm
domelementtype 2.3.0 npm
domexception 2.0.1 npm
domhandler 4.3.1 npm
domino 2.1.6 npm
dompurify 2.4.3 npm
domutils 2.8.0 npm
dotize 0.3.0 npm
dtrace-provider 0.8.8 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
electron-to-chromium 1.5.36 npm
emoji-regex 10.2.1 npm
emoji-regex 8.0.0 npm (+1 duplicate)
emoji-regex 9.2.2 npm (+1 duplicate)
enabled 2.0.0 npm
encodeurl 1.0.2 npm (+2 duplicates)
encodeurl 2.0.0 npm (+1 duplicate)
encoding 0.1.13 npm (+1 duplicate)
end-of-stream 1.4.4 npm
entities 2.0.3 npm
entities 2.1.0 npm
entities 2.2.0 npm (+1 duplicate)
env-paths 2.2.1 npm (+1 duplicate)
err-code 2.0.3 npm (+1 duplicate)
es-abstract 1.23.3 npm
es-array-method-boxes-properly 1.0.0 npm
es-define-property 1.0.0 npm
es-errors 1.3.0 npm
es-object-atoms 1.0.0 npm
es-set-tostringtag 2.0.3 npm
es-to-primitive 1.2.1 npm
es6-promise 4.2.8 npm
escalade 3.2.0 npm
escape-html 1.0.3 npm
escape-string-regexp 1.0.5 npm
escodegen 1.14.3 npm
esm 3.2.25 npm
esprima 4.0.1 npm
estraverse 4.3.0 npm
esutils 2.0.3 npm
etag 1.8.1 npm
event-target-shim 5.0.1 npm
eventemitter2 6.4.9 npm
eventemitter3 3.1.2 npm
events 1.1.1 npm
events 3.3.0 npm
expand-brackets 2.1.4 npm
expand-tilde 2.0.2 npm
exponential-backoff 3.1.1 npm
express 4.18.2 npm
express 4.21.1 npm (+1 duplicate)
express-brute 1.0.1 npm
express-session 1.17.3 npm
extend 3.0.2 npm
extend-shallow 2.0.1 npm (+2 duplicates)
extend-shallow 3.0.2 npm (+4 duplicates)
extglob 2.0.4 npm
extract-files 9.0.0 npm
extsprintf 1.3.0 npm
extsprintf 1.4.1 npm (+2 duplicates)
false_main UNKNOWN npm
fast-deep-equal 3.1.3 npm
fast-glob 3.3.2 npm
fast-json-stable-stringify 2.1.0 npm
fast-levenshtein 2.0.6 npm
fast-safe-stringify 2.1.1 npm
fastest-levenshtein 1.0.16 npm
fastq 1.17.1 npm
fb-watchman 2.0.2 npm
fbjs 3.0.5 npm
fbjs-css-vars 1.0.2 npm
fecha 4.2.3 npm
file-type 15.0.1 npm
filesize 6.1.0 npm
fill-range 4.0.0 npm
fill-range 7.1.1 npm
finalhandler 1.2.0 npm
finalhandler 1.3.1 npm (+1 duplicate)
find-up 4.1.0 npm
find-yarn-workspace-root 2.0.0 npm
findup-sync 3.0.0 npm
findutils 4.9.0-r5 apk
fined 1.2.0 npm
flagged-respawn 1.0.1 npm
fn.name 1.1.0 npm
follow-redirects 1.15.9 npm
for-each 0.3.3 npm
for-in 1.0.2 npm
for-own 1.0.0 npm
foreground-child 3.3.0 npm
forever-agent 0.6.1 npm
form-data 2.3.3 npm
form-data 2.5.2 npm (+1 duplicate)
form-data 3.0.0 npm
form-data 4.0.0 npm
form-data 4.0.1 npm
formidable 1.2.6 npm
formidable 2.1.2 npm
forwarded 0.2.0 npm
fragment-cache 0.2.1 npm
fresh 0.5.2 npm
from2 2.3.0 npm
fs-capacitor 2.0.4 npm
fs-constants 1.0.0 npm
fs-extra 8.1.0 npm
fs-extra 9.0.1 npm
fs-extra 9.1.0 npm
fs-minipass 2.1.0 npm (+1 duplicate)
fs-minipass 3.0.3 npm
fs.realpath 1.0.0 npm
function-bind 1.1.2 npm
function.prototype.name 1.1.6 npm
functions-have-names 1.2.3 npm
gauge 3.0.2 npm
gauge 4.0.4 npm
generate-function 2.3.1 npm
gensync 1.0.0-beta.2 npm
get-caller-file 2.0.5 npm
get-intrinsic 1.2.4 npm
get-symbol-description 1.0.2 npm
get-value 2.0.6 npm
getopts 2.2.5 npm
getos 3.2.1 npm
getpass 0.1.7 npm
git 2.45.2-r0 apk
git-init-template 2.45.2-r0 apk
glob 10.4.5 npm
glob 6.0.4 npm
glob 7.1.3 npm
glob 7.2.3 npm
glob-parent 5.1.2 npm
global-modules 1.0.0 npm
global-prefix 1.0.2 npm
globals 11.12.0 npm
globalthis 1.0.4 npm
globby 11.0.3 npm
globby 11.1.0 npm
gopd 1.0.1 npm
graceful-fs 4.2.11 npm (+1 duplicate)
graphql 15.3.0 npm
graphql-extensions 0.16.0 npm
graphql-list-fields 2.0.2 npm
graphql-rate-limit-directive 1.2.1 npm
graphql-subscriptions 1.1.0 npm
graphql-subscriptions 1.2.1 npm (+1 duplicate)
graphql-tag 2.12.6 npm (+2 duplicates)
graphql-tools 4.0.8 npm (+3 duplicates)
graphql-tools 7.0.0 npm
graphql-tools/es5 7.0.0 npm
graphql-ws 4.9.0 npm
group-by 0.0.1 npm
har-schema 2.0.0 npm
har-validator 5.1.5 npm
has-bigints 1.0.2 npm
has-flag 3.0.0 npm
has-flag 4.0.0 npm
has-property-descriptors 1.0.2 npm
has-proto 1.0.3 npm
has-symbols 1.0.3 npm
has-tostringtag 1.0.2 npm
has-unicode 2.0.1 npm
has-value 0.3.1 npm
has-value 1.0.0 npm
has-values 0.1.4 npm
has-values 1.0.0 npm
hasown 2.0.2 npm
he 1.2.0 npm
hexoid 1.0.0 npm
highlight.js 10.2.1 npm
highlight.js 10.3.1 npm
hogan.js 3.0.2 npm
hoist-non-react-statics 3.3.2 npm
homedir-polyfill 1.0.3 npm
hosted-git-info 8.0.2 npm
hpagent 0.1.2 npm
hpagent 1.2.0 npm
html-encoding-sniffer 2.0.1 npm
htmlparser2 6.1.0 npm
http-cache-semantics 4.1.1 npm (+1 duplicate)
http-errors 1.8.1 npm
http-errors 2.0.0 npm
http-proxy-agent 4.0.1 npm
http-proxy-agent 7.0.2 npm
http-signature 1.2.0 npm
https-proxy-agent 5.0.1 npm
https-proxy-agent 7.0.5 npm
humanize-ms 1.2.1 npm
i18next 19.8.3 npm
i18next-express-middleware 2.0.0 npm
i18next-node-fs-backend 2.1.3 npm
iconv-lite 0.4.24 npm
iconv-lite 0.5.2 npm
iconv-lite 0.6.3 npm (+2 duplicates)
icu-data-en 74.2-r0 apk
icu-libs 74.2-r0 apk
ieee754 1.1.13 npm
ieee754 1.2.1 npm
ignore 5.3.2 npm
ignore-walk 7.0.0 npm
image-size 0.9.2 npm
immutable 3.7.6 npm
import-from 3.0.0 npm
imurmurhash 0.1.4 npm (+1 duplicate)
indent-string 4.0.0 npm (+1 duplicate)
infer-owner 1.0.4 npm
inflight 1.0.6 npm
inherits 2.0.4 npm
ini 1.3.8 npm
ini 5.0.0 npm
init-package-json 7.0.1 npm
internal-slot 1.0.7 npm
interpret 2.2.0 npm
into-stream 5.1.1 npm
invalid_main UNKNOWN npm
invariant 2.2.4 npm
ip-address 5.9.4 npm
ip-address 9.0.5 npm (+1 duplicate)
ip-regex 2.1.0 npm
ip-regex 5.0.0 npm
ipaddr.js 1.9.1 npm
is-absolute 1.0.0 npm
is-accessor-descriptor 1.0.1 npm
is-arguments 1.1.1 npm
is-array-buffer 3.0.4 npm
is-arrayish 0.3.2 npm
is-bigint 1.0.4 npm
is-binary-path 2.1.0 npm
is-boolean-object 1.1.2 npm
is-buffer 1.1.6 npm
is-callable 1.2.7 npm
is-cidr 5.1.0 npm
is-core-module 2.15.1 npm
is-data-descriptor 1.0.1 npm
is-data-view 1.0.1 npm
is-date-object 1.0.5 npm
is-descriptor 0.1.7 npm
is-descriptor 1.0.3 npm
is-docker 2.2.1 npm
is-expression 4.0.0 npm
is-extendable 0.1.1 npm (+2 duplicates)
is-extendable 1.0.1 npm (+5 duplicates)
is-extglob 2.1.1 npm
is-fullwidth-code-point 3.0.0 npm (+1 duplicate)
is-generator-function 1.0.10 npm
is-glob 4.0.1 npm
is-glob 4.0.3 npm
is-lambda 1.0.1 npm (+1 duplicate)
is-negative-zero 2.0.3 npm
is-number 3.0.0 npm
is-number 7.0.0 npm
is-number-object 1.0.7 npm
is-plain-object 2.0.4 npm
is-potential-custom-element-name 1.0.1 npm
is-promise 2.2.2 npm
is-promise 4.0.0 npm (+1 duplicate)
is-property 1.0.2 npm
is-regex 1.1.4 npm
is-relative 1.0.0 npm
is-shared-array-buffer 1.0.3 npm
is-stream 1.1.0 npm
is-stream 2.0.1 npm
is-string 1.0.7 npm
is-symbol 1.0.4 npm
is-typed-array 1.1.13 npm
is-typedarray 1.0.0 npm
is-unc-path 1.0.0 npm
is-weakref 1.0.2 npm
is-windows 1.0.2 npm
is-wsl 2.2.0 npm
isarray 0.0.1 npm (+1 duplicate)
isarray 1.0.0 npm
isarray 2.0.5 npm (+1 duplicate)
isexe 2.0.0 npm (+1 duplicate)
isexe 3.1.1 npm (+1 duplicate)
isobject 2.1.0 npm
isobject 3.0.1 npm
isomorphic-ws 4.0.1 npm
isstream 0.1.2 npm
iterall 1.3.0 npm
jackspeak 3.4.3 npm
jmespath 0.16.0 npm
jq 1.7.1-r0 apk
js-base64 3.7.4 npm
js-binary 1.2.0 npm
js-stringify 1.0.2 npm
js-tokens 4.0.0 npm
js-yaml 3.13.1 npm
js-yaml 3.14.0 npm
jsbi 3.2.5 npm
jsbn 0.1.1 npm
jsbn 1.1.0 npm (+2 duplicates)
jsdom 16.4.0 npm
jsesc 3.0.2 npm
json-parse-even-better-errors 4.0.0 npm
json-schema 0.4.0 npm
json-schema-traverse 0.4.1 npm
json-stable-stringify 1.1.1 npm
json-stringify-nice 1.1.4 npm
json-stringify-safe 5.0.1 npm
json5 2.0.0 npm
json5 2.2.3 npm
jsonfile 4.0.0 npm
jsonfile 5.0.0 npm
jsonfile 6.1.0 npm
jsonify 0.0.1 npm
jsonparse 1.3.1 npm
jsonwebtoken 9.0.0 npm
jsonwebtoken 9.0.2 npm
jsprim 1.4.2 npm
jstransformer 1.0.0 npm
just-diff 6.0.2 npm
just-diff-apply 5.5.0 npm
jwa 1.4.1 npm
jws 3.2.2 npm
katex 0.12.0 npm
keygrip 1.0.3 npm
kind-of 3.2.2 npm (+3 duplicates)
kind-of 4.0.0 npm
kind-of 6.0.3 npm
klaw 3.0.0 npm
klaw-sync 6.0.0 npm
knex 0.21.21 npm
knex 0.21.7 npm
kuler 2.0.0 npm
ldap-filter 0.3.3 npm
ldapauth-fork 5.0.5 npm
ldapjs 2.3.3 npm
levn 0.3.0 npm
libacl 2.3.2-r0 apk
libattr 2.5.2-r0 apk
libbase64 0.5.2-r0 apk
libbsd 0.12.2-r0 apk
libcrypto3 3.3.2-r1 apk
libcurl 8.11.1-r0 apk
libedit 20240517.3.1-r0 apk
libexpat 2.6.4-r0 apk
libgcc 13.2.1_git20240309-r0 apk
libidn2 2.3.7-r0 apk
libintl 0.22.5-r0 apk
libmd 1.1.0-r0 apk
libncursesw 6.4_p20240420-r2 apk
libnpmaccess 9.0.0 npm
libnpmdiff 7.0.0 npm
libnpmexec 9.0.0 npm
libnpmfund 6.0.0 npm
libnpmhook 11.0.0 npm
libnpmorg 7.0.0 npm
libnpmpack 8.0.0 npm
libnpmpublish 10.0.1 npm
libnpmsearch 8.0.0 npm
libnpmteam 7.0.0 npm
libnpmversion 7.0.0 npm
libproc2 4.0.4-r0 apk
libpsl 0.21.5-r1 apk
libssl3 3.3.2-r1 apk
libstdc++ 13.2.1_git20240309-r0 apk
libunistring 1.2-r0 apk
liftoff 3.1.0 npm
linkify-it 3.0.3 npm
linux-pam 1.6.0-r0 apk
ljharb-monorepo-symlink-test 0.0.0 npm
locate-path 5.0.0 npm
lodash 4.17.21 npm
lodash.clonedeep 4.5.0 npm
lodash.includes 4.3.0 npm
lodash.isboolean 3.0.3 npm
lodash.isinteger 4.0.4 npm
lodash.isnumber 3.0.3 npm
lodash.isplainobject 4.0.6 npm
lodash.isstring 4.0.1 npm
lodash.once 4.1.1 npm
lodash.repeat 4.1.0 npm
lodash.sortby 4.7.0 npm
logform 2.6.1 npm
loglevel 1.9.2 npm
long 4.0.0 npm
long 5.2.3 npm
long-timeout 0.1.1 npm
loose-envify 1.4.0 npm
lower-case 2.0.2 npm
lru-cache 10.4.3 npm
lru-cache 5.1.1 npm
lru-cache 6.0.0 npm
lru-cache 7.18.3 npm (+2 duplicates)
luxon 1.25.0 npm
make-dir 3.1.0 npm
make-fetch-happen 13.0.1 npm
make-fetch-happen 14.0.3 npm
make-fetch-happen 9.1.0 npm
make-iterator 1.0.1 npm
map-cache 0.2.2 npm
map-visit 1.0.0 npm
markdown-it 11.0.1 npm
markdown-it-abbr 1.0.4 npm
markdown-it-attrs 3.0.3 npm
markdown-it-decorate 1.2.2 npm
markdown-it-emoji 3.0.0 npm
markdown-it-expand-tabs 1.0.13 npm
markdown-it-external-links 0.0.6 npm
markdown-it-footnote 3.0.3 npm
markdown-it-imsize 2.0.1 npm
markdown-it-mark 3.0.1 npm