Add initial content

This commit is contained in:
i079695
2019-09-06 12:16:54 +02:00
parent 1b459f9e49
commit 7825653c61
18 changed files with 415 additions and 0 deletions

16
package.json Normal file
View File

@@ -0,0 +1,16 @@
{
"name": "@sap/capire-samples",
"description": "The umbrella project for all samples to easily setup for local development and tests.",
"repository": "https://github.wdf.sap.corp/capire/samples.git",
"author": "daniel.hutzel@sap.com",
"private": true,
"scripts": {
"install": "(npx --no-install lerna -v || npm i lerna --no-save) && lerna bootstrap --hoist --ignore tests-env --loglevel warn",
"reset": "lerna clean -y && rm -fr node_modules",
"test": "jest",
"bookstore": "cds run packages/bookstore --in-memory",
"products-service": "cds run packages/products-service --in-memory",
"reviews-service": "cds run packages/reviews-service --in-memory"
},
"license": "ISC"
}