27 lines
809 B
JSON
27 lines
809 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": {
|
|
"cleanup": "lerna clean -y && rm -fr node_modules",
|
|
"install": "(npm -s run lerna) && lerna bootstrap --hoist",
|
|
"lerna": "npx --no-install lerna -v > /dev/null || npm i lerna --no-save",
|
|
"test": "jest",
|
|
"bookshop": "cds watch packages/bookshop"
|
|
},
|
|
"dependencies": {
|
|
"@sap/cds": "^3",
|
|
"express": "^4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "*",
|
|
"sqlite3": "*",
|
|
"jest": "*",
|
|
"supertest": "^4.0.2",
|
|
"@sap/hdi-deploy": "3.7.0"
|
|
},
|
|
"license": "SAP SAMPLE CODE LICENSE"
|
|
}
|