-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 906 Bytes
/
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
{
"name": "reg-reports",
"version": "1.0.0",
"description": "A simple CAP project.",
"repository": "<Add your repository here>",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@cap-js/graphql": "^0.9.0",
"@sap-cloud-sdk/http-client": "^3.8.1",
"@sap-cloud-sdk/resilience": "^3.8.1",
"@sap/cds": "^7",
"express": "^4"
},
"devDependencies": {
"@cap-js/sqlite": "^1",
"@sap/ux-specification": "^1.120.0",
"eslint": "^8.55.0"
},
"scripts": {
"start": "cds-serve",
"watch-reg-reports": "cds watch --open reg-reports/webapp/index.html?sap-ui-xx-viewCache=false"
},
"cds": {
"requires": {
"db": {
"kind": "sqlite",
"credentials": {
"url": "db/reg-reports.sqlite"
}
},
"API_TICKETS": {
"kind": "odata-v2",
"model": "srv/external/API_TICKETS"
}
}
}
}