forked from SAP-archive/teched2020-developer-keynote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.22 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
53
54
{
"name": "brain",
"version": "1.0.0",
"description": "A simple CAP project.",
"repository": "<Add your repository here>",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@sap/cds": "^4",
"@sap/xb-msg-amqp-v100": "latest",
"@sap/hana-client": "^2.5",
"console-log-level": "^1.4.1",
"express": "^4"
},
"devDependencies": {
"prettier": "2.1.2",
"sqlite3": "^4"
},
"scripts": {
"start": "cds run",
"hana": "cds deploy --to hana:brain --auto-undeploy",
"build": "cds build/all --clean"
},
"cds": {
"hana": {
"deploy-format": "hdbtable"
},
"requires": {
"messaging": {
"kind": "enterprise-messaging"
},
"db": {
"kind": "sqlite",
"credentials": {
"database": "brain.db"
}
},
"S4SalesOrders": {
"kind": "odata",
"model": "srv/external/API_SALES_ORDER_SRV",
"credentials": {
"destination": "apihub_mock_salesorders",
"path": "/sap/opu/odata/sap/API_SALES_ORDER_SRV"
}
},
"ConversionService": {
"kind": "rest",
"credentials": {
"destination": "charityfund_converter"
}
}
}
}
}