-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
40 lines (40 loc) · 1.3 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "learning-management-system",
"version": "1.0.0",
"description": "Learning Management System - a web application for managing courses and students",
"directories": {
"doc": "docs"
},
"scripts": {
"install": "cd LMS-Frontend && npm install && cd ../LMS-Backend && pip install -r requirements.txt",
"start": "cd LMS-Backend && python manage.py runserver && cd ../LMS-Frontend && npm start",
"build": "cd LMS-Frontend/app && ng build",
"test": "cd LMS-Frontend/app && ng serve",
"eject": "cd LMS-Frontend/app && npm run eject",
"frontend": "cd LMS-Frontend/app && ng serve",
"backend": "cd LMS-Backend && python manage.py runserver",
"dev": "concurrently \"npm run backend\" \"npm run frontend\"",
"format": "prettier --write \"**/*.{ts,css}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/hoangsonww/Learning-Management-System-Fullstack.git"
},
"bugs": {
"url": "https://github.com/hoangsonww/Learning-Management-System-Fullstack/issues",
"email": "hoangson091104@gmail.com",
"name": "Son Nguyen"
},
"keywords": [
"LMS",
"Learning Management System",
"React",
"Django"
],
"author": "Son Nguyen",
"license": "MIT",
"dependencies": {
"concurrently": "^9.0.1",
"prettier": "^3.3.3"
}
}