-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.18 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "davidk",
"version": "1.0.0",
"description": "Generated by cds init",
"repository": "<Add your repository here>",
"license": "ISC",
"dependencies": {
"@sap/cds": "^3.21.1",
"@sap/xb-msg-amqp-v100": "^0.9.34",
"express": "^4.17.1",
"hdb": "^0.17.1"
},
"engines": {
"node": "^8.9"
},
"scripts": {
"build": "cds build/all --clean",
"deploy": "cds deploy",
"start": "cds run"
},
"cds": {
"requires": {
"db": {
"kind": "sqlite",
"model": [
"db",
"srv"
],
"[production]": {
"kind": "hana"
}
},
"messaging": {
"_kind": "enterprise-messaging",
"credentials": {
"queue": "SafetyIncidents"
},
"kind": "file-based-messaging"
}
},
"odata": {
"version": "v4"
}
},
"files": [
"db",
"srv"
],
"devDependencies": {
"sqlite3": "^4.1.1"
}
}