Add Jest as dev dependency to bookshop

This commit is contained in:
Christian Georgi
2020-02-10 09:30:26 +00:00
parent ffc9fbd5f5
commit c20c1609a7
2 changed files with 23 additions and 21 deletions

View File

@@ -5,11 +5,13 @@
"license": "SAP SAMPLE CODE LICENSE",
"dependencies": {
"@sap/cds": "latest",
"express": "*",
"hdb": "^0.17.1"
"express": "*"
},
"devDependencies": {
"jest": "*"
},
"scripts": {
"start": "npx cds run",
"test": "../../node_modules/.bin/jest"
"test": "jest"
}
}