-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (27 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (27 loc) · 1.08 KB
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": "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",
"preview": "npm run build:frontend && concurrently -n frontend,backend \"npm run start --workspace frontend\" \"npm run dev --workspace backend\"",
"test": "npm run test --workspace backend",
"test:backend": "npm run test --workspace backend"
},
"devDependencies": {
"concurrently": "^9.1.2"
}
}