-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.26 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
{
"name": "kyma-cap-s4ems",
"version": "1.0.0",
"description": "A simple CAP project.",
"repository": "<Add your repository here>",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@sap-cloud-sdk/http-client": "^2.5.0",
"@sap-cloud-sdk/util": "^2.5.0",
"@sap/cds": "6.1.3",
"@sap/xb-msg-amqp-v100": "0.9.52",
"@sap/xssec": "^3.2.3",
"express": "^4",
"hdb": "^0.18.2",
"passport": "^0.4.1",
"postcode-validator": "^3.5.3"
},
"devDependencies": {
"@sap/ux-specification": "^1.90.15",
"sqlite3": "5.0.8",
"jest": "*",
"mocha": "^9.2.1",
"chai": "^4.3.4",
"chai-http": "^4.3.0"
},
"scripts": {
"start": "cds run",
"watch-businesspartner": "cds watch --open businesspartner/webapp/index.html#fe-lrop-v4",
"watch-businesspartners": "cds watch --open businesspartners/webapp/index.html#fe-lrop-v4"
},
"cds": {
"features": {
"emulate_vcap_services": true
},
"hana": {
"deploy-format": "hdbtable"
},
"requires": {
"[production]": {
"db": {
"kind": "sql",
"model": [
"db",
"srv"
],
"vcap": {
"label": "hana"
}
}
},
"messaging": {
"kind": "local-messaging",
"[production]": {
"kind": "enterprise-messaging-shared",
"queue": {
"name": "$namespace/CAP/0001"
},
"vcap": {
"label": "enterprise-messaging"
},
"publishPrefix": "$namespace/",
"subscribePrefix": "$namespace/"
}
},
"uaa": {
"kind": "xsuaa",
"vcap": {
"label": "xsuaa"
}
},
"destination": {
"vcap": {
"label": "destination"
}
},
"connectivity": {
"vcap": {
"label": "connectivity"
}
},
"API_BUSINESS_PARTNER": {
"kind": "odata",
"model": "srv/external/API_BUSINESS_PARTNER",
"[production]": {
"credentials": {
"destination": "s4h",
"path": "/sap/opu/odata/sap/API_BUSINESS_PARTNER"
}
}
}
}
},
"sapux": [
"app/businesspartners",
"app/businesspartners"
]
}