-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 823 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "disaster-alert",
"version": "1.0.0",
"description": "Disaster Alert - Real-Time Disaster Monitoring System",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:frontend": "cd frontend && npm run dev",
"dev:backend": "cd backend && python manage.py runserver",
"install:all": "npm install && cd frontend && npm install && cd ../backend && pip install -r requirements.txt",
"build:frontend": "cd frontend && npm run build",
"migrate": "cd backend && python manage.py migrate",
"makemigrations": "cd backend && python manage.py makemigrations",
"start": "npm run dev"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"keywords": ["disaster", "monitoring", "alert", "react", "django"],
"author": "",
"license": "MIT"
}