Files
cloud-cap-samples/bookshop/package.json
2020-11-14 21:38:18 +01:00

24 lines
566 B
JSON

{
"name": "@capire/bookshop",
"version": "1.0.0",
"description": "A simple self-contained bookshop service.",
"dependencies": {
"@capire/common": "*",
"@sap/cds": "^4",
"express": "^4.17.1"
},
"scripts": {
"genres": "cds serve test/genres.cds",
"start": "cds run",
"watch": "cds watch",
"to-openapi": "cds compile srv --to openapi -s CatalogService -o srv --openapi:diagram && mv srv/srv.openapi3.json srv/CatalogService.openapi3.json"
},
"cds": {
"requires": {
"db": {
"kind": "sql"
}
}
}
}