-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.11 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
{
"name": "cap-features-demos",
"version": "1.0.0",
"description": "A simple CAP project.",
"repository": "<Add your repository here>",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@sap/cds": "^7",
"@sap/cds-hana": "^2",
"express": "^4"
},
"devDependencies": {
"@cap-js/sqlite": "^1",
"@sap/cds-dk": "^7",
"@sap/ux-specification": "^1.108.13",
"rimraf": "^3.0.2"
},
"scripts": {
"dev": "cds watch --profile hybrid",
"start": "cds-serve",
"watch-poc_totals": "cds watch --open poc_totals/webapp/index.html?sap-ui-xx-viewCache=false",
"undeploy": "cf undeploy cap-features-demos --delete-services --delete-service-keys --delete-service-brokers",
"build": "rimraf resources mta_archives && mbt build --mtar archive",
"deploy": "cf deploy mta_archives/archive.mtar --retries 1"
},
"cds": {
"requires": {
"db": "hana"
},
"features": {
"odata_new_parser": true
}
},
"sapux": [
"app/poc_totals"
]
}