-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
22 lines (22 loc) · 896 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
{
"name": "ui5-webcomponents-showcase",
"version": "0.0.1",
"description": "A repository, showcasing the consumption of UI5 Web Components as UI5 Controls",
"private": true,
"scripts": {
"start": "npm-run-all build:webclib --parallel start:webc start:xml",
"start:dev": "npm-run-all --parallel start:webc:dev start:xml:dev build:webclib:dev",
"start:webc": "cd packages/ui5-app-webcomponents && yarn start",
"start:webc:dev": "cd packages/ui5-app-webcomponents && yarn start:dev",
"start:xml": "cd packages/ui5-app-xmlcontrols && yarn start",
"start:xml:dev": "cd packages/ui5-app-xmlcontrols && yarn start:dev",
"build:webclib": "cd packages/ui5-webcomponents-lib && yarn build",
"build:webclib:dev": "cd packages/ui5-webcomponents-lib && yarn watch"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}