-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.38 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
27
28
29
30
31
32
33
{
"name": "openui5-cv-generator",
"version": "1.0.0",
"author": "Andrei Sabau",
"license": "Apache-2.0",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"mbt": "^1.2.18",
"npm-run-all": "^4.1.5",
"typescript": "^5.1.6"
},
"scripts": {
"watch:dev": "npm-run-all -p watch:dev:**",
"watch:dev:frontend": "npm-run-all -p watch:dev:frontend:*",
"watch:dev:frontend:display": "npm run watch --workspace=packages/frontend/display",
"watch:dev:frontend:edit": "npm run watch --workspace=packages/frontend/edit",
"watch:dev:backend": "npm run watch --workspace=packages/backend",
"watch:interface:generator": "npm-run-all -p watch:interface:generator:*",
"watch:interface:generator:display": "npm run watch:interface:generator --workspace=packages/frontend/display",
"watch:interface:generator:edit": "npm run watch:interface:generator --workspace=packages/frontend/edit",
"clean": "rimraf resources mta_archives",
"build": "npm run clean && mbt build --mtar ui5-cv-gen",
"deploy": "cf deploy mta_archives/ui5-cv-gen.mtar --retries 1",
"undeploy": "cf undeploy ui5-cv-gen --delete-services --delete-service-keys --delete-service-brokers"
},
"workspaces": [
"packages/backend",
"packages/frontend/display",
"packages/frontend/edit"
]
}