Added the express dependency to the package.json

This commit is contained in:
2023-06-08 21:53:19 +02:00
parent b60dfe681c
commit 76fcf86412
2 changed files with 832 additions and 1 deletions

View File

@ -5,5 +5,17 @@
"main": "server/index.js",
"repository": "https://github.com/gnmyt/CountryGuessr.git",
"author": "Mathias Wagner <germannewsmaker@gmail.com>",
"license": "MIT"
"license": "MIT",
"scripts": {
"webui": "cd webui && yarn dev",
"server": "nodemon server",
"dev": "concurrently --kill-others \"yarn server\" \"yarn webui\""
},
"dependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"concurrently": "^8.1.0",
"nodemon": "^2.0.22"
}
}