-
Notifications
You must be signed in to change notification settings - Fork 38
/
techstack.yml
1027 lines (1027 loc) · 45 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: novuhq/examples
report_id: 4a35c8e3346114db4e5b3bc92a919e7d
version: 0.1
repo_type: Public
timestamp: '2024-01-11T12:18:52+00:00'
requested_by: jainpawan21
provider: github
branch: main
detected_tools_count: 74
tools:
- 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_url: https://github.com/novuhq/examples
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_url: https://github.com/novuhq/examples
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_url: https://github.com/novuhq/examples
detection_source: Repo Metadata
- name: Angular
description: A platform for building mobile and desktop web applications
website_url: https://angular.io
version: 15.2.9
license: MIT
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Javascript MVC Frameworks
image_url: https://img.stackshare.io/service/3745/cb8U-gL6_400x400.jpg
detection_source_url: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: novu-angular-notification-center/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-08-25 05:20:23.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/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: react-dream-todo-app/BackEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.000000000 Z
- name: Next.js
description: 'A small framework for server-rendered universal JavaScript apps '
website_url: https://nextjs.org/
version: 13.2.3
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/novuhq/examples/blob/main/vue-nextjs-trigger-inapp-notifications/server-next/package.json
detection_source: vue-nextjs-trigger-inapp-notifications/server-next/package.json
last_updated_by: unicodeveloper
last_updated_on: 2023-04-20 17:26:15.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_url: https://github.com/novuhq/examples/blob/main/vue-notification-center-example/package.json
detection_source: vue-notification-center-example/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-04-18 10:41:14.000000000 Z
- name: React
description: A JavaScript library for building user interfaces
website_url: https://reactjs.org/
version: 17.0.2
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/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: novu-angular-notification-center/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-08-25 05:20:23.000000000 Z
- name: React Router
description: A complete routing solution for React.js
website_url: https://github.com/rackt/react-router
version: 6.9.0
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/novuhq/examples/blob/main/react-dream-todo-app/FrontEnd/package-lock.json
detection_source: react-dream-todo-app/FrontEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.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/novuhq/examples/blob/main/react-dream-todo-app/FrontEnd/package-lock.json
detection_source: react-dream-todo-app/FrontEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.000000000 Z
- name: RxJS
description: The Reactive Extensions for JavaScript
website_url: http://reactivex.io/rxjs/
version: 6.6.7
open_source: true
hosted_saas: false
category: Languages & Frameworks
sub_category: Concurrency Frameworks
image_url: https://img.stackshare.io/service/1796/984368.png
detection_source_url: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: novu-angular-notification-center/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-04-18 10:41:14.000000000 Z
- name: Vue.js
description: A progressive framework for building user interfaces
website_url: http://vuejs.org/
version: 3.2.47
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: https://github.com/novuhq/examples/blob/main/vue-nextjs-trigger-inapp-notifications/client/package-lock.json
detection_source: vue-nextjs-trigger-inapp-notifications/client/package.json
last_updated_by: unicodeveloper
last_updated_on: 2023-04-20 17:26:15.000000000 Z
- name: redux-thunk
description: Thunk middleware for Redux
website_url: https://github.com/gaearon/redux-thunk
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: State Management Library
image_url: https://img.stackshare.io/service/5448/13142323.png
detection_source_url: https://github.com/novuhq/examples/blob/main/react-dream-todo-app/FrontEnd/package.json
detection_source: react-dream-todo-app/FrontEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.000000000 Z
- name: Mongoose
description: MongoDB object modeling designed to work in an asynchronous environment
website_url: http://mongoosejs.com/
version: 7.1.0
license: MIT
open_source: true
hosted_saas: false
category: Data Stores
sub_category: Object Document Mapper (ODM)
image_url: https://img.stackshare.io/service/1231/0TXzZU7W_400x400.jpg
detection_source_url: https://github.com/novuhq/examples/blob/main/web-component-notification-center-example/back-end/package-lock.json
detection_source: react-dream-todo-app/BackEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.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_url: https://github.com/novuhq/examples/blob/main/react-dream-todo-app/BackEnd/package.json
detection_source: react-dream-todo-app/BackEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.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_url: https://github.com/novuhq/examples/blob/main/vue-nextjs-trigger-inapp-notifications/client/package.json
detection_source: vue-nextjs-trigger-inapp-notifications/client/package.json
last_updated_by: unicodeveloper
last_updated_on: 2023-04-20 17:26:15.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_url: https://github.com/novuhq/examples
detection_source: Repo Metadata
- name: Jasmine
description: DOM-less simple JavaScript testing framework
website_url: http://jasmine.github.io/
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: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package.json
detection_source: novu-angular-notification-center/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-04-18 10:41:14.000000000 Z
- name: Karma
description: Spectacular Test Runner for JavaScript
website_url: http://karma-runner.github.io/
version: 6.4.2
license: MIT
open_source: true
hosted_saas: false
category: Build, Test, Deploy
sub_category: Browser Testing
image_url: https://img.stackshare.io/service/1420/TidYGd6a.png
detection_source_url: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: novu-angular-notification-center/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-04-18 10:41:14.000000000 Z
- name: Prettier
description: 'Prettier is an opinionated code formatter. '
website_url: https://prettier.io/
version: 2.8.4
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/novuhq/examples/blob/main/vue-nextjs-trigger-inapp-notifications/client/package-lock.json
detection_source: vue-nextjs-trigger-inapp-notifications/client/package.json
last_updated_by: unicodeveloper
last_updated_on: 2023-04-20 17:26:15.000000000 Z
- name: Vite
description: Native-ESM powered web dev build tool
website_url: https://vitejs.dev/
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/21547/default_1aeac791cde11ff66cc0b20dcc6144eeb185c905.png
detection_source_url: https://github.com/novuhq/examples/blob/main/vue-nextjs-trigger-inapp-notifications/client/package.json
detection_source: vue-nextjs-trigger-inapp-notifications/client/package.json
last_updated_by: unicodeveloper
last_updated_on: 2023-04-20 17:26:15.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: https://github.com/novuhq/examples/blob/main/web-component-notification-center-example/back-end/package-lock.json
detection_source: react-dream-todo-app/BackEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.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_url: https://github.com/novuhq/examples/blob/main/vue-notification-center-example/package.json
detection_source: vue-notification-center-example/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-04-18 10:41:14.000000000 Z
- name: Vercel
description: It makes serverless application deployment easy
website_url: https://vercel.com/
open_source: false
hosted_saas: true
category: Application Utilities
sub_category: Static Web Hosting
image_url: https://img.stackshare.io/service/7618/bHjpwZem_400x400.png
detection_source_url: https://github.com/novuhq/examples/blob/main/vue-nextjs-trigger-inapp-notifications/client/vercel.json
detection_source: vue-nextjs-trigger-inapp-notifications/client/vercel.json
last_updated_by: unicodeveloper
last_updated_on: 2023-04-20 17:26:15.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: https://github.com/novuhq/examples/blob/main/react-dream-todo-app/FrontEnd/package-lock.json
detection_source: react-dream-todo-app/FrontEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.000000000 Z
- name: axios
description: Promise based HTTP client for the browser and node.js
website_url: https://github.com/mzabriskie/axios
version: 1.4.0
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: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: react-dream-todo-app/FrontEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.000000000 Z
- name: "@angular-devkit/build-angular"
description: Angular Webpack Build Facade
package_url: https://www.npmjs.com/@angular-devkit/build-angular
version: 15.2.9
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16162/default_77b54a203c743d16eddb6b6390cba17218454fa0.png
detection_source_url: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: novu-angular-notification-center/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-08-25 05:20:23.000000000 Z
- name: "@angular/animations"
description: Angular - animations integration with web-animations
package_url: https://www.npmjs.com/@angular/animations
version: 15.2.9
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16010/default_af9df0bc9fa88191d2fe609204c5bd7599c1a797.png
detection_source_url: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: novu-angular-notification-center/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-08-25 05:20:23.000000000 Z
- name: "@angular/cli"
description: CLI tool for Angular
package_url: https://www.npmjs.com/@angular/cli
version: 15.0.5
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16000/default_976847109ccfe67d00b33d9ff71329b6e82f5f89.png
detection_source_url: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: novu-angular-notification-center/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-08-25 05:20:23.000000000 Z
- name: "@angular/common"
description: Angular - commonly needed directives and services
package_url: https://www.npmjs.com/@angular/common
version: 15.2.9
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15913/default_ac622bc364a601d766b9a6f6039f191492f54d65.png
detection_source_url: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: novu-angular-notification-center/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-08-25 05:20:23.000000000 Z
- name: "@angular/compiler"
description: Angular - the compiler library
package_url: https://www.npmjs.com/@angular/compiler
version: 15.2.9
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15917/default_4040fefea2f98006727f63d042275b96a275ab2d.png
detection_source_url: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: novu-angular-notification-center/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-08-25 05:20:23.000000000 Z
- name: "@angular/compiler-cli"
description: Angular - the compiler CLI for Node.js
package_url: https://www.npmjs.com/@angular/compiler-cli
version: 15.2.9
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15927/default_e0a4fb1126d7400f419f0931cf1669947a5bc552.png
detection_source_url: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: novu-angular-notification-center/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-08-25 05:20:23.000000000 Z
- name: "@angular/forms"
description: Angular - directives and services for creating forms
package_url: https://www.npmjs.com/@angular/forms
version: 15.2.9
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15944/default_8b5680d4e916298d08363c291a0d6e34c07ceb15.png
detection_source_url: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: novu-angular-notification-center/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-08-25 05:20:23.000000000 Z
- name: "@angular/platform-browser"
description: Angular - library for using Angular in a web browser
package_url: https://www.npmjs.com/@angular/platform-browser
version: 15.2.9
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15921/default_54b691c123fc8979741e800e4dcd3936c0f3b246.png
detection_source_url: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: novu-angular-notification-center/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-08-25 05:20:23.000000000 Z
- name: "@angular/platform-browser-dynamic"
description: Angular - library for using Angular in a web browser with JIT compilation
package_url: https://www.npmjs.com/@angular/platform-browser-dynamic
version: 15.2.9
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15933/default_b45165a5d30e541ab11711a34a78209b3e8ed7fd.png
detection_source_url: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: novu-angular-notification-center/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-08-25 05:20:23.000000000 Z
- name: "@angular/router"
description: Angular - the routing library
package_url: https://www.npmjs.com/@angular/router
version: 15.2.9
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15965/default_8b5680d4e916298d08363c291a0d6e34c07ceb15.png
detection_source_url: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: novu-angular-notification-center/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-08-25 05:20:23.000000000 Z
- name: "@fortawesome/free-brands-svg-icons"
description: The iconic font, CSS, and SVG framework
package_url: https://www.npmjs.com/@fortawesome/free-brands-svg-icons
version: 6.3.0
license: CC-BY-4.0,MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/18314/default_8c7316b1ad57adb78204233fc4608152c3b49ac6.png
detection_source_url: https://github.com/novuhq/examples/blob/main/vue-nextjs-trigger-inapp-notifications/client/package-lock.json
detection_source: vue-nextjs-trigger-inapp-notifications/client/package.json
last_updated_by: unicodeveloper
last_updated_on: 2023-04-20 17:26:15.000000000 Z
- name: "@fortawesome/free-regular-svg-icons"
description: The iconic font, CSS, and SVG framework
package_url: https://www.npmjs.com/@fortawesome/free-regular-svg-icons
version: 6.3.0
license: CC-BY-4.0,MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/18157/default_63cbe387694d6d77dde61448de98c6bd2a9b18de.png
detection_source_url: https://github.com/novuhq/examples/blob/main/vue-nextjs-trigger-inapp-notifications/client/package-lock.json
detection_source: vue-nextjs-trigger-inapp-notifications/client/package.json
last_updated_by: unicodeveloper
last_updated_on: 2023-04-20 17:26:15.000000000 Z
- name: "@fortawesome/free-solid-svg-icons"
description: The iconic font, CSS, and SVG framework
package_url: https://www.npmjs.com/@fortawesome/free-solid-svg-icons
version: 6.3.0
license: CC-BY-4.0,MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16683/default_6dad4e42e12d47cc6edfbdea036dae12f91abebb.png
detection_source_url: https://github.com/novuhq/examples/blob/main/vue-nextjs-trigger-inapp-notifications/client/package-lock.json
detection_source: vue-nextjs-trigger-inapp-notifications/client/package.json
last_updated_by: unicodeveloper
last_updated_on: 2023-04-20 17:26:15.000000000 Z
- name: "@testing-library/jest-dom"
description: Custom jest matchers to test the state of the DOM
package_url: https://www.npmjs.com/@testing-library/jest-dom
version: 5.16.5
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/17424/default_1cdcda15ebb7caed879f8340bc212b44c4ec9dac.png
detection_source_url: https://github.com/novuhq/examples/blob/main/react-dream-todo-app/FrontEnd/package-lock.json
detection_source: react-dream-todo-app/FrontEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.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: 13.4.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: https://github.com/novuhq/examples/blob/main/react-dream-todo-app/FrontEnd/package-lock.json
detection_source: react-dream-todo-app/FrontEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.000000000 Z
- name: "@types/jasmine"
description: TypeScript definitions for Jasmine
package_url: https://www.npmjs.com/@types/jasmine
version: 4.3.5
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15924/default_ac622bc364a601d766b9a6f6039f191492f54d65.png
detection_source_url: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: novu-angular-notification-center/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-08-25 05:20:23.000000000 Z
- name: "@types/node"
description: TypeScript definitions for Node.js
package_url: https://www.npmjs.com/@types/node
version: 20.5.3
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: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: vue-notification-center-example/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-04-18 10:41:14.000000000 Z
- name: "@types/react"
description: TypeScript definitions for React
package_url: https://www.npmjs.com/@types/react
version: 18.2.21
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: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: novu-angular-notification-center/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-08-25 05:20:23.000000000 Z
- name: "@vue/eslint-config-prettier"
description: Eslint-config-prettier for Vue CLI
package_url: https://www.npmjs.com/@vue/eslint-config-prettier
version: 7.1.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16824/default_dc62f5e9b636403c2d19676924f5b6b881abcac8.png
detection_source_url: https://github.com/novuhq/examples/blob/main/vue-nextjs-trigger-inapp-notifications/client/package-lock.json
detection_source: vue-nextjs-trigger-inapp-notifications/client/package.json
last_updated_by: unicodeveloper
last_updated_on: 2023-04-20 17:26:15.000000000 Z
- name: bcryptjs
description: Optimized bcrypt in plain JavaScript with zero dependencies
package_url: https://www.npmjs.com/bcryptjs
version: 2.4.3
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16857/default_627f05e6a07ce29fc9f119417270f38e8aa5c5e2.png
detection_source_url: https://github.com/novuhq/examples/blob/main/react-dream-todo-app/BackEnd/package.json
detection_source: react-dream-todo-app/BackEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.000000000 Z
- name: body-parser
description: Node.js body parsing middleware
package_url: https://www.npmjs.com/body-parser
version: 1.20.2
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15906/default_7c39a83d4acd952df89b1ebfdb94c8646324fbf1.png
detection_source_url: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: react-dream-todo-app/BackEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.000000000 Z
- name: circular-json
description: JSON does not handle circular references. This version does
package_url: https://www.npmjs.com/circular-json
version: 0.5.9
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/18007/default_ab659b5159df20d1c32f07b936d63628134f5b3d.png
detection_source_url: https://github.com/novuhq/examples/blob/main/react-dream-todo-app/BackEnd/package.json
detection_source: react-dream-todo-app/BackEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.000000000 Z
- name: cors
description: Node.js CORS middleware
package_url: https://www.npmjs.com/cors
version: 2.8.5
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16165/default_41f04716a804e853d5c38a5b81ee0ea8a842ad82.png
detection_source_url: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: react-dream-todo-app/BackEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.000000000 Z
- name: eslint-config-next
description: ESLint configuration used by Next.js
package_url: https://www.npmjs.com/eslint-config-next
version: 13.2.3
open_source: false
hosted_saas: false
category: Build, Test, Deploy
sub_category: Package Managers
image_url: https://img.stackshare.io/package/npm/image.png
detection_source_url: https://github.com/novuhq/examples/blob/main/vue-nextjs-trigger-inapp-notifications/server-next/package.json
detection_source: vue-nextjs-trigger-inapp-notifications/server-next/package.json
last_updated_by: unicodeveloper
last_updated_on: 2023-04-20 17:26:15.000000000 Z
- name: eslint-plugin-vue
description: Official ESLint plugin for Vue.js
package_url: https://www.npmjs.com/eslint-plugin-vue
version: 8.7.1
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15950/default_f49d4c116f8ea0155f4d92673b084378bba02760.png
detection_source_url: https://github.com/novuhq/examples/blob/main/vue-nextjs-trigger-inapp-notifications/client/package-lock.json
detection_source: vue-nextjs-trigger-inapp-notifications/client/package.json
last_updated_by: unicodeveloper
last_updated_on: 2023-04-20 17:26:15.000000000 Z
- name: express
description: Fast, unopinionated, minimalist web framework
package_url: https://www.npmjs.com/express
version: 4.18.2
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15818/default_db4a7791d2f1174547374b9b587bc10fec088a5a.png
detection_source_url: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: react-dream-todo-app/BackEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.000000000 Z
- name: jasmine-core
description: Official packaging of Jasmine's core files for use by Node.js projects
package_url: https://www.npmjs.com/jasmine-core
version: 4.5.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15905/default_3af1504b6f77c55205ba630fe08c472f43b95f6e.png
detection_source_url: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: novu-angular-notification-center/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-04-18 10:41:14.000000000 Z
- name: json-server
description: Serves JSON files through REST routes
package_url: https://www.npmjs.com/json-server
version: 0.17.2
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/17570/default_661ab15cb9ea1663765f3e16ee70a1d2d50118d1.png
detection_source_url: https://github.com/novuhq/examples/blob/main/vue-nextjs-trigger-inapp-notifications/client/package-lock.json
detection_source: vue-nextjs-trigger-inapp-notifications/client/package.json
last_updated_by: unicodeveloper
last_updated_on: 2023-04-20 17:26:15.000000000 Z
- name: jsonwebtoken
description: JSON Web Token implementation
package_url: https://www.npmjs.com/jsonwebtoken
version: 9.0.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16155/default_77b54a203c743d16eddb6b6390cba17218454fa0.png
detection_source_url: https://github.com/novuhq/examples/blob/main/react-dream-todo-app/BackEnd/package.json
detection_source: react-dream-todo-app/BackEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.000000000 Z
- name: jwt-decode
description: Decode JWT tokens, mostly useful for browser applications
package_url: https://www.npmjs.com/jwt-decode
version: 3.1.2
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/17395/default_2cd7ed1c123f2fca074a6f4b16c4e73d5bfe82be.png
detection_source_url: https://github.com/novuhq/examples/blob/main/react-dream-todo-app/FrontEnd/package-lock.json
detection_source: react-dream-todo-app/FrontEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.000000000 Z
- name: karma-chrome-launcher
description: A Karma plugin. Launcher for Chrome and Chrome Canary
package_url: https://www.npmjs.com/karma-chrome-launcher
version: 3.1.1
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15860/default_6743ba96cf149a3c3c68a185199f9705d6eff80e.png
detection_source_url: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: novu-angular-notification-center/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-04-18 10:41:14.000000000 Z
- name: karma-coverage
description: A Karma plugin. Generate code coverage
package_url: https://www.npmjs.com/karma-coverage
version: 2.2.1
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15951/default_b45165a5d30e541ab11711a34a78209b3e8ed7fd.png
detection_source_url: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: novu-angular-notification-center/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-04-18 10:41:14.000000000 Z
- name: karma-jasmine
description: A Karma plugin - adapter for Jasmine testing framework
package_url: https://www.npmjs.com/karma-jasmine
version: 5.1.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15886/default_7c39a83d4acd952df89b1ebfdb94c8646324fbf1.png
detection_source_url: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: novu-angular-notification-center/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-04-18 10:41:14.000000000 Z
- name: karma-jasmine-html-reporter
description: A Karma plugin
package_url: https://www.npmjs.com/karma-jasmine-html-reporter
version: 2.0.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15999/default_7a465bc85b23fd837cbc038fd1d504632c41a884.png
detection_source_url: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: novu-angular-notification-center/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-04-18 10:41:14.000000000 Z
- name: moment
description: Parse, validate, manipulate, and display dates
package_url: https://www.npmjs.com/moment
version: 2.29.4
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15847/default_4479dbac220be99e50e724b2df6cf415241d71fd.png
detection_source_url: https://github.com/novuhq/examples/blob/main/react-dream-todo-app/FrontEnd/package-lock.json
detection_source: react-dream-todo-app/FrontEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.000000000 Z
- name: npm-run-all
description: A CLI tool to run multiple npm-scripts in parallel or sequential
package_url: https://www.npmjs.com/npm-run-all
version: 4.1.5
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15926/default_b45165a5d30e541ab11711a34a78209b3e8ed7fd.png
detection_source_url: https://github.com/novuhq/examples/blob/main/vue-notification-center-example/package.json
detection_source: vue-notification-center-example/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-04-18 10:41:14.000000000 Z
- name: react-datepicker
description: A simple and reusable datepicker component for React
package_url: https://www.npmjs.com/react-datepicker
version: 4.11.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/17239/default_183829c5079b84333a720d8590a328efc043ba0e.png
detection_source_url: https://github.com/novuhq/examples/blob/main/react-dream-todo-app/FrontEnd/package-lock.json
detection_source: react-dream-todo-app/FrontEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.000000000 Z
- name: react-dom
description: React package for working with the DOM
package_url: https://www.npmjs.com/react-dom
version: 17.0.2
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15808/default_14fd11531839d935f920b6d55bd6f3528c890ad7.png
detection_source_url: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: react-dream-todo-app/FrontEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.000000000 Z
- name: react-icons
description: SVG React icons of popular icon packs using ES6 imports
package_url: https://www.npmjs.com/react-icons
version: 4.8.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16909/default_7b9968788548874538c601457e8dcd9c74bd2051.png
detection_source_url: https://github.com/novuhq/examples/blob/main/react-dream-todo-app/FrontEnd/package-lock.json
detection_source: react-dream-todo-app/FrontEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.000000000 Z
- name: react-redux
description: Official React bindings for Redux
package_url: https://www.npmjs.com/react-redux
version: 8.0.5
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15984/default_f49d4c116f8ea0155f4d92673b084378bba02760.png
detection_source_url: https://github.com/novuhq/examples/blob/main/react-dream-todo-app/FrontEnd/package-lock.json
detection_source: react-dream-todo-app/FrontEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.000000000 Z
- name: react-router-dom
description: DOM bindings for React Router
package_url: https://www.npmjs.com/react-router-dom
version: 6.9.0
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/16025/default_e25d1fbb04a118c79fb444294461417342bd03bf.png
detection_source_url: https://github.com/novuhq/examples/blob/main/react-dream-todo-app/FrontEnd/package-lock.json
detection_source: react-dream-todo-app/FrontEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.000000000 Z
- name: react-scripts
description: Configuration and scripts for Create React App
package_url: https://www.npmjs.com/react-scripts
version: 5.0.1
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15985/default_8b5680d4e916298d08363c291a0d6e34c07ceb15.png
detection_source_url: https://github.com/novuhq/examples/blob/main/react-dream-todo-app/FrontEnd/package-lock.json
detection_source: react-dream-todo-app/FrontEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.000000000 Z
- name: react-toastify
description: React notification made easy
package_url: https://www.npmjs.com/react-toastify
version: 9.1.2
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/18461/default_5ff724c0ff89bb42698aa80ef3403008cb0d8f72.png
detection_source_url: https://github.com/novuhq/examples/blob/main/react-dream-todo-app/FrontEnd/package-lock.json
detection_source: react-dream-todo-app/FrontEnd/package.json
last_updated_by: Sumit Saurabh
last_updated_on: 2023-04-27 18:11:25.000000000 Z
- name: tslib
description: Runtime library for TypeScript helper functions
package_url: https://www.npmjs.com/tslib
version: 1.14.1
license: 0BSD
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15853/default_97d4687bd07ff1bb963fd566c84e7cbf7c73bbee.png
detection_source_url: https://github.com/novuhq/examples/blob/main/novu-angular-notification-center/package-lock.json
detection_source: novu-angular-notification-center/package.json
last_updated_by: Pawan Jain
last_updated_on: 2023-04-18 10:41:14.000000000 Z
- name: vite
description: Native-ESM powered web dev build tool
package_url: https://www.npmjs.com/vite
version: 2.9.15
open_source: false
hosted_saas: false
category: Build, Test, Deploy
sub_category: Package Managers
image_url: https://img.stackshare.io/package/npm/image.png
detection_source_url: https://github.com/novuhq/examples/blob/main/vue-nextjs-trigger-inapp-notifications/client/package-lock.json
detection_source: vue-nextjs-trigger-inapp-notifications/client/package.json
last_updated_by: unicodeveloper
last_updated_on: 2023-04-20 17:26:15.000000000 Z
vulnerabilities:
- name: Vite Server Options (server.fs.deny) can be bypassed using double forward-slash
(//)
cve_id: CVE-2023-34092
cve_url: https://github.com/advisories/GHSA-353f-5xf4-qw67
detected_date: Nov 23
severity: high
first_patched: 2.9.16
- name: vue
description: Vue
package_url: https://www.npmjs.com/vue
version: 3.2.47
license: MIT
open_source: true
hosted_saas: false
category: Libraries
sub_category: npm Packages
image_url: https://img.stackshare.io/package/15844/default_b71c906aeda030a5e2f1fe40bf12a93be52404ab.png
detection_source_url: https://github.com/novuhq/examples/blob/main/vue-nextjs-trigger-inapp-notifications/client/package-lock.json
detection_source: vue-nextjs-trigger-inapp-notifications/client/package.json
last_updated_by: unicodeveloper
last_updated_on: 2023-04-20 17:26:15.000000000 Z
- name: vue-router