-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 767 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 767 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
26
27
{
"name": "easy-baseplate",
"version": "1.0.0",
"repository": "git@github.com:itsRems/rest-plexus-next-baseplate",
"author": "Nico <contact@itsrems.com>, Jack <contact@jackgamesftw.xyz>",
"private": true,
"scripts": {
"api": "yarn workspace @bp/api",
"core": "yarn workspace @bp/core",
"control": "yarn workspace @bp/control",
"dev": "yarn && yarn control generate && concurrently \"yarn api dev\" \"yarn web dev\"",
"dev:backend": "concurrently \"yarn api dev\"",
"dev:docker": "docker-compose -p exampleApp -f docker-compose.dev.yml up",
"web": "yarn workspace @bp/web"
},
"workspaces": {
"packages": [
"backend/*",
"frontend/*",
"libraries/*"
]
},
"devDependencies": {
"concurrently": "^7.2.1",
"typescript": "^4.7.3"
}
}