-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.67 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.67 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "letsencrypt",
"version": "1.0.0",
"description": "A simple CAP project.",
"repository": "<Add your repository here>",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@sap/cds": "^9",
"@sap/xsenv": "^6",
"@sap/xssec": "^4",
"acme-client": "^5.0.0",
"axios": "^1.2.0",
"express": "^5",
"passport": "^0"
},
"devDependencies": {
"@sap/ux-specification": "^1.136"
},
"scripts": {
"login": "cf api https://api.cf.eu10.hana.ondemand.com && cf login --sso",
"login004": "cf api https://api.cf.eu10-004.hana.ondemand.com && cf login --sso",
"start": "cds-serve",
"watch-certificates": "cds watch --open certificates/webapp/index.html?sap-ui-xx-viewCache=false",
"build": "mbt build -p cf",
"deploy": "cf deploy mta_archives/letsencrypt_1.0.0.mtar",
"buildDeploy": "mbt build -p cf && cf deploy mta_archives/letsencrypt_1.0.0.mtar",
"deploySrv": "cf deploy mta_archives/letsencrypt_1.0.0.mtar -m letsencrypt-srv",
"logSrv": "cf logs letsencrypt-srv",
"bindCustomDomainService": "cds bind --to custom-domain-service --for hybrid",
"bindDestinationService": "cds bind --to letsencrypt-destination --for hybrid",
"bindJobSchedulingService": "cds bind --to jobscheduler --for hybrid",
"cfEnvToDefault": "node scripts/extract-cf-env.js letsencrypt-srv default-env.json",
"prepareCdsWatchHybrid": "npm run bindCustomDomainService && npm run bindDestinationService && npm run bindJobSchedulingService",
"cdsWatchHybrid": "DEBUG=custom cds watch --profile hybrid --open certificates/webapp/index.html?sap-ui-xx-viewCache=false"
},
"engines": {
"node": "^24"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"es2020": true,
"node": true,
"jest": true,
"mocha": true
},
"globals": {
"SELECT": true,
"INSERT": true,
"UPDATE": true,
"DELETE": true,
"CREATE": true,
"DROP": true,
"CDL": true,
"CQL": true,
"CXL": true,
"cds": true
},
"rules": {
"no-console": "off",
"require-atomic-updates": "off"
}
},
"sapux": [
"app/certificates",
"app/certificates"
],
"cds": {
"requires": {
"db": false,
"[production]": {
"auth": {
"kind": "xsuaa"
},
"approuter": {
"kind": "cloudfoundry"
}
},
"[hybrid]": {
"auth": {
"kind": "mocked",
"users": {
"alice": {
"roles": [
"jobscheduler"
]
}
}
}
}
}
},
"customDomain": {
"email": "dev@example.com"
}
}