-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.9 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
{
"name": "BTPServiceOverview",
"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.15.0",
"@sap/cds": "^7",
"@sap/xsenv": "^3.4.0",
"@sap/xssec": "^3.2.17",
"cds-plugin-handlers": "^1.0.2",
"express": "^4",
"passport": "^0.6.0"
},
"devDependencies": {
"@sap/ux-specification": "^1.108.8",
"@types/node": "^20.2.5",
"cds-plugin-ui5": "^0.1.5",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"sqlite3": "^5.0.4",
"ts-node": "^10.4.0",
"typescript": "^5.0.3"
},
"scripts": {
"start": "cds-serve",
"start:ts": "cds-ts serve",
"watch:ts": "cds-ts watch --profile hybrid",
"build:cf": "npm run build:cds && npm run build:ts && npm run cleanup:ts && npm run cleanup:ts",
"build:ts": "tsc",
"build:cds": "cds build --production",
"cleanup:ts": "npx rimraf gen/srv/srv/**/*.ts",
"deploy:sql": "cds deploy --to sqlite",
"build": "rimraf resources mta_archives && mbt build --mtar archive",
"deploy": "cf deploy mta_archives/archive.mtar --retries 1",
"cds-ts:watch": "cds-ts watch",
"start:ui": "npm run start --prefix app/recap.capadvancedprogrammingmodel",
"demo": "npm-run-all -p start:ui cds-ts:watch"
},
"cds": {
"query": {
"limit": {
"default": 5000,
"max": 5000
}
},
"requires": {
"auth": {
"kind": "basic",
"restrict_all_services": false
},
"DISCOVERY_CENTER_API": {
"kind": "odata-v2",
"credentials": {
"url": "https://discovery-center.cloud.sap",
"path": "/servicecatalog"
}
}
}
},
"sapux": [
"app/recap.capadvancedprogrammingmodel",
"app/recap.capadvancedprogrammingmodel.btpservices"
],
"workspaces": [
"app/*"
]
}