* Bump to cds 4 * Cosmetics in handler code * await and cds.run([...]) instead of Promise.all Co-authored-by: Christian Georgi <christian.georgi@sap.com>
26 lines
782 B
JSON
26 lines
782 B
JSON
{
|
|
"name": "@sap/capire-samples",
|
|
"description": "The umbrella project for all samples to easily setup for local development and tests.",
|
|
"repository": "https://github.com/SAP-samples/cloud-cap-samples.git",
|
|
"author": "daniel.hutzel@sap.com",
|
|
"private": true,
|
|
"scripts": {
|
|
"lerna": "npx --no-install lerna -v > /dev/null || npm i lerna --no-save",
|
|
"install": "(npm -s run lerna) && lerna bootstrap --hoist",
|
|
"cleanup": "lerna clean -y && rm -fr node_modules",
|
|
"bookshop": "cds watch packages/bookshop"
|
|
},
|
|
"dependencies": {
|
|
"@sap/cds": "^4",
|
|
"express": "^4"
|
|
},
|
|
"devDependencies": {
|
|
"sqlite3": "*"
|
|
},
|
|
"--add-these-to-devDependencies-for-tests": {
|
|
"@types/jest": "*",
|
|
"jest": "*"
|
|
},
|
|
"license": "SAP SAMPLE CODE LICENSE"
|
|
}
|