openvidu-server dashboard: upgrade to Angular 14

pull/772/head
pabloFuente 2022-12-01 16:24:54 +01:00
parent e993cc7eb3
commit 763c7cba26
5 changed files with 24204 additions and 23125 deletions

View File

@ -15,7 +15,6 @@
"index": "src/index.html",
"main": "src/main.ts",
"tsConfig": "src/tsconfig.app.json",
"showCircularDependencies": false,
"polyfills": "src/polyfills.ts",
"assets": [
"src/assets",
@ -108,7 +107,6 @@
}
}
},
"defaultProject": "openvidu-server-frontend",
"schematics": {
"@schematics/angular:component": {
"prefix": "app",

File diff suppressed because it is too large Load Diff

View File

@ -1,55 +1,55 @@
{
"dependencies": {
"@angular/animations": "13.3.0",
"@angular/cdk": "13.3.0",
"@angular/common": "13.3.0",
"@angular/compiler": "13.3.0",
"@angular/core": "13.3.0",
"@angular/flex-layout": "13.0.0-beta.38",
"@angular/forms": "13.3.0",
"@angular/material": "13.3.0",
"@angular/platform-browser": "13.3.0",
"@angular/platform-browser-dynamic": "13.3.0",
"@angular/router": "13.3.0",
"core-js": "3.21.1",
"jquery": "3.6.0",
"openvidu-browser": "2.24.0",
"rxjs": "7.5.5",
"tslib": "2.3.1",
"zone.js": "0.11.5"
},
"devDependencies": {
"@angular-devkit/build-angular": "13.3.0",
"@angular/cli": "13.3.0",
"@angular/compiler-cli": "13.3.0",
"@angular/language-service": "13.3.0",
"@types/jasmine": "3.6.6",
"@types/node": "17.0.21",
"codelyzer": "6.0.2",
"jasmine-core": "4.0.1",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.3.17",
"karma-chrome-launcher": "3.1.1",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.7.0",
"protractor": "7.0.0",
"ts-node": "10.7.0",
"tslint": "6.1.3",
"typescript": "4.5.4"
},
"license": "Apache-2.0",
"name": "frontend",
"private": true,
"scripts": {
"build": "./node_modules/.bin/ng build --base-href /dashboard/ --output-path ../main/resources/static/dashboard",
"build-prod": "./node_modules/.bin/ng build --configuration production --base-href /dashboard/ --output-path ../main/resources/static/dashboard",
"e2e": "ng e2e",
"lint": "ng lint",
"ng": "ng",
"postinstall": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points",
"start": "ng serve",
"test": "ng test"
},
"version": "0.0.0"
"dependencies": {
"@angular/animations": "14.2.12",
"@angular/cdk": "14.2.7",
"@angular/common": "14.2.12",
"@angular/compiler": "14.2.12",
"@angular/core": "14.2.12",
"@angular/flex-layout": "14.0.0-beta.41",
"@angular/forms": "14.2.12",
"@angular/material": "14.2.7",
"@angular/platform-browser": "14.2.12",
"@angular/platform-browser-dynamic": "14.2.12",
"@angular/router": "14.2.12",
"core-js": "3.21.1",
"jquery": "3.6.0",
"openvidu-browser": "2.24.0",
"rxjs": "7.5.5",
"tslib": "2.3.1",
"zone.js": "0.11.5"
},
"devDependencies": {
"@angular-devkit/build-angular": "14.2.10",
"@angular/cli": "14.2.10",
"@angular/compiler-cli": "14.2.12",
"@angular/language-service": "14.2.12",
"@types/jasmine": "3.6.6",
"@types/node": "17.0.21",
"codelyzer": "6.0.2",
"jasmine-core": "4.0.1",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.3.17",
"karma-chrome-launcher": "3.1.1",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.7.0",
"protractor": "7.0.0",
"ts-node": "10.7.0",
"tslint": "6.1.3",
"typescript": "4.8.4"
},
"license": "Apache-2.0",
"name": "frontend",
"private": true,
"scripts": {
"build": "./node_modules/.bin/ng build --base-href /dashboard/ --output-path ../main/resources/static/dashboard",
"build-prod": "./node_modules/.bin/ng build --configuration production --base-href /dashboard/ --output-path ../main/resources/static/dashboard",
"e2e": "ng e2e",
"lint": "ng lint",
"ng": "ng",
"postinstall": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points",
"start": "ng serve",
"test": "ng test"
},
"version": "0.0.0"
}

View File

@ -2,7 +2,7 @@
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/spec",
"target": "es5",
"target": "es2020",
"baseUrl": "",
"types": [
"jasmine",

View File

@ -8,7 +8,7 @@
"declaration": false,
"moduleResolution": "node",
"experimentalDecorators": true,
"target": "es2018",
"target": "es2020",
"typeRoots": [
"node_modules/@types"
],