-
Notifications
You must be signed in to change notification settings - Fork 21
/
techstack.yml
3061 lines (3061 loc) · 116 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: decentralized-fda/decentralized-fda
report_id: eaf7275c6278e3e58530beb86b13a12e
repo_type: Public
timestamp: '2023-11-22T04:45:18+00:00'
requested_by: mikepsinn
provider: github
branch: develop
detected_tools_count: 230
tools:
- 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: apps/dfda-1/public/app/docker-compose.yml
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- 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: 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: 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: libs/db-schema/mysql/variable_predictor_category.sql
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- 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: Bootstrap
description: Simple and flexible HTML, CSS, and JS for popular UI components and
interactions
website_url: http://getbootstrap.com/
version: 4.5.3
license: MIT
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Front-End Frameworks
image_url: https://img.stackshare.io/service/1101/C9QJ7V3X.png
detection_source_url: apps/dfda-1/package-lock.json
detection_source: apps/dfda-1/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.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: apps/api-gateway/package-lock.json
detection_source: apps/dfda-1/public/app/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-02-14 15:12:17.000000000 Z
- name: Guzzle
description: PHP HTTP client that makes it easy to send HTTP requests and trivial
to integrate with web services
website_url: http://guzzlephp.org/
license: MIT
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Microframeworks (Backend)
image_url: https://img.stackshare.io/service/2350/638632.png
detection_source: apps/dfda-1/composer.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: Laravel
description: A PHP Framework For Web Artisans
website_url: http://laravel.com/
version: 8.83.27
open_source: false
hosted_saas: false
category: Languages & Frameworks
sub_category: Frameworks (Full Stack)
image_url: https://img.stackshare.io/service/992/AcA2LnWL_400x400.jpg
detection_source_url: apps/dfda-1/composer.lock
detection_source: apps/dfda-1/composer.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: Next.js
description: 'A small framework for server-rendered universal JavaScript apps '
website_url: https://nextjs.org/
version: 13.5.6
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: yarn.lock
detection_source: package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2022-06-15 04:39:02.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: package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2022-10-13 09:42:37.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: yarn.lock
detection_source: package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2022-10-14 16:18:23.000000000 Z
- name: Vue.js
description: A progressive framework for building user interfaces
website_url: http://vuejs.org/
version: 3.2.45
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: Javascript MVC Frameworks
image_url: https://img.stackshare.io/service/3837/paeckCWC.png
detection_source_url: apps/dfda-1/package-lock.json
detection_source: apps/dfda-1/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: jQuery
description: The Write Less, Do More, JavaScript Library.
website_url: http://jquery.com/
version: 3.5.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: Javascript UI Libraries
image_url: https://img.stackshare.io/service/1021/lxEKmMnB_400x400.jpg
detection_source_url: apps/dfda-1/package-lock.json
detection_source: apps/dfda-1/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: Apache Ignite
description: 'An open-source distributed database, caching and processing platform '
website_url: http://ignite.apache.org/
license: Apache-2.0
open_source: true
hosted_saas: false
category: Data Stores
sub_category: In-Memory Databases
image_url: https://img.stackshare.io/service/6053/xTBxO73F_200x200.png
detection_source: apps/dfda-1/public/app/tests/docker-compose.yml
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: Memcached
description: High-performance, distributed memory object caching system
website_url: http://memcached.org/
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Databases
image_url: https://img.stackshare.io/service/1040/hDNnpa4a_400x400.jpg
detection_source: apps/dfda-1/docker-compose.yml
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: Minio
description: AWS S3 open source alternative written in Go
website_url: https://minio.io/
license: AGPL-3.0
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Cloud Storage
image_url: https://img.stackshare.io/service/4485/gTawkyAA.png
detection_source: apps/dfda-1/docker-compose.yml
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.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: apps/dfda-1/app/Types/ObjectHelper.php
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: PostgreSQL
description: A powerful, open source object-relational database system
website_url: http://www.postgresql.org/
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Databases
image_url: https://img.stackshare.io/service/1028/ASOhU5xJ.png
detection_source: apps/dfda-1/docker-compose.yml
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: Prisma
description: Modern Database Access for TypeScript & Node.js
website_url: https://www.prisma.io/
version: 4.6.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: apps/api-gateway/package-lock.json
detection_source: apps/dfda-1/public/app/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2022-11-26 10:57:08.000000000 Z
- name: Redis
description: Open source (BSD licensed), in-memory data structure store
website_url: http://redis.io/
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: apps/dfda-1/docker-compose.yml
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: SQLite
description: A software library that implements a self-contained, serverless, zero-configuration,
transactional SQL database engine
website_url: http://www.sqlite.org/
open_source: false
hosted_saas: true
category: Data Stores
sub_category: Databases
image_url: https://img.stackshare.io/service/1071/sqlite.jpg
detection_source: package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2022-06-15 04:39:02.000000000 Z
- name: Sequelize
description: Easy-to-use multi SQL dialect ORM for Node.js
website_url: https://sequelize.org/
version: 6.25.8
license: MIT
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Object Relational Mapper (ORM)
image_url: https://img.stackshare.io/service/3211/3591786.png
detection_source_url: apps/api-gateway/package-lock.json
detection_source: apps/api-gateway/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2022-11-24 04:05:52.000000000 Z
- name: Babel
description: Use next generation JavaScript, today.
website_url: http://babeljs.io/
version: 7.18.10
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: apps/dfda-1/package-lock.json
detection_source: package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: Bugsnag
description: Bugsnag provides production error monitoring and management for front-end,
mobile and back-end applications
website_url: https://www.bugsnag.com
open_source: false
hosted_saas: true
category: Monitoring
sub_category: Exception Monitoring
image_url: https://img.stackshare.io/service/150/square-logo-small-midnight.png
detection_source: package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: Chai
description: A BDD / TDD assertion library
website_url: http://chaijs.com/
version: 4.3.7
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Javascript Testing Framework
image_url: https://img.stackshare.io/service/1725/chai.png
detection_source_url: apps/dfda-1/package-lock.json
detection_source: apps/dfda-1/public/app/routes/passport-quantimodo-oauth2/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: Codeship
description: A Continuous Integration Platform in the cloud
website_url: https://codeship.com/
open_source: false
hosted_saas: true
category: Build, Test, Deploy
sub_category: Continuous Integration
image_url: https://img.stackshare.io/service/224/avatar_codeship_colour.png
detection_source: apps/dfda-1/public/app/tests/codeship-steps.yml
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: Coveralls
description: Track your project's code coverage over time, changes to files, and
badge your GitHub repo
website_url: https://coveralls.io/
open_source: false
hosted_saas: true
category: Build, Test, Deploy
sub_category: Code Coverage
image_url: https://img.stackshare.io/service/680/a43e4a04cb9f778842de43f95db59a14.png
detection_source: apps/dfda-1/public/app/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: Cypress
description: When testing is easy, developers build better things faster and with
confidence.
website_url: https://www.cypress.io/
version: 12.5.1
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: apps/dfda-1/package-lock.json
detection_source: package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.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: 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: package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2022-10-13 09:42:37.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: package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.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/s3-upload.yml"
last_updated_by: Mike P. Sinn
last_updated_on: 2023-04-08 21:56:05.000000000 Z
- name: Google Cloud Build
description: Continuously build, test, and deploy.
website_url: https://cloud.google.com/cloud-build
open_source: false
hosted_saas: true
category: Build, Test, Deploy
sub_category: Continuous Deployment
image_url: https://img.stackshare.io/service/9309/PoHJY3K8_400x400.jpg
detection_source: apps/dfda-1/cloudbuild.yaml
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.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: apps/dfda-1/public/app/build-extras.gradle
last_updated_by: Mike P. Sinn
last_updated_on: 2022-06-15 04:39:02.000000000 Z
- name: Jasmine
description: DOM-less simple JavaScript testing framework
website_url: http://jasmine.github.io/
version: 3.8.0
open_source: false
hosted_saas: true
category: Build, Test, Deploy
sub_category: Javascript Testing Framework
image_url: https://img.stackshare.io/service/831/7c0b595409af531b9cdeb07f8c513e8b.png
detection_source_url: apps/dfda-1/public/app/yarn.lock
detection_source: apps/dfda-1/public/app/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: Jest
description: Painless JavaScript Unit Testing
website_url: http://facebook.github.io/jest/
version: 29.4.3
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: yarn.lock
detection_source: package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2022-06-15 04:39:02.000000000 Z
- name: Mocha
description: Simple, flexible, fun javascript test framework for node.js & the
browser
website_url: http://mochajs.org/
version: 10.0.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/832/mocha.png
detection_source_url: apps/dfda-1/package-lock.json
detection_source: apps/dfda-1/public/app/routes/passport-quantimodo-oauth2/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.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: apps/dfda-1/public/app/nginx.conf
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: Octokit
description: GitHub API Client Library for .NET
website_url: https://github.com/octokit/octokit.net
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Tools for GitHub
image_url: https://img.stackshare.io/service/9827/octokit-dotnet_2.png
detection_source: package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: PHPUnit
description: Testing framework for PHP
website_url: https://phpunit.de/
version: 9.6.3
license: BSD-3-Clause
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Testing Frameworks
image_url: https://img.stackshare.io/service/1616/1_WsEnddd5Y4EgEHsT054kUQ.jpeg
detection_source_url: apps/dfda-1/composer.lock
detection_source: apps/dfda-1/composer.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: Prettier
description: 'Prettier is an opinionated code formatter. '
website_url: https://prettier.io/
version: 2.7.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: apps/dfda-1/package-lock.json
detection_source: package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: TSLint
description: An extensible linter for the TypeScript language
website_url: https://github.com/palantir/tslint
open_source: false
hosted_saas: false
category: Build, Test, Deploy
sub_category: Code Review
image_url: https://img.stackshare.io/service/5561/303157.png
detection_source: apps/dfda-1/public/app/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.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: apps/dfda-1/public/app/tests/.travis.yml
last_updated_by: Mike P. Sinn
last_updated_on: 2022-06-15 04:39:02.000000000 Z
- name: Webpack
description: A bundler for javascript and friends
website_url: http://webpack.js.org
version: 5.74.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: apps/dfda-1/package-lock.json
detection_source: apps/dfda-1/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.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: yarn.lock
last_updated_by: Mike P. Sinn
last_updated_on: 2023-05-01 03:00:38.000000000 Z
- name: nodemon
description: A simple monitor script for use during development of a node.js app
website_url: http://nodemon.io/
version: 2.0.22
license: MIT
open_source: true
hosted_saas: false
category: Monitoring
sub_category: node.js Application Monitoring
image_url: https://img.stackshare.io/service/5577/preview.png
detection_source_url: apps/dfda-1/public/app/yarn.lock
detection_source: apps/dfda-1/public/app/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- 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: apps/dfda-1/public/app/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: Heroku
description: Build, deliver, monitor and scale web apps and APIs with a trail blazing
developer experience.
website_url: https://www.heroku.com
open_source: false
hosted_saas: true
category: Application Hosting
sub_category: Platform as a Service
image_url: https://img.stackshare.io/service/133/3wgIDj3j.png
detection_source: apps/dfda-1/public/app/tests/app.json
last_updated_by: Mike P. Sinn
last_updated_on: 2022-06-15 04:39:02.000000000 Z
- name: LogRocket
description: Modern Frontend Monitoring and Product Analytics
website_url: https://logrocket.com/
open_source: false
hosted_saas: true
category: Application Utilities
sub_category: User Feedback as a Service
image_url: https://img.stackshare.io/service/6063/logo_bg.png
detection_source: apps/dfda-1/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: Mailchimp
description: Easy email newsletters
website_url: http://mailchimp.com
open_source: false
hosted_saas: true
category: Support, Sales, and Marketing
sub_category: Email Marketing
image_url: https://img.stackshare.io/service/47/default_3a2efb58b55346c25d951f68f21e56f8af77c9b8.jpg
detection_source: apps/dfda-1/composer.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: Netlify
description: Build, deploy and host your static site or app with a drag and drop
interface and automatic delpoys from GitHub or Bitbucket
website_url: https://www.netlify.com/
open_source: false
hosted_saas: true
category: Application Utilities
sub_category: Static Web Hosting
image_url: https://img.stackshare.io/service/2748/default_5dfbb146cf22182bca88c7d07f2515a5888fc12a.jpg
detection_source: apps/dfda-1/public/app/netlify.toml
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: Twilio SendGrid
description: Email Delivery. Simplified.
website_url: http://sendgrid.com
open_source: false
hosted_saas: true
category: Communications
sub_category: Transactional Email
image_url: https://img.stackshare.io/service/43/kQ_6nwmP.jpg
detection_source: apps/dfda-1/composer.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: cURL
description: Command Line Tool and Library for Transferring Data With URLs
website_url: http://curl.haxx.se/
open_source: true
hosted_saas: false
category: Assets and Media
sub_category: File Transfer
image_url: https://img.stackshare.io/service/6552/curl-logo.png
detection_source: apps/dfda-1/public/app/tests/docker-compose.yml
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: Alpine Linux
description: Security-oriented, lightweight Linux distribution based on musl libc
and busybox
website_url: https://www.alpinelinux.org/
open_source: false
hosted_saas: false
category: Languages & Frameworks
sub_category: Operating Systems
image_url: https://img.stackshare.io/service/6429/alpine_linux.png
detection_source: apps/dfda-1/docker-compose.yml
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: Context.IO
description: A REST email API that makes it easy and fast to integrate your user's
email data in your application.
website_url: http://context.io
open_source: false
hosted_saas: false
category: Communications
sub_category: Email API
image_url: https://img.stackshare.io/service/240/mPMj_ee5.png
detection_source: apps/dfda-1/composer.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: HTML
description: Hypertext Markup Language for creating web pages.
website_url: http://
open_source: false
hosted_saas: false
image_url: https://img.stackshare.io/service/2270/no-img-open-source.png
detection_source: apps/dfda-1/public/api/docs/index.html
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: Lodash
description: A JavaScript utility library
website_url: https://lodash.com
version: 4.17.21
open_source: true
hosted_saas: false
category: Libraries
sub_category: Javascript Utilities & Libraries
image_url: https://img.stackshare.io/service/2438/lodash.png
detection_source_url: apps/api-gateway/package-lock.json
detection_source: apps/dfda-1/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: Moment.js
description: A JavaScript date library for parsing, validating, manipulating, and
formatting dates
website_url: http://momentjs.com/
version: 2.29.4
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: Javascript Utilities & Libraries
image_url: https://img.stackshare.io/service/3643/Xrtdc94q_400x400.png
detection_source_url: apps/api-gateway/package-lock.json
detection_source: apps/dfda-1/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: PowerShell
description: A task automation and configuration management framework
website_url: https://docs.microsoft.com/en-us/powershell/
open_source: false
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/3681/powershell-logo.png
detection_source: Repo Metadata
- name: Shell
description: A shell is a text-based terminal, used for manipulating programs and
files. Shell scripts typically manage program execution.
website_url: https://en.wikipedia.org/wiki/Shell_script
open_source: false
hosted_saas: false
category: Languages & Frameworks
sub_category: Languages
image_url: https://img.stackshare.io/service/4631/default_c2062d40130562bdc836c13dbca02d318205a962.png
detection_source: Repo Metadata
- name: SweetAlert
description: A beautiful replacement for JavaScript's "alert"
website_url: https://sweetalert.js.org/
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: Javascript Utilities & Libraries
image_url: https://ucarecdn.com/c4c55828-7bcf-4661-8f4f-52745636aafd/
detection_source: apps/dfda-1/public/app/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: Ubuntu
description: The leading OS for PC, tablet, phone and cloud
website_url: http://www.ubuntu.com/
open_source: false
hosted_saas: false
category: Languages & Frameworks
sub_category: Operating Systems
image_url: https://img.stackshare.io/service/3511/cof_orange_hex.jpg
detection_source: apps/dfda-1/public/app/Dockerfile
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: axios
description: Promise based HTTP client for the browser and node.js
website_url: https://github.com/mzabriskie/axios
version: 0.21.4
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: Javascript Utilities & Libraries
image_url: https://img.stackshare.io/no-img-open-source.png
detection_source_url: apps/dfda-1/package-lock.json
detection_source: package.json
last_updated_by: dependabot[bot]
last_updated_on: 2023-11-15 19:00:02.000000000 Z
- name: husky
website_url: https://github.com/typicode/husky
open_source: false
hosted_saas: false
image_url: https://img.stackshare.io/service/9527/5502029.jpeg
detection_source: apps/dfda-1/public/app/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: laravel-mix
description: A framework for web artisans.
website_url: https://laravel.com/docs/5.5/mix
open_source: false
hosted_saas: false
image_url: https://img.stackshare.io/service/7945/h7umz7fz_normal.jpg
detection_source: apps/dfda-1/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: lint-staged
website_url: https://github.com/okonet/lint-staged
open_source: false
hosted_saas: false
image_url: https://img.stackshare.io/service/10577/11071.jpeg
detection_source: apps/dfda-1/public/app/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: solidity
description: How people build software
website_url: https://ethereum.github.io/solidity/
open_source: false
hosted_saas: false
image_url: https://img.stackshare.io/service/4959/1__IS8pZzkhvd6kUbSFpSgag.png
detection_source: Repo Metadata
- name: superagent library
description: robust and clean node and browser reqest library
website_url: https://visionmedia.github.io/superagent/
open_source: false
hosted_saas: false
image_url: https://img.stackshare.io/service/8032/pBeeJQDQ_normal.png
detection_source: apps/dfda-1/public/app/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: "@babel/core"
description: Babel compiler core
package_url: https://www.npmjs.com/@babel/core
version: 7.18.10
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15810/default_004658cda9b38934f2871435e9dc15608c86e8be.png
detection_source_url: apps/dfda-1/package-lock.json
detection_source: apps/dfda-1/public/app/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: "@babel/preset-react"
description: Babel preset for all React plugins
package_url: https://www.npmjs.com/@babel/preset-react
version: 7.18.6
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15890/default_6743ba96cf149a3c3c68a185199f9705d6eff80e.png
detection_source_url: apps/dfda-1/package-lock.json
detection_source: package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-07-20 16:57:52.000000000 Z
- name: "@commitlint/config-conventional"
description: Shareable commitlint config enforcing conventional commits
package_url: https://www.npmjs.com/@commitlint/config-conventional
version: 17.4.4
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16092/default_8725384794b44fe56f31da1d21ae759cf07be7a5.png
detection_source_url: apps/dfda-1/public/app/yarn.lock
detection_source: apps/dfda-1/public/app/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: "@mdx-js/react"
description: React implementation for MDX
package_url: https://www.npmjs.com/@mdx-js/react
version: 1.6.22
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/17624/default_61a119a7701a0e8224ca0e4dce7ff951cd67972f.png
detection_source_url: yarn.lock
detection_source: package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-07-20 16:57:52.000000000 Z
- name: "@octokit/rest"
description: GitHub REST API client for Node.js
package_url: https://www.npmjs.com/@octokit/rest
version: 16.35.2
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16999/default_43f23668e39c9b3381720c9c76540776b8a49167.png
detection_source_url: apps/dfda-1/public/app/yarn.lock
detection_source: package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: "@testing-library/react"
description: Simple and complete React DOM testing utilities that encourage good
testing practices
package_url: https://www.npmjs.com/@testing-library/react
version: 14.0.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16549/default_d522554c6a41cb28d922d6d3ad32ad4afa0e3bb5.png
detection_source_url: yarn.lock
detection_source: package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-07-20 16:57:52.000000000 Z
- name: "@types/jest"
description: TypeScript definitions for Jest
package_url: https://www.npmjs.com/@types/jest
version: 29.4.4
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15840/default_004658cda9b38934f2871435e9dc15608c86e8be.png
detection_source_url: yarn.lock
detection_source: package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-07-28 05:37:21.000000000 Z
- name: "@types/mime"
description: TypeScript definitions for mime
package_url: https://www.npmjs.com/@types/mime
version: 3.0.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/18274/default_7a7ed285fac4b842f0d8c3991804954d9db6b793.png
detection_source_url: apps/dfda-1/package-lock.json
detection_source: apps/dfda-1/public/app/package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: "@types/node"
description: TypeScript definitions for Node.js
package_url: https://www.npmjs.com/@types/node
version: 18.11.9
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15809/default_5e5e8ac63beda29f31f1844df64d4b8247570a66.png
detection_source_url: apps/api-gateway/package-lock.json
detection_source: package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-07-28 05:37:21.000000000 Z
- name: "@types/q"
description: TypeScript definitions for Q
package_url: https://www.npmjs.com/@types/q
version: 1.5.5
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/18379/default_d0ba753d47207ad8f04b02befcab81c50f38718f.png
detection_source_url: apps/dfda-1/package-lock.json
detection_source: package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-03-31 00:02:07.000000000 Z
- name: "@types/react"
description: TypeScript definitions for React
package_url: https://www.npmjs.com/@types/react
version: 18.2.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15894/default_1d65e37e65b7f80761374f0202776043277d505d.png
detection_source_url: yarn.lock
detection_source: package.json
last_updated_by: Mike P. Sinn
last_updated_on: 2023-07-28 05:37:21.000000000 Z
- name: "@types/react-dom"
description: TypeScript definitions for React
package_url: https://www.npmjs.com/@types/react-dom