forked from bkrencker/HDIBackupRestore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "HDI-Backup",
"version": "1.0.0",
"description": "A simple CAP project.",
"repository": "https://github.com/bkrencker/HDIBackupRestore",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@aws-sdk/client-s3": "^3.574.0",
"@sap/cds": "^7",
"@sap/cds-hana": "^2",
"@sap/hana-client": "^2.20.20",
"@sap/xssec": "^3",
"axios": "^1.7.2",
"express": "^4"
},
"devDependencies": {
"@cap-js/sqlite": "^1",
"@sap/cds-dk": "^7",
"@sap/eslint-plugin-cds": "^3",
"@sap/ux-specification": "^1.120.9",
"eslint": "^9"
},
"scripts": {
"start": "cds-serve",
"watch": "cds watch --profile hybrid",
"watch-debug": "set DEBUG=custom & cds watch --profile hybrid",
"watch-chrome": "start chrome http://localhost:4004/backup/webapp/index.html?sap-ui-xx-viewCache=false && cds watch --profile hybrid",
"bindObjectstore": "cds bind --to objectstore",
"build": "mbt build -p=cf",
"deploy": "cf deploy mta_archives\\HDI-Backup_1.0.0.mtar",
"buildDeployCloud": "npm run build && npm run deploy"
},
"sapux": [
"app/backup"
],
"cds": {
"requires": {
"[production]": {
"db": "hana",
"auth": {
"kind": "xsuaa"
}
}
}
}
}