-
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.37 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.37 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": "school-timetable-app",
"version": "1.0.0",
"description": "All Saints Convent School Timetable Management System",
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"dev:frontend": "cd frontend && npm start",
"dev:backend": "cd backend && npm run dev",
"build": "npm run build:frontend && npm run build:backend",
"build:frontend": "cd frontend && npm run build",
"build:backend": "cd backend && npm run build",
"start": "npm run start:frontend",
"start:frontend": "cd frontend && npm start",
"start:backend": "cd backend && npm start",
"install:all": "npm install && cd frontend && npm install && cd ../backend && npm install",
"clean": "rm -rf frontend/build backend/dist node_modules frontend/node_modules backend/node_modules",
"test": "cd frontend && npm test && cd ../backend && npm test",
"lint": "cd frontend && npm run lint && cd ../backend && npm run lint"
},
"devDependencies": {
"concurrently": "^9.2.0"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/pulk17/Time-Table-Management"
},
"keywords": [
"school",
"timetable",
"education",
"scheduling",
"react",
"nodejs",
"mongodb"
],
"author": "Pulkit Chauhan",
"license": "MIT"
}