initialize project structure with essential files and configurations from ToneGuessr

This commit is contained in:
2025-04-24 11:13:29 +02:00
parent 569e390a89
commit e818af6900
20 changed files with 5273 additions and 0 deletions

23
package.json Normal file
View File

@ -0,0 +1,23 @@
{
"name": "toneguessr",
"version": "1.0.0-ALPHA",
"description": "The server of the ToneGuessr game",
"main": "server/index.js",
"repository": "https://git.gnm.dev/WebsiteProjects/ToneGuessr",
"author": "Mathias Wagner",
"license": "MIT",
"scripts": {
"webui": "cd client && yarn dev",
"server": "nodemon server",
"dev": "concurrently --kill-others \"yarn server\" \"yarn webui\""
},
"dependencies": {
"express": "^4.21.2",
"googleapis": "^146.0.0",
"socket.io": "^4.8.1"
},
"devDependencies": {
"concurrently": "^9.1.2",
"nodemon": "^3.1.9"
}
}