-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.02 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "ssffcecons",
"version": "1.0.0",
"description": "CAP application consuming events from SAP Cloud Application Event Hub",
"repository": "<Add your repository here>",
"license": "UNLICENSED",
"dependencies": {
"@cap-js/event-broker": "^0.2.0",
"@cap-js/sqlite": "^1",
"@sap-cloud-sdk/connectivity": "^3.17.0",
"@sap/cds": "^8",
"@sap/xssec": "^3",
"express": "^4",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@cap-js/cds-types": "^0.6",
"@cap-js/sqlite": "^1",
"@sap/cds-dk": "^8",
"@sap/ux-specification": "^1.124.9",
"rimraf": "^5.0.5"
},
"scripts": {
"build": "mbt build -t gen --mtar mta.tar",
"deploy": "cf deploy gen/mta.tar",
"undeploy": "cf undeploy cap.ssffcecons --delete-services --delete-service-keys",
"watch": "cds watch",
"start": "cds-serve",
"watch-consumed-events": "cds watch --open consumed-events/webapp/index.html?sap-ui-xx-viewCache=false"
},
"sapux": [
"app/consumed-events"
],
"cds": {
"[production]": {
"requires": {
"auth": "jwt"
}
},
"requires": {
"auth": {
"kind": "mocked",
"users": {
"alice": {
"roles": [
"support",
"admin"
]
},
"bob": {
"roles": [
"support"
]
}
}
},
"db": {
"kind": "sqlite",
"credentials": {
"url": "db.sqlite",
"[test]": {
"url": ":memory:"
}
}
},
"messaging": {
"kind": "event-broker",
"webhookPath": "/-/cds/event-hub/webhook"
},
"my-ias": {
"vcap": {
"label": "identity"
}
},
"API_BUSINESS_PARTNER": {
"kind": "odata-v2",
"model": "srv/external/API_BUSINESS_PARTNER",
"credentials": {
"destination": "S4HANA",
"path": "/sap/opu/odata/sap/API_BUSINESS_PARTNER"
}
}
}
},
"private": true
}