* 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
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"name": "@capire/samples",
|
|
"version": "3.0.0",
|
|
"description": "A monorepo with several samples for CAP.",
|
|
"repository": "https://github.com/sap-samples/cloud-cap-samples.git",
|
|
"author": "daniel.hutzel@sap.com",
|
|
"workspaces": [
|
|
"./bookshop",
|
|
"./bookstore",
|
|
"./common",
|
|
"./fiori",
|
|
"./orders",
|
|
"./reviews",
|
|
"./etc/data-viewer",
|
|
"./etc/loggers"
|
|
],
|
|
"devDependencies": {
|
|
"@cap-js/cds-test": "^0",
|
|
"@eslint/js": "^9.22.0"
|
|
},
|
|
"scripts": {
|
|
"bookstore": "cds watch bookstore",
|
|
"bookshop": "cds watch bookshop",
|
|
"fiori": "cds watch fiori",
|
|
"orders": "cds watch orders",
|
|
"reviews": "cds watch reviews",
|
|
"lint": "npx eslint",
|
|
"test": "chest test",
|
|
"build": "mbt build -t gen --mtar mta.tar",
|
|
"deploy": "cf deploy gen/mta.tar",
|
|
"undeploy": "cf undeploy capire.samples --delete-services --delete-service-keys"
|
|
},
|
|
"mocha": {
|
|
"recursive": true,
|
|
"parallel": true,
|
|
"timeout": 6666
|
|
},
|
|
"license": "SEE LICENSE IN LICENSE",
|
|
"private": true
|
|
}
|