21 lines
512 B
JSON
21 lines
512 B
JSON
{
|
|
"name": "powertools",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"repository": "https://github.com/gnmyt/PowerTools.git",
|
|
"author": "Mathias Wagner <germannewsmaker@gmail.com>",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"client": "cd client && yarn dev",
|
|
"server": "nodemon server",
|
|
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\""
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.18.2"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^8.0.1",
|
|
"nodemon": "^2.0.22"
|
|
}
|
|
}
|