16 lines
315 B
JSON
16 lines
315 B
JSON
|
|
{
|
||
|
|
"name": "wisp",
|
||
|
|
"private": true,
|
||
|
|
"license": "MIT",
|
||
|
|
"workspaces": [
|
||
|
|
"client",
|
||
|
|
"server"
|
||
|
|
],
|
||
|
|
"scripts": {
|
||
|
|
"dev": "concurrently -n client,server -c cyan,yellow \"npm run dev --workspace=client\" \"npm run dev --workspace=server\""
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"concurrently": "^8.2.2"
|
||
|
|
}
|
||
|
|
}
|