-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
125 lines (125 loc) · 2.95 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "georel-graph",
"version": "4.0.0",
"description": "Application for Customer GeoRelation Processing",
"repository": "<Add your repository here>",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@cap-js/hana": "^1.3.0",
"@sap-cloud-sdk/http-client": "^3.2.0",
"@sap-cloud-sdk/util": "^3.2.0",
"@sap/audit-logging": "^5.0.0",
"@sap/cds": "^8",
"@sap/xb-msg-amqp-v100": "^0.9.53",
"@sap/xssec": "^4",
"express": "^4",
"passport": "^0.4.1"
},
"devDependencies": {
"@cap-js/sqlite":"^1.0.1"
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"mocha": "^9.0.2",
},
"scripts": {
"start": "cds-serve",
"debug": "cds-serve --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 360000 --exit"
},
"cds": {
"--log": {
"levels": {
"remote": "debug"
}
},
"requires": {
"messaging": {
"kind": "local-messaging",
"[production]": {
"kind": "enterprise-messaging-shared",
"queue": {
"name": "sap/geograph/1/georel-graph-srv/1234"
},
"amqp": {
"incomingSessionWindow": 30
},
"format": "cloudevents"
},
"[hybrid]": {
"kind": "enterprise-messaging-shared",
"queue": {
"name": "sap/geograph/1/georel-graph-srv/1234"
},
"amqp": {
"incomingSessionWindow": 30
},
"format": "cloudevents"
}
},
"db": {
"kind": "sql",
"--credentials": {
"database": "geo.db"
}
},
"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-cc"
}
},
"sap.graph": {
"kind": "odata",
"model": "srv/external/sap.graph",
"credentials": {
"path": "/sap.graph",
"destination": "graph-api"
}
},
"sap.c4c": {
"kind": "odata",
"model": "srv/external/sap.c4c",
"credentials": {
"path": "/sap.c4c",
"destination": "graph-api-cc"
}
},
"custom.ns": {
"kind": "odata",
"model": "srv/external/custom.ns",
"credentials": {
"path": "/custom.ns",
"destination": "graph-api-cc"
}
}
},
"hana": {
"deploy-format": "hdbtable"
}
},
"sapux": [
"app/geo-customer"
]
}