Update angular and npm packages

This commit is contained in:
2022-12-05 14:34:48 +01:00
parent fb823e06cd
commit 7e16ac3f2d
4 changed files with 1344 additions and 1313 deletions

View File

@@ -39,13 +39,13 @@
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
"maximumWarning": "2mb",
"maximumError": "3mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
"maximumWarning": "4kb",
"maximumError": "8kb"
}
],
"fileReplacements": [

File diff suppressed because it is too large Load Diff

View File

@@ -11,27 +11,27 @@
"private": true,
"dependencies": {
"@abacritt/angularx-social-login": "^1.2.5",
"@angular/animations": "^15.0.1",
"@angular/cdk": "^15.0.0",
"@angular/common": "^15.0.1",
"@angular/compiler": "^15.0.1",
"@angular/core": "^15.0.1",
"@angular/forms": "^15.0.1",
"@angular/material": "^15.0.0",
"@angular/platform-browser": "^15.0.1",
"@angular/platform-browser-dynamic": "^15.0.1",
"@angular/pwa": "^15.0.1",
"@angular/router": "^15.0.1",
"@angular/animations": "^15.0.2",
"@angular/cdk": "^15.0.1",
"@angular/common": "^15.0.2",
"@angular/compiler": "^15.0.2",
"@angular/core": "^15.0.2",
"@angular/forms": "^15.0.2",
"@angular/material": "^15.0.1",
"@angular/platform-browser": "^15.0.2",
"@angular/platform-browser-dynamic": "^15.0.2",
"@angular/pwa": "^15.0.2",
"@angular/router": "^15.0.2",
"jwt-decode": "^3.1.2",
"moment": "^2.29.4",
"rxjs": "~7.5.0",
"rxjs": "^7.6.0",
"zone.js": "^0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.0.1",
"@angular/cli": "~15.0.1",
"@angular/compiler-cli": "^15.0.1",
"@types/jasmine": "^4.3.0",
"@angular-devkit/build-angular": "^15.0.2",
"@angular/cli": "~15.0.2",
"@angular/compiler-cli": "^15.0.2",
"@types/jasmine": "^4.3.1",
"jasmine-core": "^4.5.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
@@ -39,6 +39,6 @@
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"tslib": "^2.4.1",
"typescript": "^4.8.1"
"typescript": "^4.8.4"
}
}

View File

@@ -33,7 +33,7 @@ export class LoginPageComponent implements OnInit {
async handleCredentialResponse(response: any) {
// Here will be your response from Google.
console.log(response);
const responsePayload = decodeJwtResponse(response.credential);
// const responsePayload = decodeJwtResponse(response.credential);
}
login() {