{ "name": "courseworx", "version": "1.7.0", "description": "A comprehensive course management application for trainers and trainees", "main": "index.js", "repository": { "type": "git", "url": "https://github.com/mmabdalla/courseworx.git" }, "scripts": { "start": "concurrently --names \"BACKEND,FRONTEND\" --prefix-colors \"blue,green\" \"npm run server\" \"npm run client\"", "dev": "concurrently --names \"BACKEND,FRONTEND\" --prefix-colors \"blue,green\" \"npm run server\" \"npm run client\"", "server": "cd backend && npm run dev", "client": "cd frontend && npm start", "build": "cd frontend && npm run build", "install-all": "npm install && cd backend && npm install && cd ../frontend && npm install", "setup-db": "cd backend && npm run setup-db", "stop": "echo \"Press Ctrl+C to stop all processes\"", "kill": "taskkill /f /im node.exe 2>nul || echo \"No Node.js processes found\"" }, "keywords": [ "course", "management", "education", "training" ], "author": "CourseWorx Team", "license": "MIT", "devDependencies": { "concurrently": "^8.2.2" }, "dependencies": { "react-modal": "^3.16.3" } }