-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 2.11 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "material-availability",
"version": "1.0.0",
"description": "Material Availability",
"repository": "https://github.com/sap-samples/btp-extension-s4-material-availability.git",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@sap-cloud-sdk/http-client": "^3.6.0",
"@sap-cloud-sdk/util": "^3.6.0",
"@sap/cds": "^8",
"express": "^4"
},
"devDependencies": {
"@cap-js/sqlite": "^1",
"@sap/ux-specification": "^1.108.15"
},
"scripts": {
"start": "cds-serve",
"watch-materialdashboard": "cds watch --open materialdashboard/webapp/index.html?sap-ui-xx-viewCache=false"
},
"cds": {
"requires": {
"SalesOrderA2X": {
"kind": "odata-v2",
"model": "srv/external/SalesOrderA2X",
"[sandbox]": {
"credentials": {
"url": "https://sandbox.api.sap.com/s4hanacloud/sap/opu/odata/sap/API_SALES_ORDER_SRV/"
}
},
"[live]": {
"credentials": {
"destination": "<DESTINATION NAME>",
"path": "/sap/opu/odata/sap/API_SALES_ORDER_SRV/"
}
}
},
"ProductMasterA2X": {
"kind": "odata-v2",
"model": "srv/external/ProductMasterA2X",
"[sandbox]": {
"credentials": {
"url": "https://sandbox.api.sap.com/s4hanacloud/sap/opu/odata/sap/API_PRODUCT_SRV/"
}
},
"[live]": {
"credentials": {
"destination": "<DESTINATION NAME>",
"path": "/sap/opu/odata/sap/API_PRODUCT_SRV/"
}
}
},
"BasicProductAvailabilityInfo": {
"kind": "odata-v2",
"model": "srv/external/BasicProductAvailabilityInfo",
"[sandbox]": {
"credentials": {
"url": "https://sandbox.api.sap.com/s4hanacloud/sap/opu/odata/sap/API_PRODUCT_AVAILY_INFO_BASIC"
}
},
"[live]": {
"credentials": {
"destination": "<DESTINATION NAME>",
"path": "/sap/opu/odata/sap/API_PRODUCT_AVAILY_INFO_BASIC/"
}
}
}
}
},
"sapux": [
"materialdashboard"
]
}