Files
mtg-online-drafter/src/package.json
dnviti 6f3c773dfd
Some checks failed
Build and Deploy / build (push) Failing after 2m44s
feat: Add Docker containerization, production serving, and Gitea CI/CD workflow.
2025-12-14 22:48:41 +01:00

35 lines
948 B
JSON

{
"name": "mtg-draft-maker",
"version": "1.0.0",
"description": "MTG Draft Maker - Monolith Node.js",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "tsx watch server/index.ts",
"client": "vite",
"build": "tsc && vite build",
"start": "NODE_ENV=production tsx server/index.ts"
},
"dependencies": {
"express": "^4.21.2",
"lucide-react": "^0.475.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"tsx": "^4.19.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.10.1",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"vite": "^6.0.3"
}
}