-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 691 Bytes
/
Copy pathpackage.json
File metadata and controls
19 lines (19 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "disaster-preparedness-system",
"version": "1.0.0",
"description": "Interactive disaster preparedness and emergency management system for schools and colleges",
"main": "server/index.js",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "cd server && npm run dev",
"client": "cd client && npm start",
"build": "cd client && npm run build",
"install-all": "npm install && cd server && npm install && cd ../client && npm install"
},
"keywords": ["disaster", "preparedness", "education", "emergency", "safety"],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
}
}