Angular 10 version running

This commit is contained in:
Miguel Veloso 2021-06-17 23:23:52 +01:00
parent c7f482d3f6
commit 066b055e36
3 changed files with 2177 additions and 22638 deletions

File diff suppressed because it is too large Load Diff

@ -27,15 +27,15 @@
"lint:ts": "tslint -c tslint.json Client/**/*.ts"
},
"dependencies": {
"@angular/animations": "9.1.13",
"@angular/common": "9.1.13",
"@angular/compiler": "9.1.13",
"@angular/core": "9.1.13",
"@angular/forms": "9.1.13",
"@angular/platform-browser": "9.1.13",
"@angular/platform-browser-dynamic": "9.1.13",
"@angular/platform-server": "9.1.13",
"@angular/router": "9.1.13",
"@angular/animations": "10.2.5",
"@angular/common": "10.2.5",
"@angular/compiler": "10.2.5",
"@angular/core": "10.2.5",
"@angular/forms": "10.2.5",
"@angular/platform-browser": "10.2.5",
"@angular/platform-browser-dynamic": "10.2.5",
"@angular/platform-server": "10.2.5",
"@angular/router": "10.2.5",
"@microsoft/signalr": "3.0.1",
"@ng-bootstrap/ng-bootstrap": "^6.2.0",
"@popperjs/core": "2.0.0",
@ -47,7 +47,7 @@
"font-awesome": "4.7.0",
"isomorphic-fetch": "2.2.1",
"jquery": "3.4.1",
"ngx-toastr": "^11.3.3",
"ngx-toastr": "^13.2.0",
"normalize.css": "8.0.0",
"popper.js": "1.16.1",
"rxjs": "~6.6.7",
@ -57,10 +57,10 @@
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.15",
"@angular/cli": "9.1.15",
"@angular/compiler-cli": "9.1.13",
"@angular/language-service": "9.1.13",
"@angular-devkit/build-angular": "~0.1002.3",
"@angular/cli": "10.2.3",
"@angular/compiler-cli": "10.2.5",
"@angular/language-service": "10.2.5",
"@types/core-js": "2.5.0",
"@types/hammerjs": "2.0.35",
"@types/jasmine": "^3.3.12",
@ -87,7 +87,7 @@
"ts-node": "~7.0.1",
"tslint": "^5.14.0",
"typedoc": "^0.15.0",
"typescript": "3.8.3",
"typescript": "4.0.8",
"url-loader": "1.1.1",
"webpack": "^4.29.6"
}

@ -9,6 +9,7 @@ FROM ${NODE_IMAGE} as node-build
WORKDIR /web/src
COPY Web/WebSPA/Client/package.json .
COPY Web/WebSPA/Client/package-lock.json .
RUN npm install -g npm@6
RUN npm install
COPY Web/WebSPA/Client .
RUN npm run build:prod