forked from SAP-samples/cloud-extension-graph-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.89 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
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
{
"name": "georel-graph",
"version": "1.0.0",
"description": "Application for Customer GeoRelation Processing",
"repository": "<Add your repository here>",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@sap/cds": "5.6.1",
"@sap/xb-msg-amqp-v100": "^0.9.53",
"express": "^4",
"hdb": "^0.18.3",
"@sap/xssec": "^3.2.2",
"@sap/audit-logging": "^5.0.0",
"passport": "^0.4.1"
},
"devDependencies": {
"sqlite3": "^5.0.2",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"mocha": "^9.0.2"
},
"scripts": {
"start": "cds run",
"debug": "cds run --with-mocks --in-memory",
"watch-geo-customer": "cds watch --open geo-customer/webapp/index.html#fe-lrop-v4",
"test:integration": "mocha tests/integration/test.js --timeout 15000 --exit"
},
"cds": {
"features": {
"fetch_csrf": true
},
"requires": {
"messaging": {
"kind": "local-messaging",
"[production]": {
"kind": "enterprise-messaging-shared",
"queue": {
"name": "sap/geograph/1/georel-graph-srv/1234"
},
"amqp": {
"incomingSessionWindow": 30
},
"format": "cloudevents"
}
},
"db": {
"kind": "sql"
},
"uaa": {
"kind": "xsuaa"
},
"auth": {
"kind": "dummy-auth"
},
"[production]":{
"auth": {
"kind": "jwt-auth"
}
},
"GRAPH_CC": {
"kind": "odata",
"credentials": {
"path": "sap.s4",
"destination": "graph-api-cc"
}
},
"sap.s4": {
"kind": "odata",
"model": "srv/external/sap.s4",
"credentials": {
"path": "sap.s4",
"destination": "graph-api"
}
}
},
"hana": {
"deploy-format": "hdbtable"
}
},
"sapux": [
"app/geo-customer"
]
}