Files
cloud-cap-samples/suppliers/package.json
Uwe Klinger d04cb801c4 Updated
2021-06-09 07:10:28 +02:00

34 lines
796 B
JSON

{
"name": "@capire/suppliers",
"version": "1.0.0",
"description": "Shows integration with SAP S/4HANA, in turn provided as a reusable extension package to bookshop.",
"private": true,
"dependencies": {
"@capire/common": "*",
"@sap/cds": ">=4",
"express": "^4"
},
"scripts": {
"start": "cds run --in-memory?",
"watch": "cds watch",
"mocked-s4": "cds mock API_BUSINESS_PARTNER"
},
"cds": {
"requires": {
"API_BUSINESS_PARTNER": {
"kind": "odata",
"model": "srv/external/API_BUSINESS_PARTNER",
"credentials": {
"destination": "blub",
"url": "http://localhost:3333"
}
},
"[development]": {
"messaging": {
"kind": "file-based-messaging"
}
}
}
}
}