forked from SAP-archive/devops-cap-pipeline-openSAP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 765 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "@sap/capire-bookshop",
"version": "1.0.0",
"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",
"dependencies": {
"@sap/cds": "^4",
"@sap/hana-client": "^2.7.21",
"express": "^4.17.1"
},
"devDependencies": {
"@sap/cds-dk": "^3.4.0",
"sqlite3": "5.0.0"
},
"scripts": {
"start": "cds run"
},
"cds": {
"hana": {
"syntax": "hdi"
},
"requires": {
"db": {
"kind": "hana"
}
},
"[development]": {
"requires": {
"db": {
"kind": "sql",
"model": [
"db",
"srv"
]
}
}
}
}
}