Skip to content

Commit

Permalink
Fix linting errors
Browse files Browse the repository at this point in the history
Change-Id: I6ec2fb0765f0d9977c80328f29aba87a1688a628
  • Loading branch information
Frida Jacobsson committed Nov 13, 2023
1 parent cb4d180 commit 8f8f0f6
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 11 deletions.
11 changes: 8 additions & 3 deletions plugins/jira-dashboard-backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,24 @@
},
"dependencies": {
"@backstage/backend-common": "^0.19.8",
"@backstage/backend-plugin-api": "^0.6.6",
"@backstage/catalog-client": "^1.4.5",
"@backstage/config": "^1.1.1",
"@backstage/plugin-auth-node": "^0.4.0",
"@backstage/plugin-permission-common": "^0.7.9",
"@internal/plugin-jira-dashboard-common": "^0.1.0",
"@types/express": "*",
"express": "^4.17.1",
"express-promise-router": "^4.1.0",
"winston": "^3.2.1",
"node-fetch": "^2.6.7",
"winston": "^3.2.1",
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.23.0",
"@types/supertest": "^2.0.12",
"supertest": "^6.2.4",
"msw": "^1.0.0"
"msw": "^1.0.0",
"supertest": "^6.2.4"
},
"files": [
"dist"
Expand Down
8 changes: 4 additions & 4 deletions plugins/jira-dashboard-backend/src/service/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ import { IdentityApi } from '@backstage/plugin-auth-node';

import { getDefaultFilters } from '../filters';
import {
COMPONENT_ANNOTATION,
type COMPONENT_ANNOTATION,
FILTER_ANNOTATION,
Filter,
JiraResponse,
type Filter,
type JiraResponse,
PROJECT_KEY_ANNOTATION,
Project,
type Project,
} from '@internal/plugin-jira-dashboard-common';
import stream from 'stream';
import { getProjectAvatar } from '../api';
Expand Down
6 changes: 3 additions & 3 deletions plugins/jira-dashboard-backend/src/service/service.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { CacheClient } from '@backstage/backend-common';
import { Config } from '@backstage/config';
import {
Filter,
JiraDataResponse,
Project,
type Filter,
type JiraDataResponse,
type Project,
} from '@internal/plugin-jira-dashboard-common';
import {
getFilterById,
Expand Down
7 changes: 6 additions & 1 deletion plugins/jira-dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,17 @@
"postpack": "backstage-cli package postpack"
},
"dependencies": {
"@backstage/catalog-model": "^1.4.3",
"@backstage/core-components": "^0.13.6",
"@backstage/core-plugin-api": "^1.7.0",
"@internal/plugin-jira-dashboard-common": "0.1.0",
"@backstage/errors": "^1.2.3",
"@backstage/plugin-catalog-react": "^1.8.5",
"@backstage/theme": "^0.4.3",
"@internal/plugin-jira-dashboard-common": "0.1.0",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "4.0.0-alpha.61",
"lodash": "^4.17.21",
"react-use": "^17.2.4"
},
"peerDependencies": {
Expand All @@ -40,6 +44,7 @@
"@backstage/cli": "^0.23.0",
"@backstage/core-app-api": "^1.11.0",
"@backstage/dev-utils": "^1.0.22",
"@backstage/plugin-catalog-react": "^1.8.5",
"@backstage/test-utils": "^1.4.4",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
Expand Down

0 comments on commit 8f8f0f6

Please sign in to comment.