Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Client App - Create React App - Upgrade dependencies #1281

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54,584 changes: 43,115 additions & 11,469 deletions starsky/starsky/clientapp/package-lock.json

Large diffs are not rendered by default.

14 changes: 11 additions & 3 deletions starsky/starsky/clientapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,27 +22,35 @@
"update:install": "npx --yes npm-check-updates -u && npm install"
},
"dependencies": {
"@reach/router": "^1.3.4",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"core-js": "^3.33.0",
"leaflet": "^1.9.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.16.0"
"react-router-dom": "^6.16.0",
"react-scripts": "5.0.1",
"typescript": "^4.9.5"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.4.6",
"@storybook/addon-interactions": "^7.4.6",
"@storybook/addon-links": "^7.4.6",
"@storybook/blocks": "^7.4.6",
"@storybook/builder-vite": "^7.4.6",
"@storybook/react": "^7.4.6",
"@storybook/react": "^7.5.3",
"@storybook/react-vite": "^7.4.6",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.5",
"@types/leaflet": "^1.9.6",
"@types/node": "^20.8.2",
"@types/react": "^18.2.24",
"@types/react-dom": "^18.2.8",
"@typescript-eslint/eslint-plugin": "^6.7.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ interface IMenuOptionProps {
setEnableMoreMenu?: React.Dispatch<React.SetStateAction<boolean>>;
}

// eslint-disable-next-line react/display-name
const MenuOption: React.FunctionComponent<IMenuOptionProps> = memo(
({
localization,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ interface IDetailViewSidebarSelectionListProps {
}

const ArchiveSidebarSelectionList: React.FunctionComponent<IDetailViewSidebarSelectionListProps> =
// eslint-disable-next-line react/display-name
memo((props) => {
// content
const settings = useGlobalSettings();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ interface IMenuOptionMoveToTrashProps {
* Used from Archive and Search
*/
const MenuOptionMoveToTrash: React.FunctionComponent<IMenuOptionMoveToTrashProps> =
// eslint-disable-next-line react/display-name
memo(({ state, dispatch, select, setSelect, isReadOnly }) => {
const settings = useGlobalSettings();
const language = new Language(settings.language);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ function GetVideoClass(isPaused: boolean, isStarted: boolean): string {
}
}

// eslint-disable-next-line react/display-name
const DetailViewMp4: React.FunctionComponent = memo(() => {
// content
const settings = useGlobalSettings();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,6 @@ describe("DetailView", () => {
it("check if Details exist", () => {
expect(
Component.queryByTestId("detailview-sidebar") as HTMLDivElement
/* eslint-enable */
).toBeTruthy();
});
});
Expand All @@ -192,7 +191,6 @@ describe("DetailView", () => {
state: defaultState
};

// eslint-disable-next-line react/display-name
TestComponent = () => (
<BrowserRouter>
<ContextDetailview.DetailViewContext.Provider value={contextProvider}>
Expand Down
Loading