-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 889 Bytes
/
package.json
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
{
"private": true,
"engines": {
"node": ">=16"
},
"workspaces": {
"packages": [
"backend",
"frontend"
]
},
"scripts": {
"build": "npm-run-all --sequential build:backend build:frontend",
"build:backend": "yarn workspace @dmoxyeze-todo-application/backend build",
"build:frontend": "yarn workspace @dmoxyeze-todo-application/frontend build",
"dev": "npm-run-all --parallel dev:backend dev:frontend",
"dev:backend": "yarn workspace @dmoxyeze-todo-application/backend dev",
"dev:frontend": "yarn workspace @dmoxyeze-todo-application/frontend dev",
"test": "npm-run-all --sequential test:backend test:frontend",
"test:backend": "yarn workspace @dmoxyeze-todo-application/backend test",
"test:frontend": "yarn workspace @dmoxyeze-todo-application/frontend test"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}