Add the initial project blueprint, Go backend skeleton, frontend app shell, database schema draft, and local development/deployment files.
34 lines
767 B
JSON
34 lines
767 B
JSON
{
|
|
"name": "temporserv-web",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc -b && vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@hookform/resolvers": "^5.2.2",
|
|
"@tanstack/react-query": "^5.90.3",
|
|
"lucide-react": "^0.542.0",
|
|
"react": "^19.1.1",
|
|
"react-dom": "^19.1.1",
|
|
"react-hook-form": "^7.65.0",
|
|
"react-router-dom": "^7.8.2",
|
|
"zod": "^4.1.5",
|
|
"zustand": "^5.0.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^19.1.12",
|
|
"@types/react-dom": "^19.1.9",
|
|
"@vitejs/plugin-react": "^5.0.4",
|
|
"autoprefixer": "^10.4.21",
|
|
"postcss": "^8.5.6",
|
|
"tailwindcss": "^3.4.17",
|
|
"typescript": "^5.9.2",
|
|
"vite": "^7.1.5"
|
|
}
|
|
}
|
|
|