24 lines
No EOL
781 B
JSON
24 lines
No EOL
781 B
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": {
|
|
"dev": "concurrently \"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"
|
|
},
|
|
"keywords": ["course", "management", "education", "training"],
|
|
"author": "CourseWorx Team",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"concurrently": "^8.2.2"
|
|
}
|
|
} |