-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
16 lines (16 loc) · 753 Bytes
/
Copy pathpackage.json
File metadata and controls
16 lines (16 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"name": "scriptowl",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "concurrently -n client,server,mobile -c cyan,green,magenta \"npm run dev --prefix client\" \"npm run dev --prefix server\" \"npm run start --prefix mobile\"",
"dev:web": "concurrently -n client,server -c cyan,green \"npm run dev --prefix client\" \"npm run dev --prefix server\"",
"dev:mobile": "concurrently -n server,mobile -c green,magenta \"npm run dev --prefix server\" \"npm run start --prefix mobile\"",
"client": "npm run dev --prefix client",
"server": "npm run dev --prefix server",
"mobile": "npm run start --prefix mobile"
},
"devDependencies": {
"concurrently": "^9.1.2"
}
}