missed one

This commit is contained in:
Gavin McDonald
2025-04-09 15:05:01 -04:00
parent 1dcf7c8c8e
commit aed59ef5c7

View File

@@ -3,24 +3,24 @@
"scripts": {
"dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"start": "cross-env NODE_ENV=production node dist/server.js"
"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",
"react": "^18.2.0",
"react-dom": "^18.2.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",
"@types/node": "^18.11.5",
"@types/react": "^18.0.23",
"@types/react-dom": "^18.0.7",
"nodemon": "^2.0.20",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}