-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 994 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 994 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
28
29
30
31
32
33
34
35
36
37
{
"name": "restaurant-management-system",
"version": "1.0.0",
"description": "A full-stack Restaurant Management System",
"main": "index.js",
"scripts": {
"start": "node backend/server.js",
"server": "nodemon backend/server.js",
"client": "cd frontend && npm start",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"install-client": "cd frontend && npm install",
"install-server": "npm install",
"install-all": "npm run install-server && npm run install-client",
"build": "cd frontend && npm run build"
},
"keywords": [
"restaurant",
"management",
"MERN"
],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.21.2",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.3",
"morgan": "^1.10.0"
},
"devDependencies": {
"concurrently": "^8.0.1",
"nodemon": "^2.0.22"
}
}