- Backend: Express + TypeORM + PostgreSQL, JWT + OTP auth - Frontend: React + Vite + Tailwind, 4 pages (Home/Login/Orders/404) - Docker Compose: PostgreSQL 15 on port 5434 - Tests: 16 tests passing (API + Frontend) - ai_state: rules.md, INSTRUCTIONS.md, session tasks - Examples: brand book PDF, logos, page mockups
31 lines
710 B
JSON
31 lines
710 B
JSON
{
|
|
"name": "nutshell-frontend",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"lint": "eslint src --ext .ts,.tsx"
|
|
},
|
|
"dependencies": {
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-router-dom": "^6.15.0",
|
|
"axios": "^1.5.0",
|
|
"i18next": "^23.5.0",
|
|
"react-i18next": "^13.2.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.2.0",
|
|
"@types/react-dom": "^18.2.0",
|
|
"@types/node": "^20.4.5",
|
|
"typescript": "^5.1.6",
|
|
"vite": "^4.4.9",
|
|
"@vitejs/plugin-react": "^4.0.3",
|
|
"tailwindcss": "^3.3.0",
|
|
"postcss": "^8.4.29",
|
|
"autoprefixer": "^10.4.15"
|
|
}
|
|
}
|