Update client dependencies
This commit is contained in:
parent
4c8ef0ec68
commit
576ddf645f
3 changed files with 2233 additions and 1075 deletions
|
@ -31,7 +31,7 @@
|
||||||
"punycode": "^1.4.1"
|
"punycode": "^1.4.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@angular-devkit/build-angular": "~0.802.0",
|
"@angular-devkit/build-angular": "~0.803.12",
|
||||||
"@angular/animations": "~8.2.0",
|
"@angular/animations": "~8.2.0",
|
||||||
"@angular/cdk": "^8.1.1",
|
"@angular/cdk": "^8.1.1",
|
||||||
"@angular/cli": "~8.3.0",
|
"@angular/cli": "~8.3.0",
|
||||||
|
@ -66,9 +66,9 @@
|
||||||
"@types/sanitize-html": "1.18.0",
|
"@types/sanitize-html": "1.18.0",
|
||||||
"@types/socket.io-client": "^1.4.32",
|
"@types/socket.io-client": "^1.4.32",
|
||||||
"@types/video.js": "^7.2.5",
|
"@types/video.js": "^7.2.5",
|
||||||
"@types/webtorrent": "^0.98.4",
|
"@types/webtorrent": "^0.107.0",
|
||||||
"angular2-hotkeys": "^2.1.2",
|
"angular2-hotkeys": "^2.1.2",
|
||||||
"angularx-qrcode": "^1.6.4",
|
"angularx-qrcode": "^1.7.0-beta.5",
|
||||||
"awesome-typescript-loader": "5.2.1",
|
"awesome-typescript-loader": "5.2.1",
|
||||||
"bootstrap": "^4.1.3",
|
"bootstrap": "^4.1.3",
|
||||||
"buffer": "^5.1.0",
|
"buffer": "^5.1.0",
|
||||||
|
@ -95,8 +95,8 @@
|
||||||
"linkifyjs": "^2.1.5",
|
"linkifyjs": "^2.1.5",
|
||||||
"lodash-es": "^4.17.4",
|
"lodash-es": "^4.17.4",
|
||||||
"markdown-it": "^9.0.1",
|
"markdown-it": "^9.0.1",
|
||||||
"ngx-chips": "2.0.2",
|
"ngx-chips": "2.1.0",
|
||||||
"ngx-clipboard": "12.2.0",
|
"ngx-clipboard": "12.2.1",
|
||||||
"ngx-pipes": "^2.1.7",
|
"ngx-pipes": "^2.1.7",
|
||||||
"node-sass": "^4.9.3",
|
"node-sass": "^4.9.3",
|
||||||
"npm-font-source-sans-pro": "^1.0.2",
|
"npm-font-source-sans-pro": "^1.0.2",
|
||||||
|
@ -110,12 +110,12 @@
|
||||||
"raw-loader": "^1",
|
"raw-loader": "^1",
|
||||||
"rxjs": "^6.5.2",
|
"rxjs": "^6.5.2",
|
||||||
"sanitize-html": "^1.18.4",
|
"sanitize-html": "^1.18.4",
|
||||||
"sass-loader": "^7.1.0",
|
"sass-loader": "7",
|
||||||
"sass-resources-loader": "^2.0.0",
|
"sass-resources-loader": "^2.0.0",
|
||||||
"socket.io-client": "^2.2.0",
|
"socket.io-client": "^2.2.0",
|
||||||
"stream-browserify": "^2.0.1",
|
"stream-browserify": "^2.0.1",
|
||||||
"stream-http": "^3.0.0",
|
"stream-http": "^3.0.0",
|
||||||
"terser-webpack-plugin": "^1.1.0",
|
"terser-webpack-plugin": "^2.1.3",
|
||||||
"tslint": "^5.7.0",
|
"tslint": "^5.7.0",
|
||||||
"tslint-angular": "^3.0.2",
|
"tslint-angular": "^3.0.2",
|
||||||
"tslint-config-standard": "^8.0.1",
|
"tslint-config-standard": "^8.0.1",
|
||||||
|
@ -125,10 +125,10 @@
|
||||||
"videojs-contrib-quality-levels": "^2.0.9",
|
"videojs-contrib-quality-levels": "^2.0.9",
|
||||||
"videojs-dock": "^2.0.2",
|
"videojs-dock": "^2.0.2",
|
||||||
"videojs-hotkeys": "^0.2.21",
|
"videojs-hotkeys": "^0.2.21",
|
||||||
"videostream": "~3.1",
|
"videostream": "~3.2.1",
|
||||||
"webpack-bundle-analyzer": "^3.0.2",
|
"webpack-bundle-analyzer": "^3.0.2",
|
||||||
"webpack-cli": "^3.0.8",
|
"webpack-cli": "^3.0.8",
|
||||||
"webtorrent": "^0.105.1",
|
"webtorrent": "^0.107.16",
|
||||||
"whatwg-fetch": "^3.0.0",
|
"whatwg-fetch": "^3.0.0",
|
||||||
"zone.js": "~0.10.0"
|
"zone.js": "~0.10.0"
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
* BROWSER POLYFILLS
|
* BROWSER POLYFILLS
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import 'core-js/es7/object'
|
import 'core-js/es/object'
|
||||||
|
|
||||||
/** IE10 and IE11 requires the following for NgClass support on SVG elements */
|
/** IE10 and IE11 requires the following for NgClass support on SVG elements */
|
||||||
// import 'classlist.js'; // Run `npm install --save classlist.js`.
|
// import 'classlist.js'; // Run `npm install --save classlist.js`.
|
||||||
|
|
3288
client/yarn.lock
3288
client/yarn.lock
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue