Files
cloud-cap-samples/bookshop/package.json
Daniel bbebff4066 .
2022-04-08 19:52:26 +02:00

32 lines
550 B
JSON

{
"name": "@capire/bookshop",
"version": "1.0.0",
"description": "A simple self-contained bookshop service.",
"files": [
"app",
"srv",
"db",
"index.cds",
"index.js"
],
"dependencies": {
"@sap/cds": ">=5.9",
"express": "^4.17.1",
"passport": ">=0.4.1"
},
"scripts": {
"genres": "cds serve test/genres.cds",
"start": "cds run",
"watch": "cds watch"
},
"cds": {
"requires": {
"extensibility": true,
"-toggles": true,
"db": {
"kind": "sql"
}
}
}
}