27 lines
642 B
JSON
27 lines
642 B
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "nodemon",
|
|
"build": "next build && tsc --project tsconfig.server.json",
|
|
"start": "cross-env NODE_ENV=production node dist/server.js"
|
|
},
|
|
"dependencies": {
|
|
"cross-env": "^7.0.3",
|
|
"next": "latest",
|
|
"react": "^19.1.0",
|
|
"react-dom": "^19.1.0",
|
|
"socket.io": "^4.8.1",
|
|
"socket.io-client": "^4.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^22.14.0",
|
|
"@types/react": "^19.1.0",
|
|
"@types/react-dom": "^19.1.2",
|
|
"nodemon": "^3.1.9",
|
|
"tailwindcss": "^4",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|