forked from SAP-samples/cap-sflight
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
122 lines (122 loc) · 2.48 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@capire/sflight",
"version": "1.0.0",
"private": true,
"description": "CAP flight demo scenario",
"license": "SAP SAMPLE CODE LICENSE",
"repository": "https://github.com/SAP-samples/cap-sflight",
"engines": {
"node": ">=14"
},
"scripts": {
"lint": "npx eslint .",
"start": "cds run",
"test": "jest",
"test:mocha": "npx mocha --timeout 20000",
"travel-processor": "cds watch --open travel_processor/webapp/index.html?sap-ui-xx-viewCache=false",
"travel-analytics": "cds watch --open travel_analytics/webapp/index.html?sap-ui-xx-viewCache=false"
},
"dependencies": {
"@sap/cds": ">=5.4.5",
"@sap/xssec": "^3.2.7",
"express": "^4",
"hdb": "^0.19.1",
"passport": "^0.6.0"
},
"devDependencies": {
"@sap/ux-specification": "UI5-1.108",
"axios": "^1",
"chai": "^4.3.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"cross-spawn": "^7.0.3",
"http-proxy": "^1.18.1",
"jest": "^29.0.2",
"qunit": "^2.9.3",
"sqlite3": "^5"
},
"cds": {
"requires": {
"db": {
"kind": "sql"
},
"[production]": {
"db": {
"kind": "hana-cloud"
},
"auth": {
"kind": "xsuaa"
}
},
"[development]": {
"auth": {
"kind": "mocked-auth",
"users": {
"rose": {
"roles": []
},
"martha": {
"roles": [
"reviewer"
]
},
"amy": {
"roles": [
"processor"
]
},
"admin": {
"password": "admin",
"roles": [
"admin"
]
}
}
}
}
},
"log": {
"service": true
},
"features": {
"odata_new_parser": true
},
"build": {
"[node]": {
"target": "gen",
"tasks": [
{
"for": "node-cf"
},
{
"for": "hana"
}
]
},
"[java]": {
"target": ".",
"tasks": [
{
"for": "java-cf"
}
]
},
"[hana]": {
"target": "gen",
"tasks": [
{
"for": "hana"
}
]
}
}
},
"jest": {
"testEnvironment": "node",
"testTimeout": 20000
},
"sapux": [
"app/travel_processor",
"app/travel_analytics"
]
}