Skip to content

Commit 918540f

Browse files
chore: update project dependencies and TypeScript configuration
- Update packages to latest versions - Add new tsconfig.app.json - Modify tsconfig.json and tsconfig.node.json - Remove PORT environment variable
1 parent ec25d4d commit 918540f

File tree

10 files changed

+1221
-1563
lines changed

10 files changed

+1221
-1563
lines changed

.eslintrc.cjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ module.exports = {
77
'eslint:recommended',
88
'plugin:@typescript-eslint/recommended-type-checked',
99
'plugin:@typescript-eslint/stylistic-type-checked',
10-
'plugin:react-hooks/recommended',
10+
'plugin:react-hooks/recommended-legacy',
11+
'plugin:@tanstack/query/recommended',
1112
'plugin:jsx-a11y/recommended',
1213
'plugin:react/recommended',
1314
'plugin:prettier/recommended',

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20
1+
22

package.json

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": true,
44
"version": "0.0.0",
55
"type": "module",
6-
"packageManager": "pnpm@9.1.1",
6+
"packageManager": "pnpm@10.5.2+sha512.da9dc28cd3ff40d0592188235ab25d3202add8a207afbedc682220e4a0029ffbff4562102b9e6e46b4e3f9e8bd53e6d05de48544b0c57d4b0179e22c76d1199b",
77
"scripts": {
88
"postinstall": "husky install",
99
"dev": "vite",
@@ -12,30 +12,31 @@
1212
"build:staging": "tsc && vite build --mode staging",
1313
"start:staging": "vite preview",
1414
"lint": "eslint .",
15-
"format:check": "prettier --check src/**/*.{ts,tsx,js,jsx,json,css} index.html --ignore-unknown --no-error-on-unmatched-pattern",
16-
"format": "prettier --write src/**/*.{ts,tsx,js,jsx,json,css} index.html --ignore-unknown --no-error-on-unmatched-pattern",
15+
"format:check": "prettier --check src/ index.html --ignore-unknown --no-error-on-unmatched-pattern",
16+
"format": "prettier --write src/ index.html --ignore-unknown --no-error-on-unmatched-pattern",
1717
"tsr:watch": "tsr watch",
1818
"tsr:generate": "tsr generate",
1919
"typecheck": "tsc"
2020
},
2121
"dependencies": {
22-
"@tanstack/react-query": "^5.62.0",
23-
"@tanstack/react-query-devtools": "^5.62.0",
22+
"@tanstack/react-query": "^5.66.11",
2423
"@tanstack/react-router": "^1.112.0",
25-
"axios": "^1.7.8",
24+
"axios": "^1.8.1",
2625
"clsx": "^2.1.1",
2726
"react": "^19.0.0",
2827
"react-dom": "^19.0.0",
29-
"tailwind-merge": "^2.3.0",
28+
"tailwind-merge": "^3.0.2",
3029
"tailwindcss": "^4.0.9",
31-
"zod": "^3.23.8"
30+
"zod": "^3.24.2"
3231
},
3332
"devDependencies": {
34-
"@commitlint/cli": "^18.6.1",
35-
"@commitlint/config-conventional": "^18.6.3",
33+
"@commitlint/cli": "^19.7.1",
34+
"@commitlint/config-conventional": "^19.7.1",
3635
"@svgr/plugin-svgo": "^8.1.0",
3736
"@tailwindcss/vite": "^4.0.9",
38-
"@tanstack/router-cli": "^1.34.8",
37+
"@tanstack/eslint-plugin-query": "^5.66.1",
38+
"@tanstack/react-query-devtools": "^5.66.11",
39+
"@tanstack/router-cli": "^1.112.0",
3940
"@tanstack/router-devtools": "^1.112.0",
4041
"@tanstack/router-plugin": "^1.112.0",
4142
"@total-typescript/ts-reset": "^0.5.1",
@@ -45,21 +46,21 @@
4546
"@typescript-eslint/parser": "^8.25.0",
4647
"@vitejs/plugin-react": "^4.3.4",
4748
"babel-plugin-react-compiler": "19.0.0-beta-e1e972c-20250221",
48-
"eslint": "^8.57.0",
49-
"eslint-config-prettier": "^9.1.0",
50-
"eslint-plugin-import": "^2.29.1",
51-
"eslint-plugin-jsx-a11y": "^6.8.0",
49+
"eslint": "^8.57.1",
50+
"eslint-config-prettier": "^10.0.2",
51+
"eslint-plugin-import": "^2.31.0",
52+
"eslint-plugin-jsx-a11y": "^6.10.2",
5253
"eslint-plugin-prettier": "^5.2.3",
53-
"eslint-plugin-react": "^7.34.2",
54+
"eslint-plugin-react": "^7.37.4",
5455
"eslint-plugin-react-compiler": "19.0.0-beta-e1e972c-20250221",
55-
"eslint-plugin-react-hooks": "^4.6.2",
56-
"eslint-plugin-react-refresh": "^0.4.7",
56+
"eslint-plugin-react-hooks": "^5.2.0",
57+
"eslint-plugin-react-refresh": "^0.4.19",
5758
"husky": "^8.0.3",
58-
"prettier": "^3.3.0",
59+
"prettier": "^3.5.2",
5960
"prettier-plugin-tailwindcss": "^0.5.14",
60-
"typescript": "^5.4.5",
61+
"typescript": "^5.8.2",
6162
"vite": "^6.2.0",
6263
"vite-plugin-svgr": "^4.3.0",
6364
"vite-tsconfig-paths": "^4.3.2"
6465
}
65-
}
66+
}

0 commit comments

Comments
 (0)