49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
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",
|
|
"@sap/xb-msg-amqp-v100": "^0.9.31-SNAPSHOT",
|
|
"express": "*",
|
|
"passport": "^0.4.0",
|
|
"sqlite3": "^4.1.0"
|
|
},
|
|
"scripts": {
|
|
"start": "cds run --in-memory?",
|
|
"watch": "cds watch"
|
|
},
|
|
"cds": {
|
|
"requires": {
|
|
"API_BUSINESS_PARTNER": {
|
|
"kind": "odata",
|
|
"model": "srv/external",
|
|
"--credentials": {
|
|
"destination": "cap-api098"
|
|
}
|
|
},
|
|
"--messaging": {
|
|
"kind": "enterprise-messaging",
|
|
"credentials": {
|
|
"prefix": "sap/S4HANAOD/c098/BO"
|
|
}
|
|
}
|
|
},
|
|
"auth": {
|
|
"passport": {
|
|
"strategy": "mock",
|
|
"users": {
|
|
"alice": {
|
|
"roles": [
|
|
"admin"
|
|
],
|
|
"password": "secret",
|
|
"ID": "ALICE"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|