Spaces:
Runtime error
Runtime error
File size: 546 Bytes
69f2236 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | {
"name": "managed-chatkit",
"private": true,
"scripts": {
"dev": "concurrently --kill-others-on-fail --names backend,frontend \"npm run backend\" \"npm run frontend\"",
"frontend": "npm --prefix frontend install && npm --prefix frontend run dev",
"frontend:build": "npm --prefix frontend install && npm --prefix frontend run build",
"frontend:lint": "npm --prefix frontend install && npm --prefix frontend run lint",
"backend": "./backend/scripts/run.sh"
},
"devDependencies": {
"concurrently": "^9.1.2"
}
}
|