Files
cloud-cap-samples/multitenancy/package.json
nkaputnik 82d1891ece CDS 5.2.0
2021-06-11 13:34:16 +02:00

102 lines
2.3 KiB
JSON

{
"name": "multitenancy",
"version": "1.0.0",
"description": "A simple CAP project.",
"repository": "<Add your repository here>",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@sap/cds": "git+https://dd15a9cc2fa570fa26a4ab135f488ba260d65408:x-oauth-basic@github.wdf.sap.corp/cdx/cds.git#rel/5.2.0",
"@sap/cds-mtx": "git+https://dd15a9cc2fa570fa26a4ab135f488ba260d65408:x-oauth-basic@github.wdf.sap.corp/cdx/cds-mtx.git",
"@sap/cds-runtime": "git+https://dd15a9cc2fa570fa26a4ab135f488ba260d65408:x-oauth-basic@github.wdf.sap.corp/cdx/cds-runtime.git#rel/3.2.0",
"@sap/hana-client": "^2",
"@sap/hdi-deploy": "^4",
"@sap/instance-manager": "^2",
"@sap/xssec": "^3",
"express": "^4",
"passport": "^0"
},
"devDependencies": {
"sqlite3": "^5.0.2"
},
"scripts": {
"start": "cds run",
"watch": "cds watch"
},
"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"
}
},
"cds": {
"[production]": {
"features": {
"fiori_preview": true
},
"requires": {
"multitenancy": true,
"auth": {
"strategy": "JWT"
},
"db": {
"kind": "hana",
"vcap": {
"label": "service-manager"
}
},
"uaa": {
"kind": "xsuaa"
}
},
"hana": {
"deploy-format": "hdbtable"
},
"mtx": {
"namespace-blocklist": [
"com.sap.",
"sap."
],
"extension-allowlist": [
{
"for": [
"sap.capire.orders.Orders"
],
"new-fields": 77
},
{
"for": [
"OrdersService"
],
"new-entities": 88
}
]
},
"auth": {
"passport": {
"strategy": "JWT"
}
}
}
}
}