Files
honey-fe/package.json

48 lines
1.2 KiB
JSON
Raw Normal View History

2026-03-07 21:44:42 +02:00
{
"name": "honey-fe",
"version": "0.0.0",
2026-03-09 00:50:24 +02:00
"private": true,
2026-03-07 21:44:42 +02:00
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
2026-03-09 00:50:24 +02:00
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"prepare": "husky"
2026-03-07 21:44:42 +02:00
},
"dependencies": {
2026-03-09 00:50:24 +02:00
"@tailwindcss/vite": "^4.2.1",
"@tanstack/devtools-vite": "^0.5.3",
"@tanstack/react-devtools": "^0.9.10",
"@tanstack/react-query": "^5.90.21",
"@tanstack/react-query-devtools": "^5.91.3",
"@tanstack/react-router": "^1.166.3",
"@tanstack/react-router-devtools": "^1.166.3",
"arktype": "^2.2.0",
"motion": "^12.35.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.2.1"
2026-03-07 21:44:42 +02:00
},
"devDependencies": {
2026-03-09 00:50:24 +02:00
"@tanstack/router-plugin": "^1.166.3",
2026-03-07 21:44:42 +02:00
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
2026-03-09 00:50:24 +02:00
"@vitejs/plugin-react-swc": "^4.2.3",
"globals": "^17.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
2026-03-07 21:44:42 +02:00
"typescript": "~5.9.3",
"vite": "^7.3.1"
2026-03-09 00:50:24 +02:00
},
"lint-staged": {
"*": "oxfmt --no-error-on-unmatched-pattern",
"*.{js,jsx,ts,tsx,mjs,cjs}": "pnpm run lint"
2026-03-07 21:44:42 +02:00
}
}