-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.46 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
47
48
49
50
51
52
53
54
55
{
"name": "risk-management",
"version": "1.0.0",
"description": "Template for the the SAP Extension Suite Learning Journey",
"author": "[email protected]",
"license": "SAP SAMPLE CODE LICENSE",
"repository": "https://github.com/SAP-samples/sap-learning-extension-suite",
"engines": {
"node": ">=14"
},
"private": true,
"dependencies": {
"@sap/cds": "5.1.5",
"@sap/cds-dk": "4.1.5",
"express": "^4",
"hdb": "^0.18.3"
},
"devDependencies": {
"@sap/ux-specification": "^1.96.4",
"sqlite3": "^5.0.2"
},
"scripts": {
"start": "cds run"
},
"sapux": [
"app/risks"
],
"cds": {
"requires": {
"API_BUSINESS_PARTNER": {
"kind": "odata",
"model": "srv/external/API_BUSINESS_PARTNER",
"[development]": {
"credentials": {
"url": "https://sandbox.api.sap.com/s4hanacloud/sap/opu/odata/sap/API_BUSINESS_PARTNER/"
}
},
"[production]": {
"credentials": {
"destination": "API_BUSINESS_PARTNER"
}
}
},
"db": {
"kind": "sql"
},
"xsuaa": {
"kind": "xsuaa"
}
},
"hana": {
"deploy-format": "hdbtable"
}
}
}