-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
26 lines (26 loc) · 1.09 KB
/
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
{
"name": "ui5-sample-apollo",
"version": "1.0.0",
"description": "Sample to showcase a reactive UI5 application",
"author": "Damian Maring, Peter Muessig",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build": "npm-run-all build:apollo-lib build:todoapp",
"build:apollo-lib": "yarn workspace @petermuessig/ui5-apollo-lib build",
"build:todoapp": "yarn workspace ui5-todoapp build:preload",
"start": "npm-run-all --parallel build:apollo-lib build:todoapp --parallel start:apollo-server start:todoapp",
"start:apollo-server": "yarn workspace ui5-todoapp build && yarn workspace ui5-apollo-server start",
"start:todoapp": "yarn workspace ui5-todoapp start",
"watch": "npm-run-all --parallel watch:apollo-lib start:apollo-server watch:todoapp",
"watch:apollo-lib": "yarn workspace @petermuessig/ui5-apollo-lib watch",
"watch:todoapp": "yarn workspace ui5-todoapp watch"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"eslint": "^7.3.1",
"npm-run-all": "^4.1.5"
}
}