-
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) · 867 Bytes
/
Copy pathpackage.json
File metadata and controls
19 lines (19 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "daily-task-manager-suite",
"version": "1.0.0",
"private": true,
"description": "Daily Task Manager & Namaz Reminder — Desktop Electron App with Online MongoDB Atlas",
"scripts": {
"dev": "concurrently -n \"SERVER,DESKTOP\" -c \"bgBlue.bold,bgMagenta.bold\" \"npm run dev:server\" \"npm run dev:client\"",
"dev:web": "concurrently -n \"SERVER,CLIENT\" -c \"bgBlue.bold,bgCyan.bold\" \"npm run dev:server\" \"npm --prefix client run dev\"",
"dev:server": "npm --prefix server run dev",
"dev:client": "npm --prefix client run electron:dev",
"start:server": "node server/server.js",
"build": "npm --prefix client run build:desktop",
"build:desktop": "npm --prefix client run build:desktop",
"build:installer": "npm --prefix client run build:installer"
},
"devDependencies": {
"concurrently": "^10.0.5"
}
}