-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 737 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"private": true,
"name": "midescribe",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/nathanss/midescribe-v2.git",
"author": "Nathan Schneider <nathan.schneider@sap.com>",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"start:fe": "yarn workspace @midescribe/frontend start",
"start:be": "yarn workspace @midescribe/backend start",
"start": "concurrently \"yarn workspace @midescribe/frontend start\" \"yarn workspace @midescribe/backend start\" ",
"build": "yarn workspace @midescribe/common build && yarn workspace @midescribe/frontend build && yarn workspace @midescribe/backend build"
},
"devDependencies": {
"concurrently": "^6.0.0"
}
}