-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
techstack.yml
4449 lines (4449 loc) · 180 KB
/
techstack.yml
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
repo_name: shortlink-org/shortlink
report_id: 9674eb97a931bccf0e43ae842ea86af9
version: 0.1
repo_type: Public
timestamp: '2023-12-27T20:02:36+00:00'
requested_by: batazor
provider: github
branch: main
detected_tools_count: 335
tools:
- name: C++
description: Has imperative, object-oriented and generic programming features, while
also providing the facilities for low level memory manipulation
website_url: http://www.cplusplus.com/
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/1049/cplusplus.png
detection_source: Repo Metadata
- name: CSS 3
description: The latest evolution of the Cascading Style Sheets language
website_url: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS3
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/6727/css.png
detection_source: Repo Metadata
- name: Dart
description: A new web programming language with libraries, a virtual machine, and
tools
website_url: https://www.dartlang.org/
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/1646/Twitter-02.png
detection_source: Repo Metadata
- name: Gherkin
description: A plain-text language with a simple structure
website_url: https://cucumber.io/docs/gherkin/reference/
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/2460/default_aff27c02548fadb1b7e6f85a2b0da1c5dca5cc08.png
detection_source: Repo Metadata
- name: Go Ethereum
description: Open source platform to write and distribute decentralized applications
website_url: https://geth.ethereum.org/
license: LGPL-3.0
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/9003/DOnqq1OM_400x400.jpg
detection_source: go.mod
last_updated_by: renovate[bot]
last_updated_on: 2023-12-22 14:00:42.000000000 Z
- name: Golang
description: An open source programming language that makes it easy to build simple,
reliable, and efficient software
website_url: http://golang.org/
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/1005/O6AczwfV_400x400.png
detection_source: Repo Metadata
- name: Java
description: A concurrent, class-based, object-oriented, language specifically designed
to have as few implementation dependencies as possible
website_url: https://www.java.com
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/995/K85ZWV2F.png
detection_source: Repo Metadata
- name: JavaScript
description: Lightweight, interpreted, object-oriented language with first-class
functions
website_url: https://developer.mozilla.org/en-US/docs/Web/JavaScript
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/1209/javascript.jpeg
detection_source: Repo Metadata
- name: Jsonnet
description: A data templating language for app and tool developers
website_url: https://jsonnet.org
license: Apache-2.0
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Templating Languages & Extensions
image_url: https://img.stackshare.io/service/10435/preview.jpeg
detection_source: Repo Metadata
- name: Kotlin
description: Statically typed Programming Language targeting JVM and JavaScript
website_url: https://kotlinlang.org/
open_source: true
hosted_saas: true
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/3750/pCfEzr6L.png
detection_source: Repo Metadata
- name: Mustache
description: Logic-less templates
website_url: http://mustache.github.io/
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Templating Languages & Extensions
image_url: https://img.stackshare.io/service/1142/197655.png
detection_source: Repo Metadata
- name: Objective-C
description: The primary programming language you use when writing software for
OS X and iOS
website_url: https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/ProgrammingWithObjectiveC/Introduction/Introduction.html
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/1008/xcode.png
detection_source: Repo Metadata
- name: PHP
description: A popular general-purpose scripting language that is especially suited
to web development
website_url: http://www.php.net/
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/991/hwUcGZ41_400x400.jpg
detection_source: Repo Metadata
- name: Python
description: A clear and powerful object-oriented programming language, comparable
to Perl, Ruby, Scheme, or Java.
website_url: https://www.python.org
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/993/pUBY5pVj.png
detection_source: Repo Metadata
- name: Ruby
description: A dynamic, interpreted, open source programming language with a focus
on simplicity and productivity
website_url: https://www.ruby-lang.org
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/989/ruby.png
detection_source: Repo Metadata
- name: Rust
description: A safe, concurrent, practical language
website_url: http://www.rust-lang.org/
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/1070/v7txhrjp9pdqrkdtxxp0.png
detection_source: Repo Metadata
- name: SQL
description: It is a domain-specific language used in programming
website_url: https://en.wikipedia.org/wiki/SQL
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/2271/default_068d33483bba6b81ee13fbd4dc7aab9780896a54.png
detection_source: boundaries/link/link/infrastructure/repository/crud/mysql/migrations/000001_create_links_table.down.sql
last_updated_by: Victor Login
last_updated_on: 2023-10-27 12:35:33.000000000 Z
- name: Scala
description: A pure-bred object-oriented language that runs on the JVM
website_url: http://www.scala-lang.org/
license: Apache-2.0
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/1012/scala.png
detection_source: Repo Metadata
- name: Swift
description: 'An innovative new programming language for Cocoa and Cocoa Touch. '
website_url: https://developer.apple.com/swift/
license: Apache-2.0
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/1009/tuHsaI2U.png
detection_source: Repo Metadata
- name: TypeScript
description: A superset of JavaScript that compiles to clean JavaScript output
website_url: http://www.typescriptlang.org
license: Apache-2.0
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/1612/bynNY5dJ.jpg
detection_source: Repo Metadata
- name: Android SDK
description: An SDK that provides you the API libraries and developer tools necessary
to build, test, and debug apps for Android.
website_url: http://developer.android.com
version: '29.0'
open_source: false
hosted_saas: false
category: Languages & Frameworks
sub_category: Frameworks (Full Stack)
image_url: https://img.stackshare.io/service/1010/m8jf0po4imu8t5eemjdd.png
detection_source_url: https://github.com/shortlink-org/shortlink/blob/main/boundaries/ui/mobile/flutter/shortlink/android/app/build.gradle
detection_source: boundaries/ui/mobile/flutter/shortlink/android/app/build.gradle
last_updated_by: Victor Login
last_updated_on: 2023-11-23 21:31:54.000000000 Z
- name: Autoprefixer
description: PostCSS plugin to parse CSS and add vendor prefixes to CSS rules
website_url: https://github.com/postcss/autoprefixer
open_source: false
hosted_saas: false
category: Languages & Frameworks
sub_category: CSS Pre-processors / Extensions
image_url: https://img.stackshare.io/service/2202/72d087642cfce6fef6f2dabec5bf49e8_400x400.png
detection_source: boundaries/ui-monorepo/packages/ui-kit/package.json
last_updated_by: renovate[bot]
last_updated_on: 2023-09-20 22:17:52.000000000 Z
- name: Expo
description: Build one project that runs natively on all your users' devices
website_url: https://expo.dev/
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Cross-Platform Mobile Development
image_url: https://img.stackshare.io/service/5795/default_683a3de22a6983c41f27b04348f4c7380c5e3c21.jpg
detection_source: boundaries/ui/mobile/expo/apps/shortlink/package.json
last_updated_by: Victor Login
last_updated_on: 2023-09-12 19:47:53.000000000 Z
- name: ExpressJS
description: Sinatra inspired web development framework for node.js -- insanely
fast, flexible, and simple
website_url: http://expressjs.com/
version: 4.18.2
license: MIT
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Microframeworks (Backend)
image_url: https://img.stackshare.io/service/1163/hashtag.png
detection_source_url: https://github.com/shortlink-org/shortlink/blob/main/boundaries/link/proxy/package-lock.json
detection_source: boundaries/link/proxy/package.json
last_updated_by: renovate[bot]
last_updated_on: 2023-11-07 18:58:57.000000000 Z
- name: Flutter
description: Cross-platform mobile framework from Google
website_url: https://flutter.io/
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Cross-Platform Mobile Development
image_url: https://img.stackshare.io/service/7180/flutter-mark-square-100.png
detection_source: boundaries/ui/mobile/flutter/shortlink/pubspec.yaml
last_updated_by: Login Victor
last_updated_on: 2020-12-24 01:59:03.000000000 Z
- name: Matplotlib
description: A plotting library for the Python programming language
website_url: http://matplotlib.org
open_source: false
hosted_saas: false
category: Libraries
sub_category: Charting Libraries
image_url: https://img.stackshare.io/service/2993/2DZC4KaA_400x400.jpg
detection_source: poc/ml-diff/ml/requirements.txt
last_updated_by: Victor Login
last_updated_on: 2020-12-06 01:47:39.000000000 Z
- name: Next.js
description: 'A small framework for server-rendered universal JavaScript apps '
website_url: https://nextjs.org/
version: 14.0.4
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Frameworks (Full Stack)
image_url: https://img.stackshare.io/service/5936/nextjs.png
detection_source_url: https://github.com/shortlink-org/shortlink/blob/main/boundaries/ui-monorepo/package-lock.json
detection_source: boundaries/ui-monorepo/package.json
last_updated_by: Victor Login
last_updated_on: 2023-04-26 16:04:36.000000000 Z
- name: Node.js
description: A platform built on Chrome's JavaScript runtime for easily building
fast, scalable network applications
website_url: http://nodejs.org/
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Frameworks (Full Stack)
image_url: https://img.stackshare.io/service/1011/n1JRsFeB_400x400.png
detection_source: boundaries/link/proxy/package.json
last_updated_by: Login Victor
last_updated_on: 2021-05-06 00:40:24.000000000 Z
- name: PostCSS
description: Transform CSS with JS plugins
website_url: https://github.com/postcss/postcss
license: MIT
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: CSS Pre-processors / Extensions
image_url: https://img.stackshare.io/service/3339/rlFcjEdI.png
detection_source: boundaries/ui-monorepo/packages/ui-kit/package.json
last_updated_by: Login Victor
last_updated_on: 2022-09-06 15:11:05.000000000 Z
- name: Protobuf
description: Google's data interchange format
website_url: https://developers.google.com/protocol-buffers/
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Serialization Frameworks
image_url: https://img.stackshare.io/service/4393/ma2jqJKH_400x400.png
detection_source: go.mod
last_updated_by: renovate[bot]
last_updated_on: 2023-12-22 11:05:36.000000000 Z
- name: React
description: A JavaScript library for building user interfaces
website_url: https://reactjs.org/
version: 18.2.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: Javascript UI Libraries
image_url: https://img.stackshare.io/service/1020/OYIaJ1KK.png
detection_source_url: https://github.com/shortlink-org/shortlink/blob/main/boundaries/extension/argocd-extension-docs/ui/package-lock.json
detection_source: boundaries/extension/argocd-extension-docs/ui/package.json
last_updated_by: renovate[bot]
last_updated_on: 2023-12-13 04:53:31.000000000 Z
- name: React Native
description: A framework for building native apps with React
website_url: http://facebook.github.io/
version: 0.73.1
license: MIT
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Cross-Platform Mobile Development
image_url: https://img.stackshare.io/service/2699/KoK6gHzp.jpg
detection_source_url: https://github.com/shortlink-org/shortlink/blob/main/boundaries/ui/mobile/expo/package-lock.json
detection_source: boundaries/ui/mobile/expo/apps/shortlink/package.json
last_updated_by: Victor Login
last_updated_on: 2023-09-12 19:47:53.000000000 Z
- name: React Router
description: A complete routing solution for React.js
website_url: https://github.com/rackt/react-router
version: 6.21.1
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: JavaScript Framework Components
image_url: https://img.stackshare.io/service/3350/8261421.png
detection_source_url: https://github.com/shortlink-org/shortlink/blob/main/boundaries/platform/backstage/yarn.lock
detection_source: boundaries/platform/backstage/packages/app/package.json
last_updated_by: renovate[bot]
last_updated_on: 2023-12-21 19:16:56.000000000 Z
- name: Redux
description: Predictable state container for JavaScript apps
website_url: https://redux.js.org/
version: 4.2.1
open_source: true
hosted_saas: false
category: Libraries
sub_category: State Management Library
image_url: https://img.stackshare.io/service/4074/13142323.png
detection_source_url: https://github.com/shortlink-org/shortlink/blob/main/boundaries/platform/backstage/yarn.lock
detection_source: boundaries/ui-monorepo/packages/next/package.json
last_updated_by: renovate[bot]
last_updated_on: 2023-12-23 20:10:09.000000000 Z
- name: Storybook
description: Build bulletproof UI components faster
website_url: https://storybook.js.org/
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: JavaScript Framework Components
image_url: https://img.stackshare.io/service/9240/sOct-Txm_400x400.png
detection_source: boundaries/ui-monorepo/packages/ui-kit/package.json
last_updated_by: renovate[bot]
last_updated_on: 2023-12-24 18:02:48.000000000 Z
- name: Symfony
description: A PHP full-stack web framework
website_url: http://symfony.com/
license: MIT
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Frameworks (Full Stack)
image_url: https://img.stackshare.io/service/1197/logosf_positif_03_icon.png
detection_source: boundaries/delivery/support/composer.json
last_updated_by: renovate[bot]
last_updated_on: 2023-11-29 11:31:14.000000000 Z
- name: Tailwind CSS
description: A utility-first CSS framework for rapid UI development
website_url: https://tailwindcss.com
license: MIT
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Front-End Frameworks
image_url: https://img.stackshare.io/service/8158/default_660b7c41c3ba489cb581eec89c04655404258c19.png
detection_source: boundaries/ui-monorepo/package.json
last_updated_by: renovate[bot]
last_updated_on: 2023-12-19 23:46:44.000000000 Z
- name: css-loader
description: Helps webpack to collect CSS from all the css files
website_url: https://github.com/webpack-contrib/css-loader
license: MIT
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: CSS Pre-processors / Extensions
image_url: https://img.stackshare.io/service/8074/default_d2b16fd6997fb2e164de645a34f9b8d5a880d999.png
detection_source: boundaries/ui-monorepo/packages/ui-kit/package.json
last_updated_by: renovate[bot]
last_updated_on: 2023-12-27 17:44:24.000000000 Z
- name: gRPC
description: A high performance, open-source universal RPC framework
website_url: https://grpc.io/
license: Apache-2.0
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Remote Procedure Call (RPC)
image_url: https://img.stackshare.io/service/4670/default_d811b0ac72205af84aca21f967594338580be913.png
detection_source: go.mod
last_updated_by: Victor Login
last_updated_on: 2019-09-06 01:10:31.000000000 Z
- name: redux-saga
description: An alternative side effect model for Redux apps
website_url: https://redux-saga.github.io
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: State Management Library
image_url: https://img.stackshare.io/no-img-open-source.png
detection_source: boundaries/ui-monorepo/packages/next/package.json
last_updated_by: renovate[bot]
last_updated_on: 2023-12-23 20:10:09.000000000 Z
- name: Cassandra
description: A partitioned row store. Rows are organized into tables with a required
primary key.
website_url: http://cassandra.apache.org/
license: Apache-2.0
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Databases
image_url: https://img.stackshare.io/service/1032/cassandra_small.png
detection_source: ops/docker-compose/database/cassandra/cassandra.yaml
last_updated_by: renovate[bot]
last_updated_on: 2023-07-28 01:38:27.000000000 Z
- name: Firebase
description: The Realtime App Platform
website_url: https://firebase.google.com/
open_source: false
hosted_saas: true
category: Application Hosting
sub_category: Realtime Backend / API
image_url: https://img.stackshare.io/service/116/cZLxNFZS.jpg
detection_source: boundaries/ui-monorepo/packages/next/package.json
last_updated_by: renovate[bot]
last_updated_on: 2023-12-06 21:11:51.000000000 Z
- name: GraphQL
description: A data query language and runtime
website_url: http://graphql.org/
open_source: false
hosted_saas: false
category: Languages & Frameworks
sub_category: Query Languages
image_url: https://img.stackshare.io/service/3820/12972006.png
detection_source: boundaries/api/api-gateway/go.mod
last_updated_by: renovate[bot]
last_updated_on: 2023-10-06 21:05:22.000000000 Z
- name: MongoDB
description: The database for giant ideas
website_url: http://www.mongodb.com/
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Databases
image_url: https://img.stackshare.io/service/1030/leaf-360x360.png
detection_source: go.mod
last_updated_by: renovate[bot]
last_updated_on: 2023-12-06 21:30:24.000000000 Z
- name: MySQL
description: The world's most popular open source database
website_url: http://www.mysql.com
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Databases
image_url: https://img.stackshare.io/service/1025/logo-mysql-170x170.png
detection_source: go.mod
last_updated_by: Victor Login
last_updated_on: 2019-09-06 01:10:31.000000000 Z
- name: PostgreSQL
description: A powerful, open source object-relational database system
website_url: http://www.postgresql.org/
version: 1.0.1
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Databases
image_url: https://img.stackshare.io/service/1028/ASOhU5xJ.png
detection_source_url: https://github.com/shortlink-org/shortlink/blob/main/ops/Helm/addons/store/postgres-operator/Chart.yaml
detection_source: boundaries/platform/backstage/packages/backend/package.json
last_updated_by: Victor Login
last_updated_on: 2023-01-11 22:57:57.000000000 Z
- name: Prisma
description: Modern Database Access for TypeScript & Node.js
website_url: https://www.prisma.io/
version: 5.7.1
license: Apache-2.0
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Object Relational Mapper (ORM)
image_url: https://img.stackshare.io/service/8680/Logo_Symbol_White.jpg
detection_source_url: https://github.com/shortlink-org/shortlink/blob/main/boundaries/link/proxy/package-lock.json
detection_source: boundaries/link/proxy/package.json
last_updated_by: renovate[bot]
last_updated_on: 2023-12-18 22:21:04.000000000 Z
- name: RabbitMQ
description: Open source multiprotocol messaging broker
website_url: http://www.rabbitmq.com/
version: 0.3.1
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Message Queue
image_url: https://img.stackshare.io/service/1061/default_df93e9a30d27519161b39d8c1d5c223c1642d187.jpg
detection_source_url: https://github.com/shortlink-org/shortlink/blob/main/ops/Helm/addons/mq/rabbitmq/Chart.yaml
detection_source: boundaries/notification/bot/pom.xml
last_updated_by: Login Victor
last_updated_on: 2021-05-16 01:00:15.000000000 Z
- name: Redis
description: Open source (BSD licensed), in-memory data structure store
website_url: http://redis.io/
version: 18.6.1
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Data Stores
sub_category: In-Memory Databases
image_url: https://img.stackshare.io/service/1031/default_cbce472cd134adc6688572f999e9122b9657d4ba.png
detection_source_url: https://github.com/shortlink-org/shortlink/blob/main/ops/Helm/addons/argo/argocd/Chart.yaml
detection_source: boundaries/marketing/referral/requirements.txt
last_updated_by: Victor Login
last_updated_on: 2023-04-20 15:32:50.000000000 Z
- name: SQLAlchemy
description: The Python SQL Toolkit and Object Relational Mapper
website_url: http://www.sqlalchemy.org/
license: MIT
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Object Relational Mapper (ORM)
image_url: https://img.stackshare.io/service/1839/q5uAkmy7.png
detection_source: boundaries/marketing/referral/requirements.txt
last_updated_by: Victor Login
last_updated_on: 2023-05-10 08:58:32.000000000 Z
- name: Ansible
description: Radically simple configuration-management, application deployment,
task-execution, and multi-node orchestration engine
website_url: http://www.ansible.com/
license: GPL-3.0
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Server Configuration and Automation
image_url: https://img.stackshare.io/service/663/ElOjna20.png
detection_source: ops/ansible/ansible.cfg
last_updated_by: Login Victor
last_updated_on: 2020-11-08 22:51:48.000000000 Z
- name: Argo
description: Container-native workflows for Kubernetes
website_url: https://argoproj.github.io/
version: 5.51.6
license: Apache-2.0
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Container Tools
image_url: https://img.stackshare.io/service/9840/PqKLmP_S_400x400.jpg
detection_source_url: https://github.com/shortlink-org/shortlink/blob/main/ops/Helm/addons/argo/argocd/Chart.yaml
detection_source: ops/Helm/_draft/keda/values.yaml
last_updated_by: Login Victor
last_updated_on: 2022-08-10 07:01:23.000000000 Z
- name: Babel
description: Use next generation JavaScript, today.
website_url: http://babeljs.io/
version: 7.23.6
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: JavaScript Compilers
image_url: https://img.stackshare.io/service/2739/-1wfGjNw.png
detection_source_url: https://github.com/shortlink-org/shortlink/blob/main/boundaries/platform/backstage/yarn.lock
detection_source: boundaries/ui/mobile/expo/apps/shortlink-e2e/.babelrc
last_updated_by: Victor Login
last_updated_on: 2023-09-12 19:47:53.000000000 Z
- name: Behat
description: A BDD framework for testing your business expectations
website_url: http://behat.org
version: 3.13.0
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Testing Frameworks
image_url: https://img.stackshare.io/service/1650/7f2139b4b5176b422459c609be965b1e_400x400.png
detection_source_url: https://github.com/shortlink-org/shortlink/blob/main/boundaries/delivery/support/composer.lock
detection_source: boundaries/delivery/support/composer.json
last_updated_by: renovate[bot]
last_updated_on: 2023-04-18 16:41:36.000000000 Z
- name: CMake
description: 'An open-source system that manages the build process '
website_url: http://www.cmake.org/
open_source: false
hosted_saas: false
category: Build, Test, Deploy
sub_category: Java Build Tools
image_url: https://img.stackshare.io/service/2424/0UlUI_y1_400x400.jpg
detection_source: Repo Metadata
- name: Codecov
description: Hosted coverage reports with awesome features to enhance your CI workflow
website_url: https://codecov.io/
open_source: false
hosted_saas: true
category: Build, Test, Deploy
sub_category: Code Coverage
image_url: https://img.stackshare.io/service/2673/Codecov_Mark_Circle_Pink.png
detection_source: ".codecov.yml"
last_updated_by: v.login
last_updated_on: 2019-10-11 15:54:00.000000000 Z
- name: Cypress
description: When testing is easy, developers build better things faster and with
confidence.
website_url: https://www.cypress.io/
version: 13.6.2
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Javascript Testing Framework
image_url: https://img.stackshare.io/service/9231/default_66c5c1a197dcd0232e41e4ab6299d119b4e165b3.png
detection_source_url: https://github.com/shortlink-org/shortlink/blob/main/boundaries/platform/backstage/yarn.lock
detection_source: boundaries/platform/backstage/packages/app/package.json
last_updated_by: renovate[bot]
last_updated_on: 2023-12-26 20:51:01.000000000 Z
- name: Detox
description: Gray box end-to-end testing and automation library for mobile apps
website_url: https://github.com/wix/detox
version: 20.14.5
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Testing Frameworks
image_url: https://img.stackshare.io/service/8187/MfRcYRSi_400x400.jpg
detection_source_url: https://github.com/shortlink-org/shortlink/blob/main/boundaries/ui/mobile/expo/package-lock.json
detection_source: boundaries/ui/mobile/expo/package.json
last_updated_by: renovate[bot]
last_updated_on: 2023-12-24 18:02:05.000000000 Z
- name: Docker
description: Enterprise Container Platform for High-Velocity Innovation.
website_url: https://www.docker.com/
license: Apache-2.0
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Virtual Machine Platforms & Containers
image_url: https://img.stackshare.io/service/586/n4u37v9t_400x400.png
detection_source: Repo Metadata
- name: Docker Compose
description: Define and run multi-container applications with Docker
website_url: https://github.com/docker/compose
license: Apache-2.0
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Container Tools
image_url: https://img.stackshare.io/service/3136/docker-compose.png
detection_source: ops/ansible/playbooks/roles/geerlingguy.docker/tasks/docker-compose.yml
last_updated_by: Login Victor
last_updated_on: 2022-04-22 23:54:48.000000000 Z
- name: Dotenv
description: Loads environment variables from .env for Nodejs projects
website_url: https://github.com/motdotla/dotenv
license: BSD-2-Clause
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Server Configuration and Automation
image_url: https://img.stackshare.io/service/8067/default_90dcb1286af7685c68df319c764b80704df1155b.png
detection_source: boundaries/link/proxy/package.json
last_updated_by: renovate[bot]
last_updated_on: 2023-06-17 17:21:07.000000000 Z
- name: ESLint
description: The fully pluggable JavaScript code quality tool
website_url: http://eslint.org/
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Code Review
image_url: https://img.stackshare.io/service/3337/Q4L7Jncy.jpg
detection_source: boundaries/ui/mobile/expo/package.json
last_updated_by: Victor Login
last_updated_on: 2023-09-12 19:47:53.000000000 Z
- name: Git
description: Fast, scalable, distributed revision control system
website_url: http://git-scm.com/
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Version Control System
image_url: https://img.stackshare.io/service/1046/git.png
detection_source: Repo Metadata
- name: GitHub Actions
description: Automate your workflow from idea to production
website_url: https://github.com/features/actions
open_source: false
hosted_saas: true
category: Build, Test, Deploy
sub_category: Continuous Integration
image_url: https://img.stackshare.io/service/11563/actions.png
detection_source: ".github/workflows/cflite_build.yml"
last_updated_by: Victor Login
last_updated_on: 2023-11-11 14:05:33.000000000 Z
- name: GoTTY
description: Share your terminal as a web application
website_url: https://github.com/yudai/gotty
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: localhost Tools
image_url: https://img.stackshare.io/no-img-open-source.png
detection_source: go.mod
last_updated_by: Victor Login
last_updated_on: 2019-09-06 01:10:31.000000000 Z
- name: Gradle
description: A powerful build system for the JVM
website_url: https://www.gradle.org/
license: Apache-2.0
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Java Build Tools
image_url: https://img.stackshare.io/service/975/gradlephant-social-black-bg.png
detection_source: boundaries/ui/mobile/flutter/shortlink/android/app/build.gradle
last_updated_by: Login Victor
last_updated_on: 2020-12-24 01:59:03.000000000 Z
- name: Grafana
description: Open source Graphite & InfluxDB Dashboard and Graph Editor
website_url: http://grafana.org/
version: 0.7.3
license: AGPL-3.0
open_source: true
hosted_saas: false
category: Monitoring
sub_category: Monitoring Tools
image_url: https://img.stackshare.io/service/2645/default_8f9d552b144493679449b16c79647da5787e808b.jpg
detection_source_url: https://github.com/shortlink-org/shortlink/blob/main/ops/Helm/addons/observability/grafana/Chart.yaml
detection_source: ops/docker-compose/application/auth/keycloak/conf/realm/grafana.json
last_updated_by: Victor Login
last_updated_on: 2023-01-30 21:33:25.000000000 Z
- name: Istio
description: Open platform to connect, manage, and secure microservices, by Google,
IBM, and Lyft
website_url: https://istio.io/
version: 1.20.1
license: Apache-2.0
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Microservices Tools
image_url: https://img.stackshare.io/service/7028/AGpa5VZV.jpg
detection_source_url: https://github.com/shortlink-org/shortlink/blob/main/ops/Helm/addons/gateway/istio/Chart.yaml
detection_source: ops/Helm/addons/gateway/istio/Chart.yaml
last_updated_by: Victor Login
last_updated_on: 2023-12-23 14:29:51.000000000 Z
- name: Jest
description: Painless JavaScript Unit Testing
website_url: http://facebook.github.io/jest/
version: 29.7.0
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Javascript Testing Framework
image_url: https://img.stackshare.io/service/830/jest.png
detection_source_url: https://github.com/shortlink-org/shortlink/blob/main/boundaries/platform/backstage/yarn.lock
detection_source: boundaries/ui/mobile/expo/package.json
last_updated_by: Victor Login
last_updated_on: 2023-09-12 19:47:53.000000000 Z
- name: Kubernetes
description: Manage a cluster of Linux containers as a single system to accelerate
Dev and simplify Ops
website_url: http://kubernetes.io/
license: Apache-2.0
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Container Tools
image_url: https://img.stackshare.io/service/1885/21_d3cvM.png
detection_source: go.mod
last_updated_by: renovate[bot]
last_updated_on: 2023-10-25 00:18:13.000000000 Z
- name: Logback
description: A logging framework for Java applications
website_url: https://logback.qos.ch/
open_source: false
hosted_saas: false
category: Monitoring
sub_category: Log Management
image_url: https://img.stackshare.io/service/2923/05518ecaa42841e834421e9d6987b04f_400x400.png
detection_source: poc/gatling/src/test/resources/logback.xml
last_updated_by: Login Victor
last_updated_on: 2022-04-30 00:05:16.000000000 Z
- name: NGINX
description: A high performance free open source web server powering busiest sites
on the Internet.
website_url: http://nginx.org
open_source: false
hosted_saas: false
category: Application Hosting
sub_category: Web Servers
image_url: https://img.stackshare.io/service/1052/YMxUfyWf.png
detection_source: ops/ansible/playbooks/roles/nginx/files/nginx.conf
last_updated_by: Victor Login
last_updated_on: 2020-02-09 01:08:33.000000000 Z
- name: OpenCensus
description: A single distribution of libraries that automatically collect traces
and send them to any backend
website_url: https://opencensus.io/
open_source: false
hosted_saas: false
category: Monitoring
sub_category: Performance Monitoring
image_url: https://img.stackshare.io/service/10794/EpBd2Xrw_400x400.jpg
detection_source: go.mod
last_updated_by: Victor Login
last_updated_on: 2022-12-07 07:34:11.000000000 Z
- name: Prettier
description: 'Prettier is an opinionated code formatter. '
website_url: https://prettier.io/
version: 3.1.1
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Code Review
image_url: https://img.stackshare.io/service/7035/default_66f265943abed56bcdbfca1c866a4261b1fbb063.jpg
detection_source_url: https://github.com/shortlink-org/shortlink/blob/main/boundaries/platform/backstage/yarn.lock
detection_source: boundaries/platform/backstage/package.json
last_updated_by: renovate[bot]
last_updated_on: 2023-12-10 17:20:34.000000000 Z
- name: Prometheus
description: An open-source service monitoring system and time series database,
developed by SoundCloud
website_url: http://prometheus.io/
license: Apache-2.0
open_source: true
hosted_saas: false
category: Monitoring
sub_category: Monitoring Tools
image_url: https://img.stackshare.io/service/2501/default_3cf1b307194b26782be5cb209d30360580ae5b3c.png
detection_source: go.mod
last_updated_by: renovate[bot]
last_updated_on: 2023-12-22 14:00:42.000000000 Z
- name: PyPI
description: A repository of software for the Python programming language
website_url: https://pypi.org/
open_source: false
hosted_saas: false
category: Build, Test, Deploy
sub_category: Hosted Package Repository
image_url: https://img.stackshare.io/service/12572/-RIWgodF_400x400.jpg
detection_source: poc/ml-diff/ml/requirements.txt
last_updated_by: Victor Login
last_updated_on: 2020-12-06 01:47:39.000000000 Z
- name: SLF4J
description: Simple logging facade for Java
website_url: http://slf4j.org/
open_source: false
hosted_saas: false
category: Monitoring
sub_category: Log Management
image_url: https://img.stackshare.io/service/2805/05518ecaa42841e834421e9d6987b04f_400x400.png
detection_source: boundaries/notification/bot/pom.xml
last_updated_by: Login Victor
last_updated_on: 2021-05-16 01:00:15.000000000 Z
- name: Testify
description: A toolkit with common assertions and mocks that plays nicely with the
standard library
website_url: https://github.com/stretchr/testify
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Go Testing
image_url: https://img.stackshare.io/service/8695/stretchr.png
detection_source: docs/ADR/decisions/proof/ADR-0007/go.mod
last_updated_by: Victor Login
last_updated_on: 2023-05-30 13:42:35.000000000 Z
- name: Travis CI
description: A hosted continuous integration service for open source and private
projects
website_url: http://travis-ci.com/
open_source: false
hosted_saas: true
category: Build, Test, Deploy
sub_category: Continuous Integration
image_url: https://img.stackshare.io/service/460/Lu6cGu0z_400x400.png
detection_source: ops/ansible/playbooks/roles/nginx/.travis.yml
last_updated_by: Victor Login
last_updated_on: 2020-02-09 23:01:07.000000000 Z
- name: Vagrant
description: A tool for building and distributing development environments
website_url: http://www.vagrantup.com/
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Virtual Machine Management
image_url: https://img.stackshare.io/service/768/150px-Vagrant.png
detection_source: poc/vagrant/Vagrantfile
last_updated_by: Victor Login
last_updated_on: 2020-06-01 14:46:39.000000000 Z
- name: Webpack
description: A bundler for javascript and friends
website_url: http://webpack.js.org
version: 5.89.0
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: JS Build Tools / JS Task Runners
image_url: https://img.stackshare.io/service/1682/IMG_4636.PNG
detection_source_url: https://github.com/shortlink-org/shortlink/blob/main/boundaries/extension/argocd-extension-docs/ui/package-lock.json
detection_source: boundaries/extension/argocd-extension-docs/ui/package.json
last_updated_by: renovate[bot]
last_updated_on: 2023-10-14 08:50:41.000000000 Z
- name: Yarn
description: A new package manager for JavaScript
website_url: https://yarnpkg.com/
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Front End Package Manager
image_url: https://img.stackshare.io/service/5848/44mC-kJ3.jpg
detection_source: boundaries/platform/backstage/yarn.lock
- name: npm
description: The package manager for JavaScript.
website_url: https://www.npmjs.com/
open_source: false
hosted_saas: false
category: Build, Test, Deploy
sub_category: Front End Package Manager
image_url: https://img.stackshare.io/service/1120/lejvzrnlpb308aftn31u.png
detection_source: boundaries/ui-monorepo/packages/ui-kit/package.json
last_updated_by: Login Victor
last_updated_on: 2022-09-06 15:11:05.000000000 Z
- name: pytest
description: A full-featured Python testing tool to help you write better programs
website_url: http://pytest.org/latest/
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Testing Frameworks
image_url: https://img.stackshare.io/service/4586/Lu99Qe0Z_400x400.png
detection_source: boundaries/marketing/referral/requirements.txt
last_updated_by: Victor Login
last_updated_on: 2023-05-05 14:21:08.000000000 Z
- name: rollup
description: The next-generation JavaScript module bundler