Skip to content
Snippets Groups Projects
Commit bb490cf5 authored by Sam Kagan's avatar Sam Kagan
Browse files

Merge branch 'remove-deprecated-fe-deps' into 'main'

Removed deprecated FE dependencies, updated others to fix dep resolution

See merge request !1459
parents b6878e2c 4782973b
No related branches found
No related tags found
1 merge request!1459Removed deprecated FE dependencies, updated others to fix dep resolution
Pipeline #11905 passed
This diff is collapsed.
......@@ -21,14 +21,13 @@
"@angular/platform-browser": "~12.2.11",
"@angular/platform-browser-dynamic": "~12.2.11",
"@angular/router": "~12.2.11",
"@ng-bootstrap/ng-bootstrap": "^4.2.1",
"@ng-bootstrap/ng-bootstrap": "^10.0.0",
"@rx-angular/state": "^1.7.0",
"bootstrap": "^4.3.1",
"bootstrap": "^4.5.0",
"core-js": "^2.5.4",
"dayjs": "^1.10.6",
"hex-encode-decode": "^1.0.0",
"jquery": "^3.4.1",
"ng-angular": "0.0.1",
"ng-bootstrap": "^0.46.0",
"popper": "^1.0.1",
"rxjs": "~6.6.3",
......@@ -47,7 +46,6 @@
"@types/node": "^8.10.66",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"codelyzer": "^5.0.1",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
......@@ -61,7 +59,6 @@
"prettier": "2.2.1",
"protractor": "~7.0.0",
"ts-node": "~7.0.0",
"tslint": "~6.1.3",
"typescript": "~4.3.5"
}
}
{
"extends": "tslint:recommended",
"rulesDirectory": [
"codelyzer"
],
"rules": {
"array-type": false,
"arrow-parens": false,
"deprecation": {
"severity": "warn"
},
"import-blacklist": [
true,
"rxjs/Rx"
],
"interface-name": false,
"max-classes-per-file": false,
"max-line-length": [
true,
140
],
"member-access": false,
"member-ordering": [
true,
{
"order": [
"static-field",
"instance-field",
"static-method",
"instance-method"
]
}
],
"no-consecutive-blank-lines": false,
"no-console": [
true,
"debug",
"info",
"time",
"timeEnd",
"trace"
],
"no-empty": false,
"no-inferrable-types": [
true,
"ignore-params"
],
"no-non-null-assertion": true,
"no-redundant-jsdoc": true,
"no-switch-case-fall-through": true,
"no-use-before-declare": true,
"no-var-requires": false,
"object-literal-key-quotes": [
true,
"as-needed"
],
"object-literal-sort-keys": false,
"ordered-imports": false,
"quotemark": [
true,
"single"
],
"trailing-comma": false,
"no-output-on-prefix": true,
"no-inputs-metadata-property": true,
"no-outputs-metadata-property": true,
"no-host-metadata-property": true,
"no-input-rename": true,
"no-output-rename": true,
"use-lifecycle-interface": true,
"use-pipe-transform-interface": true,
"component-class-suffix": true,
"directive-class-suffix": true
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment