realtime-chat-room / package.json
Trae Assistant
Initial realtime chat room app
35b5bd1
Raw
History Blame Contribute Delete
1.58 kB
{
"name": "self_thinking",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"client:dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"check": "tsc --noEmit",
"start": "tsx api/server.ts",
"server:dev": "nodemon",
"dev": "concurrently \"npm run client:dev\" \"npm run server:dev\""
},
"dependencies": {
"clsx": "^2.1.1",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"lucide-react": "^0.511.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.3.0",
"tailwind-merge": "^3.0.2",
"tsx": "^4.20.3",
"zustand": "^5.0.3",
"express": "^4.21.2",
"ws": "^8.18.3"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.21",
"@types/node": "^22.15.30",
"@types/ws": "^8.18.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.4.1",
"@vercel/node": "^5.3.6",
"autoprefixer": "^10.4.21",
"babel-plugin-react-dev-locator": "^1.0.0",
"concurrently": "^9.2.0",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"nodemon": "^3.1.10",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.5",
"vite-plugin-trae-solo-badge": "^1.0.0",
"vite-tsconfig-paths": "^5.1.4"
}
}