Added the client, server & dev script to the package.json

This commit is contained in:
Mathias Wagner 2023-05-08 20:16:51 +02:00
parent cede39105a
commit 71b1b2f989
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -5,7 +5,16 @@
"repository": "https://github.com/gnmyt/PowerTools.git",
"author": "Mathias Wagner <germannewsmaker@gmail.com>",
"license": "MIT",
"scripts": {
"client": "cd client && yarn start",
"server": "nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\""
},
"dependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"concurrently": "^8.0.1",
"nodemon": "^2.0.22"
}
}