I am currently working on integrating Social Login functionality into my app.
I have attempted to incorporate the following:
npm install --save angular-6-social-login-fixed
npm install --save angular-6-social-login
npm install --save angular-6-social-login-v2
However, upon running >npm start
added 1 package from 1 contributor, removed 36 packages, updated 1 package and audited 23664 packages in 9.355s
found 45 vulnerabilities (12 low, 27 moderate, 6 high)
run `npm audit fix` to fix them, or `npm audit` for details
(without making any changes to my code) I encountered the error:
error TS2307: Cannot find module 'moment'.
In addition, I came across several errors related to my existing modules such as:
error TS2315: Type 'CalendarEvent' is not generic.
error TS2339: Property 'id' does not exist on type 'CalendarEvent'.
calendarUtils"' has no exported member 'GetWeekViewArgs'.
This is a list of my dependencies versions:
"@angular/cdk": "github:angular/cdk-builds",
"@angular/common": "^6.1.0",
"@angular/compiler": "^6.1.0",
"@angular/core": "^6.1.0",
"@angular/elements": "^7.2.0",
"@angular/forms": "^6.1.0",
"@angular/http": "^6.1.0",
"@angular/material": "github:angular/material2-builds",
Can anyone help me identify what could be missing?