Add package-lock.json, fix readme

This commit is contained in:
Christian Georgi
2020-04-02 15:47:34 +02:00
parent ba1eead6db
commit 75e767ed5c
5 changed files with 2070 additions and 5 deletions

1
.npmrc Normal file
View File

@@ -0,0 +1 @@
@sap:registry=https://npm.sap.com

View File

@@ -11,7 +11,7 @@ In SAP Business Application Studio, open a terminal.
Then clone the repo with this specific branch: Then clone the repo with this specific branch:
```sh ```sh
git clone https://github.com/sap-samples/cloud-cap-samples -b OpenSAP-week2-unit3 git clone https://github.com/sap-samples/cloud-cap-samples -b openSAP-week2-unit3
cd cloud-cap-samples cd cloud-cap-samples
``` ```

2064
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -11,8 +11,8 @@
"bookshop": "cds watch packages/bookshop" "bookshop": "cds watch packages/bookshop"
}, },
"dependencies": { "dependencies": {
"@sap/cds": "latest", "@sap/cds": "^3",
"express": "*" "express": "^4"
}, },
"devDependencies": { "devDependencies": {
"sqlite3": "*" "sqlite3": "*"

View File

@@ -4,8 +4,8 @@
"description": "A simple bookshop application, build in a self-contained all-in-one fashion, i.e. w/o reusing other packages.", "description": "A simple bookshop application, build in a self-contained all-in-one fashion, i.e. w/o reusing other packages.",
"license": "SAP SAMPLE CODE LICENSE", "license": "SAP SAMPLE CODE LICENSE",
"dependencies": { "dependencies": {
"@sap/cds": "latest", "@sap/cds": "^3",
"express": "*" "express": "^4"
}, },
"scripts": { "scripts": {
"start": "cds run --in-memory?", "start": "cds run --in-memory?",