-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1001 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1001 Bytes
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
{
"name": "on-prem-connectivity-example",
"version": "1.0.0",
"description": "A simple CAP project.",
"dependencies": {
"@sap-cloud-sdk/http-client": "^4",
"@sap-cloud-sdk/resilience": "^4",
"@sap/cds": "^9",
"@sap/xssec": "^4",
"express": "^4"
},
"devDependencies": {
"@cap-js/sqlite": "^2",
"@sap/cds-dk": "^9"
},
"scripts": {
"start": "cds-serve",
"bind": "bash bind.services.sh",
"hybrid": "npx cds bind --exec npx cds serve --profile hybrid",
"build": "mbt build -t gen --mtar mta.tar",
"deploy": "cf deploy gen/mta.tar",
"undeploy": "cf undeploy on-prem-connectivity-example --delete-services --delete-service-keys"
},
"cds": {
"requires": {
"OnPremService": {
"kind": "odata",
"credentials": {
"destination": "on-prem-dest"
}
},
"[production]": {
"auth": "xsuaa"
},
"connectivity": true,
"destinations": true
}
},
"private": true
}