-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "az-private-linky-cap",
"version": "1.0.0",
"description": "A simple CAP project.",
"repository": "<Add your repository here>",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@sap-cloud-sdk/http-client": "^3.8.1",
"@sap-cloud-sdk/resilience": "^3.8.1",
"@sap/cds": "^7",
"@sap/cds-dk": "^7",
"@sap/xssec": "^3.6.0",
"express": "^4",
"passport": "^0.6.0"
},
"devDependencies": {
"@cap-js/sqlite": "^1",
"mbt": "~1.2.24",
"rimraf": "^5.0.5"
},
"engines": {
"node": "^18"
},
"scripts": {
"start": "npx cds run",
"start-hybrid": "cds watch --profile hybrid",
"build:cf": "mbt build --mtar archive",
"undeploy": "cf undeploy az-private-linky-cap --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": {
"s4EpmProducts": {
"kind": "odata-v2",
"model": "srv/external/s4EpmProducts",
"credentials": {
"destination": "s4-on-azure",
"path": "/sap/opu/odata/sap/epm_ref_apps_prod_man_srv"
}
},
"auth": "dummy"
}
}
}