Files
cloud-cap-samples/reviews/package.json
Steffen Weinstock a524e419db use database constraints
... in bookshop, orders, reviews
+ update package.json and package-lock.json as db constraints
  requires latest cds
2021-12-21 10:09:09 +01:00

26 lines
519 B
JSON

{
"name": "@capire/reviews",
"version": "1.0.0",
"files": [
"db",
"srv",
"index.cds"
],
"dependencies": {
"@sap/cds": "^5",
"express": "^4.17.1"
},
"cds": {
"requires": {
"messaging": {
"[development]": { "kind": "file-based-messaging" },
"[hybrid]": { "kind": "enterprise-messaging-shared" },
"[production]": { "kind": "enterprise-messaging" }
},
"db": { "kind": "sql" }
},
"features": {
"assert_integrity": "db"
}
}
}