-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.54 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
{
"name": "bug-story",
"version": "1.0.0",
"description": "A simple CAP project.",
"repository": "<Add your repository here>",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@graphql-tools/schema": "^8.3.1",
"@sap/audit-logging": "^5.1.0",
"@sap/cds": "^5",
"@sap/cds-odata-v2-adapter-proxy": "^1.7.15",
"@sap/hana-client": "^2.10.15",
"@sap/xsenv": "^3.1.1",
"@sap/xssec": "^3.2.10",
"dayjs": "^1.10.7",
"express": "^4",
"express-graphql": "^0.12.0",
"graphql": "^15.3.0",
"helmet": "^4.6.0",
"passport": "^0.6.0",
"passport-oauth2": "^1.6.1"
},
"scripts": {
"startdev": "npx cds run",
"start": "cds run",
"test": "mocha test/project_tests.js --timeout 15000 --exit"
},
"cds": {
"hana": {
"deploy-format": "hdbtable"
},
"requires": {
"uaa": {
"kind": "xsuaa"
},
"db": {
"kind": "hana",
"credentials": {}
},
"userExtService": {
"kind": "rest",
"credentials": {
"destination": "userBugDestinationSrv",
"path": "/Users",
"requestTimeout": 30000
},
"pool": {
"min": 1,
"max": 10
}
}
},
"features": {
"graphql": true
},
"odata": {
"version": "v4"
}
},
"devDependencies": {
"@sap/ux-specification": "^1.90.13",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"mocha": "^9.1.3",
"sqlite3": "^5.0.2"
},
"sapux": [
"app/project1",
"app/usermanagement"
]
}