42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"name": "meitu-agent",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
|
|
"dev:server": "tsx watch server/index.ts",
|
|
"dev:client": "vite --config client/vite.config.ts",
|
|
"build": "vite build --config client/vite.config.ts",
|
|
"db:init": "tsx server/db/schema.ts"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.21.0",
|
|
"ws": "^8.18.0",
|
|
"better-sqlite3": "^11.6.0",
|
|
"zod": "^3.23.0",
|
|
"cors": "^2.8.5",
|
|
"zustand": "^5.0.0",
|
|
"react": "^18.3.0",
|
|
"react-dom": "^18.3.0",
|
|
"lucide-react": "^0.460.0",
|
|
"clsx": "^2.1.0",
|
|
"tailwind-merge": "^2.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^5.0.0",
|
|
"@types/ws": "^8.5.0",
|
|
"@types/better-sqlite3": "^7.6.0",
|
|
"@types/cors": "^2.8.0",
|
|
"@types/react": "^18.3.0",
|
|
"@types/react-dom": "^18.3.0",
|
|
"typescript": "^5.6.0",
|
|
"tsx": "^4.19.0",
|
|
"vite": "^5.4.0",
|
|
"@vitejs/plugin-react": "^4.3.0",
|
|
"tailwindcss": "^3.4.0",
|
|
"postcss": "^8.4.0",
|
|
"autoprefixer": "^10.4.0",
|
|
"concurrently": "^9.1.0"
|
|
}
|
|
}
|