forked from SAP-samples/btp-bas-risk-management
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 1.97 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
{
"name": "Riskmanagement_sap",
"version": "1.0.0",
"description": "A simple CAP project.",
"repository": "<Add your repository here>",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@sap-cloud-sdk/http-client": "^3.8.1",
"@sap-cloud-sdk/util": "^3.8",
"@sap/cds": "^6",
"@sap/low-code-event-handler": "^1.2.4",
"@sap/xsenv": "^4.2.0",
"@sap/xssec": "^3.6.0",
"express": "^4",
"hdb": "^0.19.7",
"passport": "^0.7.0"
},
"devDependencies": {
"@sap/ux-specification": "^1.120.0",
"sqlite3": "^5.1.6"
},
"scripts": {
"start": "cds run",
"watch-Riskmanagement_sap.Risks": "cds watch --open Riskmanagement_sap.Risks/webapp/index.html?sap-ui-xx-viewCache=false",
"watch-Riskmanagement_sap.mitigation": "cds watch --open Riskmanagement_sap.mitigation/webapp/index.html?sap-ui-xx-viewCache=false"
},
"engines": {
"node": "^14"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"es2020": true,
"node": true,
"jest": true,
"mocha": true
},
"globals": {
"SELECT": true,
"INSERT": true,
"UPDATE": true,
"DELETE": true,
"CREATE": true,
"DROP": true,
"CDL": true,
"CQL": true,
"CXL": true,
"cds": true
},
"rules": {
"no-console": "off",
"require-atomic-updates": "off"
}
},
"cds": {
"requires": {
"[production]": {
"db": {
"kind": "hana-cloud"
}
},
"db": {
"kind": "sql"
},
"app-service": {
"impl": "@sap/low-code-event-handler"
},
"auth": {
"kind": "xsuaa"
},
"bupa": {
"kind": "odata-v2",
"model": "srv/external/bupa",
"[production]": {
"credentials": {
"destination": "bupa"
}
}
}
}
},
"lcap": true,
"sapux": [
"app/Riskmanagement_sap.Risks",
"app/Riskmanagement_sap.mitigation"
]
}