* Remove OData v2 show case: Genres TreeView * Refactored bookstore and fiori services: consolidate routing and remove deprecated files * Add Jest configuration file with silent mode enabled * Refactor test files: streamline imports and remove redundant code * Change price field type to Price for better clarity and precision * Example for separation of concerns: access-control.cds
44 lines
795 B
JSON
44 lines
795 B
JSON
{
|
|
"name": "@capire/fiori",
|
|
"version": "1.0.0",
|
|
"dependencies": {
|
|
"@capire/bookstore": "*",
|
|
"@sap/cds": ">=5",
|
|
"express": "^4.17.1"
|
|
},
|
|
"devDependencies": {
|
|
"@cap-js/sqlite": "^1"
|
|
},
|
|
"scripts": {
|
|
"start": "cds-serve",
|
|
"watch": "cds watch"
|
|
},
|
|
"cds": {
|
|
"requires": {
|
|
"ReviewsService": {
|
|
"kind": "odata",
|
|
"model": "@capire/reviews"
|
|
},
|
|
"OrdersService": {
|
|
"kind": "odata",
|
|
"model": "@capire/orders"
|
|
},
|
|
"messaging": true,
|
|
"db": true,
|
|
"db-ext": {
|
|
"[development]": {
|
|
"model": "db/sqlite"
|
|
},
|
|
"[production]": {
|
|
"model": "db/hana"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"sapux": [
|
|
"app/admin-authors",
|
|
"app/admin-books",
|
|
"app/browse"
|
|
]
|
|
}
|