{ "name": "kis-api-builder", "version": "1.0.0", "description": "API Builder - Dynamic API Construction System", "private": true, "scripts": { "install:all": "npm install && cd backend && npm install && cd ../frontend && npm install", "dev:backend": "cd backend && npm run dev", "dev:frontend": "cd frontend && npm run dev", "dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\" --names \"backend,frontend\" --prefix-colors \"blue,green\"", "build:frontend": "cd frontend && npm run build", "build:backend": "cd backend && npm run build", "build": "npm run build:backend && npm run build:frontend", "start": "cd backend && NODE_ENV=production npm start", "start:prod": "npm run build && npm run start", "migrate": "cd backend && npm run migrate" }, "devDependencies": { "concurrently": "^8.2.2" } }