-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.31 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.31 KB
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
41
42
43
{
"name": "learning-management-system",
"version": "1.0.0",
"description": "Learning Management System - a web application for managing courses and students",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "cd LMS-Backend && python manage.py runserver && cd ../LMS-Frontend && npm start",
"lint": "npm run format",
"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,js,md,css}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/devops0425/Learning-Management-System-Fullstack-DevOps.git"
},
"bugs": {
"url": "https://github.com/devops0425/Learning-Management-System-Fullstack-DevOps/issues",
"email": "devopsapps.info@gmail.com",
"name": "Aditya Sonwane"
},
"keywords": [
"LMS",
"Learning Management System",
"React",
"Django"
],
"author": "Aditya Sonwane",
"license": "MIT",
"dependencies": {
"concurrently": "^9.0.1",
"prettier": "^3.3.3"
},
"devDependencies": {
"@angular/cli": "^20.1.6"
}
}