ClassLens / managed-chatkit /package.json
lukasgross's picture
Add unmanged sample with a minimal backend (#98)
69f2236
{
"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"
}
}