Skip to content

Commit

Permalink
Update npm dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
serprex committed Jan 20, 2024
1 parent b47b56a commit dc68db4
Show file tree
Hide file tree
Showing 7 changed files with 617 additions and 668 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ui-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ jobs:
eslint_dir: ui
prettier_dir: ui
eslint_args: "--max-warnings 0"
eslint_extensions: js,ts,jsx,tsx
eslint_extensions: js,ts,jsx,tsx,json
2 changes: 1 addition & 1 deletion ui/app/alert-config/new.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import 'react-toastify/dist/ReactToastify.css';
import { alertConfigReqSchema, alertConfigType } from './validation';
const notifyErr = (errMsg: string) => {
toast.error(errMsg, {
position: toast.POSITION.BOTTOM_CENTER,
position: 'bottom-center',
});
};

Expand Down
5 changes: 2 additions & 3 deletions ui/app/mirrors/create/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,11 @@ function getPeerLabel(peer: Peer) {
const notifyErr = (msg: string, ok?: boolean) => {
if (ok) {
toast.success(msg, {
position: toast.POSITION.BOTTOM_CENTER,
position: 'bottom-center',
});
return;
} else {
toast.error(msg, {
position: toast.POSITION.BOTTOM_CENTER,
position: 'bottom-center',
});
}
};
Expand Down
2 changes: 1 addition & 1 deletion ui/app/mirrors/errors/[mirrorName]/ackbutton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { toast } from 'react-toastify';

const notifyErr = (errMsg: string) => {
toast.error(errMsg, {
position: toast.POSITION.BOTTOM_CENTER,
position: 'bottom-center',
});
};

Expand Down
1,224 changes: 587 additions & 637 deletions ui/package-lock.json

Large diffs are not rendered by default.

40 changes: 20 additions & 20 deletions ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"storybook:deploy": "storybook build && touch storybook-static/.nojekyll && rm storybook-static/.gitignore && gh-pages -t -d storybook-static && rm -rf ./storybook-static"
},
"dependencies": {
"@grpc/grpc-js": "^1.9.13",
"@grpc/grpc-js": "^1.9.14",
"@monaco-editor/react": "^4.6.0",
"@prisma/client": "^5.8.0",
"@prisma/client": "^5.8.1",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
Expand All @@ -31,52 +31,52 @@
"@radix-ui/react-toggle": "^1.0.3",
"@radix-ui/react-toggle-group": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@tremor/react": "^3.13.1",
"@types/node": "^20.11.0",
"@types/react": "^18.2.47",
"@tremor/react": "^3.13.2",
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"classnames": "^2.5.1",
"long": "^5.2.3",
"lucide-react": "^0.309.0",
"lucide-react": "^0.312.0",
"material-symbols": "^0.14.5",
"moment": "^2.30.1",
"moment-timezone": "^0.5.44",
"next": "^14.0.4",
"next": "^14.1.0",
"next-auth": "^4.24.5",
"prop-types": "^15.8.1",
"protobufjs": "^7.2.5",
"protobufjs": "^7.2.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-select": "^5.8.0",
"react-spinners": "^0.13.8",
"react-toastify": "^9.1.3",
"react-toastify": "^10.0.3",
"styled-components": "^6.1.8",
"swr": "^2.2.4",
"usehooks-ts": "^2.9.2",
"usehooks-ts": "^2.9.5",
"zod": "^3.22.4"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.6.8",
"@storybook/addon-interactions": "^7.6.8",
"@storybook/addon-links": "^7.6.8",
"@storybook/addon-essentials": "^7.6.10",
"@storybook/addon-interactions": "^7.6.10",
"@storybook/addon-links": "^7.6.10",
"@storybook/addon-styling": "^1.3.7",
"@storybook/blocks": "^7.3.0",
"@storybook/nextjs": "^7.6.8",
"@storybook/nextjs": "^7.6.10",
"@storybook/react": "^7.3.0",
"@storybook/testing-library": "^0.2.2",
"autoprefixer": "^10.4.16",
"copy-webpack-plugin": "^12.0.1",
"autoprefixer": "^10.4.17",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-storybook": "^0.6.15",
"gh-pages": "^6.1.1",
"less": "^4.2.0",
"postcss": "^8.4.33",
"prettier": "^3.2.1",
"prettier": "^3.2.4",
"prettier-plugin-organize-imports": "^3.2.4",
"prisma": "^5.8.0",
"storybook": "^7.6.8",
"prisma": "^5.8.1",
"storybook": "^7.6.10",
"string-width": "^7.0.0",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
Expand Down
10 changes: 5 additions & 5 deletions ui/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
"incremental": true,
"plugins": [
{
"name": "next"
}
"name": "next",
},
],
"paths": {
"@/*": ["./*"]
}
"@/*": ["./*"],
},
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
"exclude": ["node_modules"],
}

0 comments on commit dc68db4

Please sign in to comment.