-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.92 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
{
"name": "@camunda8/sap-btp-plugin",
"version": "1.0.4",
"description": "mono repo for the Camunda BTP plugin, part of the SAP Integration",
"repository": "https://github.com/camunda/sap-btp-plugin",
"license": "Camunda License 1.0",
"workspaces": [
"core",
"fiori-app",
"router",
"user-task-fiori",
"websocket"
],
"scripts": {
"//start:*": "intended for dev time only",
"//start:hybrid": "authN and authZ against BTP xsuaa with the help of cds bind",
"//start:local": "no authN and auth - dev-approuter also starts the backend - make sure to also set 'authenticationMethod' to 'none' in xs-dev.json",
"hybrid:app": "npm run start:local -w fiori-app",
"hybrid:backend": "cd core; PORT=4004 cds run --profile hybrid",
"//hybrid:xs-app": "this is needed for destination resolution",
"hybrid:xs-app": "cp router/xs-app.json router/xs-app.json.orig; cp router/xs-app-hybrid.json router/xs-app.json",
"hybrid:router": "npm start -w router",
"local:app": "npm run -w core deploy; npm run start:local -w fiori-app",
"local:router": "npm run start:local -w router",
"start:hybrid": "cross-env NODE_ENV=localdev npm-run-all --parallel hybrid:*",
"start:local": "cross-env NODE_ENV=localdev npm-run-all --parallel local:*",
"e2e:codegen": "npx playwright codegen --browser=chromium http://localhost:5001/app/index.html",
"e2e:test": "npx playwright test --config fiori-app/webapp/test/playwrightE2E/playwright.config.ts",
"postinstall": "patch-package"
},
"dependencies": {
"@cap-js/postgres": "^2",
"@sap/cds": "^9",
"patch-package": "^8.0.0"
},
"devDependencies": {
"@cap-js/cds-types": "^0.15",
"@cap-js/sqlite": "^2",
"@eslint/js": "^9.28.0",
"@playwright/test": "^1.56.1",
"@types/node": "^24.8.1",
"cross-env": "^7.0.3",
"eslint": "^9.28.0",
"globals": "^16.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3"
}
}