forked from SAP-samples/btp-build-resilient-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.34 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
97
98
99
100
101
102
103
104
105
106
107
{
"name": "BusinessPartnerVerification",
"version": "1.0.0",
"description": "A simple CAP project.",
"repository": "<Add your repository here>",
"license": "UNLICENSED",
"private": true,
"engines": {
"node": ">=12"
},
"dependencies": {
"@sap-cloud-sdk/core": "^1.54.0",
"@sap/cds": "^5.9.0",
"@sap/cloud-sdk-vdm-business-partner-service": "^2.0.0",
"@sap/hana-client": "^2.12.20",
"@sap/xb-msg-amqp-v100": "^0.9.58",
"@sap/xsenv": "^3.2.1",
"@sap/xssec": "^3.2.13",
"@xmldom/xmldom": "^0.8.1",
"express": "^4.17.3",
"hdb": "^0.19.1",
"lodash": "^4.17.21",
"passport": "^0.5.2",
"supertest": "^6.2.2",
"tar": "^6.1.11"
},
"devDependencies": {
"@sap/approuter": "10.14.x",
"@sap/eslint-plugin-ui5-jsdocs": "2.0.x",
"@sap/hdi-deploy": "4.3.0",
"@sap/html5-repo-mock": "2.1.x",
"@sap/ui5-builder-webide-extension": "^1.1.7",
"@sap/ux-specification": "^1.96.6",
"@sapui5/ts-types": "1.100.x",
"@ui5/cli": "2.14.7",
"bestzip": "2.2.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"chai-subset": "^1.6.0",
"eslint": "8.12.x",
"mocha": "^9.2.2",
"npm-run-all": "^4.1.5",
"rimraf": "3.0.2",
"sqlite3": "5.0.2",
"npm-check-updates": "^12.5.4"
},
"scripts": {
"update-dependencies": "ncu -u",
"test:odata_negative": "mocha tests/odata-negative.js --timeout 15000 --exit",
"test:odata": "mocha tests/odata.js --timeout 15000 --exit",
"start": "npx -n=\"--inspect\" cds run"
},
"cds": {
"hana": {
"deploy-format": "hdbtable"
},
"requires": {
"db": {
"kind": "sql"
},
"messaging": {
"kind": "file-based-messaging",
"[production]": {
"kind": "enterprise-messaging-shared"
},
"file": "../msg-box"
},
"[production]": {
"OP_API_BUSINESS_PARTNER_SRV": {
"kind": "odata",
"model": "srv/external/OP_API_BUSINESS_PARTNER_SRV",
"credentials": {
"destination": "BusinessPartner",
"path": "/sap/opu/odata/sap/API_BUSINESS_PARTNER",
"requestTimeout": 1000000
}
}
},
"[qa]": {
"requires": {
"OP_API_BUSINESS_PARTNER_SRV": {
"kind": "odata",
"model": "srv/external/OP_API_BUSINESS_PARTNER_SRV",
"credentials": {
"destination": "BusinessPartner",
"path": "/sap/opu/odata/sap/API_BUSINESS_PARTNER",
"requestTimeout": 1000000
}
}
}
}
}
},
"sapux": [
"app/businesspartners"
],
"ui5": {
"dependencies": [
"@sap/ui5-builder-webide-extension"
]
},
"jest": {
"testEnvironment": "node",
"testTimeout": 20000
}
}