-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 797 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 797 Bytes
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
{
"name": "smartqueuemanagement",
"version": "1.0.0",
"description": "A simple queue management system",
"main": "server.js",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "cd backend && npm run dev",
"client": "cd frontend && npm run dev",
"build": "cd frontend && npm run build && cd ../backend && npm run build",
"start": "docker-compose up -d",
"stop": "docker-compose down",
"logs": "docker-compose logs -f",
"install-all": "npm install && cd backend && npm install && cd ../frontend && npm install"
},
"keywords": [
"queue",
"management",
"mern",
"nextjs"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"concurrently": "^7.6.0"
}
}