14 lines
399 B
JSON
14 lines
399 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.1.2",
|
|
"typescript": "^5.7.3"
|
|
}
|
|
}
|