-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.28 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
{
"name": "btpgenai4s4",
"version": "1.0.0",
"description": "A simple CAP project.",
"repository": "<Add your repository here>",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@cap-js/attachments": "^1.1.8",
"@cap-js/hana": "^1",
"@sap-ai-sdk/foundation-models": "^1.3.0",
"@sap-ai-sdk/orchestration": "^1.3.0",
"@sap-cloud-sdk/http-client": "^3.22.2",
"@sap-cloud-sdk/util": "^3.22.2",
"@sap/cds": "^8",
"@sap/low-code-event-handler": "^1.2.4",
"@sap/mdk-tools": "^1.3.1",
"@sap/xsenv": ">=3.3.2 <3.3.3",
"@sap/xssec": "^4.2.6",
"express": "^4",
"hdb": "^0.19.10",
"passport": "^0.7.0"
},
"devDependencies": {
"@cap-js/cds-types": "^0.6",
"@cap-js/sqlite": "^1",
"@sap/dev-cap-tools": "^1.31.0",
"@sap/ux-specification": "UI5-1.120"
},
"scripts": {
"start": "cds-serve",
"start-local": "npm run generate-entry-point && npm run cds-watch",
"generate-entry-point": "dev-cap-tools gen-entrypoint",
"cds-watch": "cds watch --open",
"watch-btpgenai4s4.customermessages": "cds watch --open btpgenai4s4.customermessages/webapp/index.html?sap-ui-xx-viewCache=false",
"watch-btpgenai4s4.productfaqsapp": "cds watch --open btpgenai4s4.productfaqsapp/webapp/index.html?sap-ui-xx-viewCache=false",
"watch-btpgenai4s4.reportaproductissue": "cds watch --open btpgenai4s4.reportaproductissue/webapp/index.html?sap-ui-xx-viewCache=false"
},
"cds": {
"sql": {
"native_hana_associations": false
},
"requires": {
"[production]": {
"db": "hana",
"auth": "xsuaa"
},
"app-service": {
"impl": "@sap/low-code-event-handler"
},
"auth": {
"[development]": {
"kind": "dummy"
},
"[production]": {
"kind": "xsuaa"
}
},
"S4HCP_ServiceOrder_Odata": {
"kind": "odata-v2",
"csrf": true,
"csrfInBatch": true,
"model": "srv/external/S4HCP_ServiceOrder_Odata",
"[production]": {
"credentials": {
"destination": "S4HCP-ServiceOrder-Odata"
}
}
}
}
},
"lcap": true,
"sapux": [
"app/btpgenai4s4.customermessages",
"app/btpgenai4s4.productfaqsapp",
"app/btpgenai4s4.reportaproductissue"
]
}