-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
21 lines (21 loc) · 880 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "libraryconsumption",
"version": "1.0.0",
"private": true,
"description": "A test repository to learn how to create a small library and how to consume it",
"scripts": {
"ui:start:dev": "yarn workspace ui5-library-consumption start",
"ui:init:start:dev": "yarn ctrllib:build && yarn themelib:build && yarn workspace ui5-library-consumption start",
"ui:init:start:build": "yarn ctrllib:build && yarn themelib:build && yarn workspace ui5-library-consumption build && yarn start:build",
"ctrllib:dev": "yarn workspace ui5-control-library watch",
"ctrllib:build": "yarn workspace ui5-control-library _build",
"themelib:dev": "yarn workspace ui5-theme-library watch",
"themelib:build": "yarn workspace ui5-theme-library _build"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@openui5/ts-types": "^1.101.0"
}
}