Files
awoooi/apps/web/package.json
OG T 196d269b92 feat: add all application source code
- apps/api: FastAPI backend with Dockerfile
- apps/web: Next.js frontend with Dockerfile
- apps/sensor: Signal collection agent
- packages: shared packages

Co-Authored-By: Claude <noreply@anthropic.com>
2026-03-22 18:57:44 +08:00

40 lines
997 B
JSON

{
"name": "@awoooi/web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@awoooi/lewooogo-core": "workspace:*",
"@tanstack/react-query": "^5.17.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.0",
"lucide-react": "^0.577.0",
"next": "14.1.0",
"next-intl": "^4.8.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^3.8.0",
"tailwind-merge": "^2.2.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@awoooi/eslint-config": "workspace:*",
"@awoooi/tsconfig": "workspace:*",
"@playwright/test": "^1.58.2",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"autoprefixer": "^10.4.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.0",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.0"
}
}