mirror of https://github.com/OpenVidu/openvidu.git
openvidu-server dashboard: upgrade to Angular 14
parent
e993cc7eb3
commit
763c7cba26
|
@ -15,7 +15,6 @@
|
||||||
"index": "src/index.html",
|
"index": "src/index.html",
|
||||||
"main": "src/main.ts",
|
"main": "src/main.ts",
|
||||||
"tsConfig": "src/tsconfig.app.json",
|
"tsConfig": "src/tsconfig.app.json",
|
||||||
"showCircularDependencies": false,
|
|
||||||
"polyfills": "src/polyfills.ts",
|
"polyfills": "src/polyfills.ts",
|
||||||
"assets": [
|
"assets": [
|
||||||
"src/assets",
|
"src/assets",
|
||||||
|
@ -108,7 +107,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"defaultProject": "openvidu-server-frontend",
|
|
||||||
"schematics": {
|
"schematics": {
|
||||||
"@schematics/angular:component": {
|
"@schematics/angular:component": {
|
||||||
"prefix": "app",
|
"prefix": "app",
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,55 +1,55 @@
|
||||||
{
|
{
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@angular/animations": "13.3.0",
|
"@angular/animations": "14.2.12",
|
||||||
"@angular/cdk": "13.3.0",
|
"@angular/cdk": "14.2.7",
|
||||||
"@angular/common": "13.3.0",
|
"@angular/common": "14.2.12",
|
||||||
"@angular/compiler": "13.3.0",
|
"@angular/compiler": "14.2.12",
|
||||||
"@angular/core": "13.3.0",
|
"@angular/core": "14.2.12",
|
||||||
"@angular/flex-layout": "13.0.0-beta.38",
|
"@angular/flex-layout": "14.0.0-beta.41",
|
||||||
"@angular/forms": "13.3.0",
|
"@angular/forms": "14.2.12",
|
||||||
"@angular/material": "13.3.0",
|
"@angular/material": "14.2.7",
|
||||||
"@angular/platform-browser": "13.3.0",
|
"@angular/platform-browser": "14.2.12",
|
||||||
"@angular/platform-browser-dynamic": "13.3.0",
|
"@angular/platform-browser-dynamic": "14.2.12",
|
||||||
"@angular/router": "13.3.0",
|
"@angular/router": "14.2.12",
|
||||||
"core-js": "3.21.1",
|
"core-js": "3.21.1",
|
||||||
"jquery": "3.6.0",
|
"jquery": "3.6.0",
|
||||||
"openvidu-browser": "2.24.0",
|
"openvidu-browser": "2.24.0",
|
||||||
"rxjs": "7.5.5",
|
"rxjs": "7.5.5",
|
||||||
"tslib": "2.3.1",
|
"tslib": "2.3.1",
|
||||||
"zone.js": "0.11.5"
|
"zone.js": "0.11.5"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@angular-devkit/build-angular": "13.3.0",
|
"@angular-devkit/build-angular": "14.2.10",
|
||||||
"@angular/cli": "13.3.0",
|
"@angular/cli": "14.2.10",
|
||||||
"@angular/compiler-cli": "13.3.0",
|
"@angular/compiler-cli": "14.2.12",
|
||||||
"@angular/language-service": "13.3.0",
|
"@angular/language-service": "14.2.12",
|
||||||
"@types/jasmine": "3.6.6",
|
"@types/jasmine": "3.6.6",
|
||||||
"@types/node": "17.0.21",
|
"@types/node": "17.0.21",
|
||||||
"codelyzer": "6.0.2",
|
"codelyzer": "6.0.2",
|
||||||
"jasmine-core": "4.0.1",
|
"jasmine-core": "4.0.1",
|
||||||
"jasmine-spec-reporter": "7.0.0",
|
"jasmine-spec-reporter": "7.0.0",
|
||||||
"karma": "6.3.17",
|
"karma": "6.3.17",
|
||||||
"karma-chrome-launcher": "3.1.1",
|
"karma-chrome-launcher": "3.1.1",
|
||||||
"karma-coverage-istanbul-reporter": "3.0.3",
|
"karma-coverage-istanbul-reporter": "3.0.3",
|
||||||
"karma-jasmine": "4.0.1",
|
"karma-jasmine": "4.0.1",
|
||||||
"karma-jasmine-html-reporter": "1.7.0",
|
"karma-jasmine-html-reporter": "1.7.0",
|
||||||
"protractor": "7.0.0",
|
"protractor": "7.0.0",
|
||||||
"ts-node": "10.7.0",
|
"ts-node": "10.7.0",
|
||||||
"tslint": "6.1.3",
|
"tslint": "6.1.3",
|
||||||
"typescript": "4.5.4"
|
"typescript": "4.8.4"
|
||||||
},
|
},
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"name": "frontend",
|
"name": "frontend",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "./node_modules/.bin/ng build --base-href /dashboard/ --output-path ../main/resources/static/dashboard",
|
"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",
|
"build-prod": "./node_modules/.bin/ng build --configuration production --base-href /dashboard/ --output-path ../main/resources/static/dashboard",
|
||||||
"e2e": "ng e2e",
|
"e2e": "ng e2e",
|
||||||
"lint": "ng lint",
|
"lint": "ng lint",
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"postinstall": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points",
|
"postinstall": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points",
|
||||||
"start": "ng serve",
|
"start": "ng serve",
|
||||||
"test": "ng test"
|
"test": "ng test"
|
||||||
},
|
},
|
||||||
"version": "0.0.0"
|
"version": "0.0.0"
|
||||||
}
|
}
|
|
@ -2,7 +2,7 @@
|
||||||
"extends": "../tsconfig.json",
|
"extends": "../tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "../out-tsc/spec",
|
"outDir": "../out-tsc/spec",
|
||||||
"target": "es5",
|
"target": "es2020",
|
||||||
"baseUrl": "",
|
"baseUrl": "",
|
||||||
"types": [
|
"types": [
|
||||||
"jasmine",
|
"jasmine",
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
"declaration": false,
|
"declaration": false,
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
"experimentalDecorators": true,
|
"experimentalDecorators": true,
|
||||||
"target": "es2018",
|
"target": "es2020",
|
||||||
"typeRoots": [
|
"typeRoots": [
|
||||||
"node_modules/@types"
|
"node_modules/@types"
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in New Issue