-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (24 loc) · 850 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (24 loc) · 850 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
{
"name": "fullstack-starter",
"private": true,
"version": "1.0.0",
"workspaces": [
"frontend",
"backend",
"mobile"
],
"scripts": {
"dev": "npm run dev:all",
"dev:frontend": "npm run dev --workspace frontend",
"dev:backend": "npm run dev --workspace backend",
"dev:mobile": "npm run start --workspace mobile",
"dev:all": "concurrently -n frontend,backend,mobile \"npm run dev --workspace frontend\" \"npm run dev --workspace backend\" \"npm run start --workspace mobile\"",
"build:frontend": "npm run build --workspace frontend",
"build:backend": "npm run build --workspace backend",
"build:mobile": "npm run build --workspace mobile",
"build:all": "npm run build:frontend && npm run build:backend && npm run build:mobile"
},
"devDependencies": {
"concurrently": "^9.1.2"
}
}