-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.55 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
{
"name": "incident-management",
"version": "1.0.0",
"description": "A simple CAP project.",
"repository": "<Add your repository here>",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@cap-js/hana": "^1",
"@sap/cds": "^8",
"@sap/xssec": "^4",
"express": "^4"
},
"devDependencies": {
"@cap-js/cds-types": "^0.6",
"@cap-js/sqlite": "^1",
"@sap/cds-dk": "^8.3.0",
"@sap/ux-specification": "UI5-1.129",
"axios": "^1.7.7",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"chai-subset": "^1.6.0",
"jest": "^29.7.0"
},
"scripts": {
"test": "jest tests/test.js",
"start": "cds-serve",
"watch-incidents": "cds watch --open incidents/webapp/index.html?sap-ui-xx-viewCache=false",
"cds-build": "npm install --include=dev && cds build --production"
},
"cds": {
"requires": {
"[development]": {
"auth": {
"kind": "mocked",
"users": {
"[email protected]": {
"password": "initial",
"roles": [
"support"
]
},
"alice": {
"roles": [
"support"
]
},
"bob": {
"roles": [
"support"
]
}
}
}
},
"[production]": {
"db": "hana",
"auth": "xsuaa"
},
"html5-repo": true
},
"sql": {
"native_hana_associations": false
}
},
"sapux": [
"app/incidents"
]
}