-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.64 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
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
{
"name": "SupplierControlApp",
"version": "1.0.0",
"description": "Vendor Management Control Tower ",
"repository": "Supplier Control Tower ",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@cap-js/postgres": "^1.2.1",
"@sap-cloud-sdk/core": "^1.54.2",
"@sap/approuter": "^12.0.0",
"@sap/audit-logging": "^3.2.0",
"@sap/cds": "7.1.2",
"@sap/cds-compiler": "4.1.2",
"@sap/cds-odata-v2-adapter-proxy": "^1.9.19",
"@sap/xsenv": "^4.0.0",
"@sap/xssec": "^3.2.18",
"concurrently": "^5.3.0",
"csv-parse": "^5.5.0",
"cuid": "^3.0.0",
"express": "^4",
"form-data": "^4.0.0",
"fs": "^0.0.1-security",
"fuzzball": "^2.1.2",
"jszip": "^3.10.1",
"moment": "^2.29.4",
"passport": "0.6.0",
"stream": "^0.0.2",
"uuid": "^9.0.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@sap/cds-dk": "7.1.1",
"@ui5/cli": "^3.6.1"
},
"engines": {
"node": "^18"
},
"scripts": {
"start": "cds-serve",
"local:dev": "concurrently --kill-others \"npm run local:cds:watch\" \"npm run local:approuter\"",
"local:debug": "concurrently --kill-others \"npm run local:cds:run\" \"npm run local:approuter\"",
"local:cds:watch": "node node_modules/@sap/cds/bin/cds watch",
"local:cds:run": "node --inspect node_modules/@sap/cds/bin/cds-serve",
"local:approuter": "cd app/ && npm start",
"ui5-start": "ui5 serve --port 8080",
"build": "ui5 build -a --clean-dest",
"build-self-contained": "ui5 build self-contained -a --clean-dest",
"serve-dist": "ws --compress -d dist",
"mta:package": "mbt build --mtar SupplierControlApp_0.0.1.mtar --platform cf",
"mta:deploy": "cf deploy mta_archives/SupplierControlApp_0.0.1.mtar -f",
"local:pg": "cds watch --profile pg",
"local:db:build": "cds deploy --profile pg"
},
"cds": {
"odata": {
"version": "v4"
},
"features": {
"cds_tx_inheritance": false,
"cds_tx_protection": false
},
"auth": {
"passport": {
"strategy": "JWT"
}
},
"requires": {
"auth": {
"kind": "xsuaa"
},
"db": {
"kind": "postgres",
"pool": {
"acquireTimeoutMillis": 5000,
"acquire": 1000000,
"idle": 200000,
"min": 0,
"max": 100,
"fifo": true
}
},
"[development]": {
"kind": "postgres",
"impl": "@cap-js/postgres",
"credentials": {
"host": "localhost",
"port": 5432,
"database": "suppliercontroldb",
"user": "postgres",
"password": "postgres"
}
}
}
}
}