forked from IJMPLM/Smart-Multi-Institute-Queuing-System
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.67 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.67 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
{
"name": "smart-multi-institute-queuing-system",
"version": "1.0.0",
"description": "Smart Multi-Institute Queuing System with Frontend and Backend",
"private": true,
"workspaces": [
"frontend",
"backend"
],
"scripts": {
"install-all": "npm install && npm install --prefix frontend/server && npm install --prefix frontend/applicant && npm install --prefix frontend/counter && npm install --prefix backend",
"update-all": "npm update && npm update --prefix frontend/server && npm update --prefix frontend/applicant && npm update --prefix frontend/counter && npm update --prefix backend",
"audit-all": "npm audit fix && npm audit fix --prefix frontend/server && npm audit fix --prefix frontend/applicant && npm audit fix --prefix frontend/counter && npm audit fix --prefix backend",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:frontend": "cd frontend && npm run dev:server",
"dev:backend": "cd backend && npm run dev",
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"start:frontend": "cd frontend && npm run start:server",
"start:backend": "cd backend && npm start",
"build": "cd frontend && npm run build && cd ../backend && npm run build",
"build-all": "npm run build && echo ✅ All applications built successfully!",
"server:start": "node scripts/server-start.js",
"server:start:prod": "node scripts/server-start.js --production",
"server:stop": "node scripts/server-stop.js"
},
"devDependencies": {
"concurrently": "^8.2.2",
"kill-port": "^2.0.1",
"open": "^10.1.0"
},
"dependencies": {
"lucide-react": "^0.553.0",
"qrcode": "^1.5.4"
}
}