This commit is contained in:
Daniel
2020-03-01 18:25:53 +01:00
parent 06755978b2
commit 3731a7ea23
43 changed files with 87 additions and 77 deletions

22
bookshop/package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"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/capire-common": "*",
"@sap/cds": "*",
"express": "*"
},
"scripts": {
"start": "cds run --in-memory?",
"watch": "cds watch"
},
"cds": {
"requires": {
"db": {
"kind": "sql"
}
}
}
}