20 lines
466 B
JSON
20 lines
466 B
JSON
{
|
|
"name": "ka-note",
|
|
"private": true,
|
|
"workspaces": [
|
|
"shared",
|
|
"client",
|
|
"server"
|
|
],
|
|
"scripts": {
|
|
"dev": "concurrently -n client,server -c blue,green \"npm run dev -w client\" \"npm run dev -w server\"",
|
|
"build": "npm run build -w shared && npm run build -w client && npm run build -w server"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^9.2.1",
|
|
"playwright": "^1.58.2",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^5.7.3"
|
|
}
|
|
}
|