33 lines
671 B
JSON
33 lines
671 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": "*",
|
|
"hdb": "^0.17.1"
|
|
},
|
|
"scripts": {
|
|
"start": "npx cds run"
|
|
},
|
|
"cds": {
|
|
"requires": {
|
|
"db": {
|
|
"kind": "sqlite",
|
|
"model": [
|
|
"db/",
|
|
"srv/",
|
|
"app/"
|
|
],
|
|
"credentials": {
|
|
"database": "bookshop.db"
|
|
},
|
|
"[production]": {
|
|
"kind": "hana"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|