Files
Tarokka/package.json
2025-04-14 14:20:49 -04:00

36 lines
859 B
JSON

{
"name": "tarokka",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"start": "cross-env NODE_ENV=production node build/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": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^22.14.1",
"@types/react": "^19.1.1",
"@types/react-dom": "^19.1.2",
"eslint": "^9.24.0",
"eslint-config-next": "15.2.4",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"nodemon": "^3.1.9",
"prettier": "^3.5.3",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3"
}
}