-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.11 KB
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
34
35
36
37
38
39
40
41
{
"name": "datastore-extension-ui",
"version": "1.0.0",
"description": "A simple CAP project.",
"repository": "<https://github.com/SAP-samples/cloud-integration-pipeline-datastore-extension-ui.git",
"license": "Apache-2.0",
"dependencies": {
"@sap-cloud-sdk/http-client": "^4.1.2",
"@sap/cds": "^9",
"@sap/xssec": "^4",
"dotenv": "^16.4.5",
"express": "^4"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@cap-js/cds-types": "^0.13.0",
"@cap-js/sqlite": "^2",
"@sap/cds-dk": ">=8",
"mbt": "^1.2.49",
"rimraf": "^5.0.5"
},
"scripts": {
"start": "cds-serve",
"watch-datastores-ui": "cds watch --open datastores-ui/webapp/index.html?sap-ui-xx-viewCache=false",
"undeploy": "cf undeploy datastore-extension-ui --delete-services --delete-service-keys --delete-service-brokers",
"build": "rimraf resources mta_archives && mbt build --mtar archive",
"deploy": "cf deploy mta_archives/archive.mtar --retries 1"
},
"cds": {
"requires": {
"[production]": {
"auth": "xsuaa"
}
}
},
"sapux": [
"app/datastores-ui"
]
}