courseworx/package.json

27 lines
No EOL
1.1 KiB
JSON

{
"name": "courseworx",
"version": "0.0.1",
"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"
}
}