-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
23 lines (23 loc) · 919 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "my-app",
"version": "1.0.0",
"scripts": {
"start": "npm run start-server",
"start-server": "cd BackEnd && npm install && npm run dev",
"start-client": "cd FrontEnd && npm install && npm run dev",
"build": "npm run build-client",
"build-client": "cd FrontEnd && npm install && npm run build",
"dev": "concurrently \"npm run start-server\" \"npm run start-client\""
},
"engines": {
"node": "16.x"
},
"dependencies": {
"concurrently": "^6.0.0"
},
"description": "This eLearning platform enables users to enroll in courses, submit assignments, and take exams. The platform supports four types of users: Students, Instructors, Admins, and Super Admins. Each role has distinct functionalities, ensuring the system is secure and efficient in managing courses and student progress.",
"main": "env.js",
"devDependencies": {},
"author": "",
"license": "ISC"
}