Set up Node.js project

This commit is contained in:
2025-08-31 19:41:54 +02:00
parent 0a0168671c
commit 72273246b1
3 changed files with 1785 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
{
"name": "skunk-casino",
"version": "1.0.0",
"description": "A casino web application built with Node.js and Express",
"main": "server.js",
"scripts":{
"start": "node server.js",
"dev": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "https://git.skunkhotel.com/arriej/Skunk-casino.git"
},
"keywords": ["casino", "nodejs", "express", "webapp", "socket.io"],
"author": "Your Name or Organization",
"license": "ISC",
"dependencies": {
"bcryptjs": "^3.0.2",
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.16.3",
"socket.io": "^4.8.1"
},
"devDependencies": {
"nodemon": "^3.1.10"
}
}