Some checks failed
Publish Docker image / Push Docker image to Docker Hub (push) Failing after 7m12s
27 lines
686 B
JSON
27 lines
686 B
JSON
{
|
|
"name": "song-battle",
|
|
"version": "1.0.0",
|
|
"description": "Song Battle game with tournament-style voting for favorite songs",
|
|
"main": "server/index.js",
|
|
"author": "Mathias Wagner",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"webui": "cd client && yarn dev",
|
|
"server": "nodemon server",
|
|
"dev": "concurrently --kill-others \"yarn server\" \"yarn webui\"",
|
|
"build": "cd client && yarn build",
|
|
"start": "node server/index.js"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.8.4",
|
|
"express": "^4.21.2",
|
|
"googleapis": "^148.0.0",
|
|
"socket.io": "^4.8.1",
|
|
"uuid": "^9.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^9.1.2",
|
|
"nodemon": "^3.1.9"
|
|
}
|
|
}
|