-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 982 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 982 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
{
"name": "indocafe-monorepo",
"version": "1.0.0",
"description": "IndoCafe Restaurant Management System",
"private": true,
"scripts": {
"install-all": "npm install && cd client && npm install && cd ../server && npm install",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:client": "cd client && npm run dev",
"dev:server": "cd server && npm run dev",
"build": "cd client && npm run build",
"lint": "concurrently \"npm run lint:client\" \"npm run lint:server\"",
"lint:fix": "concurrently \"npm run lint:fix:client\" \"npm run lint:fix:server\"",
"lint:client": "cd client && npm run lint",
"lint:fix:client": "cd client && npm run lint:fix",
"lint:server": "cd server && npm run lint",
"lint:fix:server": "cd server && npm run lint:fix",
"prepare": "husky"
},
"devDependencies": {
"concurrently": "^8.2.2",
"prettier": "^3.7.4"
},
"workspaces": [
"client",
"server"
]
}