Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
5 changes: 4 additions & 1 deletion .github/workflows/build-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ on:
permissions:
contents: read

env:
NODE_VERSION: "25"

jobs:
build-ui:
runs-on: ubuntu-22.04
Expand All @@ -22,7 +25,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: "18"
node-version: "${{ env.NODE_VERSION }}"
- name: Setup pnpm
uses: pnpm/action-setup@eae0cfeb286e66ffb5155f1a79b90583a127a68b # v2.4.1
with:
Expand Down
40 changes: 20 additions & 20 deletions webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,46 +10,46 @@
"lint": "next lint"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-navigation-menu": "^1.2.13",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.2.7",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"copy-to-clipboard": "^3.3.3",
"date-fns": "^3.6.0",
"lucide-react": "^0.411.0",
"glob": "^11.1.0",
"lucide-react": "^0.411.0",
"next": "15.4.10",
"next-themes": "^0.4.6",
"react": "19.1.0",
"react-day-picker": "^9.11.0",
"react-day-picker": "^9.13.0",
"react-dom": "19.1.0",
"recharts": "^2.15.4",
"sonner": "^2.0.7",
"swr": "^2.3.4",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.17",
"swr": "^2.3.8",
"tailwind-merge": "^2.6.1",
"tailwindcss": "^3.4.19",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^20.19.8",
"@types/node": "^20.19.30",
"@types/react": "19.1.0",
"@types/react-dom": "19.1.1",
"eslint": "^9.31.0",
"eslint": "^9.39.2",
"eslint-config-next": "15.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-config-prettier": "^9.1.2",
"postcss": "^8.5.6",
"prettier": "3.3.3",
"typescript": "^5.8.3"
"typescript": "^5.9.3"
},
"overrides": {
"@types/react": "19.1.0",
Expand Down
Loading
Loading