What's working: - Address information on OP - Reading of S/4HANA Addresses - Translations
30 lines
658 B
JSON
30 lines
658 B
JSON
{
|
|
"name": "@sap/capire-bookshop",
|
|
"version": "1.0.0",
|
|
"description": "A simple bookshop application, build in a self-contained all-in-one fashion, i.e. w/o reusing other packages.",
|
|
"license": "SAP SAMPLE CODE LICENSE",
|
|
"dependencies": {
|
|
"@sap/cds": "latest",
|
|
"express": "*",
|
|
"sqlite3": "^4.1.0"
|
|
},
|
|
"scripts": {
|
|
"start": "npx cds run"
|
|
},
|
|
"cds": {
|
|
"requires": {
|
|
"API_BUSINESS_PARTNER": {
|
|
"kind": "odata",
|
|
"model": "srv/external/API_BUSINESS_PARTNER"
|
|
},
|
|
"db": {
|
|
"kind": "sqlite",
|
|
"model": [
|
|
"db/",
|
|
"srv/",
|
|
"app/"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
} |