25 lines
580 B
JSON
25 lines
580 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"
|
|
},
|
|
"dependencies": {
|
|
"@sveltejs/kit": "^2.53.4",
|
|
"rollup": "^4.57.1",
|
|
"vite-plugin-pwa": "^1.2.0"
|
|
}
|
|
}
|