23 lines
605 B
JSON
23 lines
605 B
JSON
{
|
|
"name": "countryguessr",
|
|
"version": "1.0.0-ALPHA",
|
|
"description": "The server of the CountryGuesser game",
|
|
"main": "server/index.js",
|
|
"repository": "https://github.com/gnmyt/CountryGuessr.git",
|
|
"author": "Mathias Wagner <germannewsmaker@gmail.com>",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"webui": "cd webui && yarn dev",
|
|
"server": "nodemon server",
|
|
"dev": "concurrently --kill-others \"yarn server\" \"yarn webui\""
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"socket.io": "^4.6.2"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^8.1.0",
|
|
"nodemon": "^2.0.22"
|
|
}
|
|
}
|