-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
123 lines (123 loc) · 2.7 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
123
{
"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",
"watch": "cds watch",
"watch-travel_processor": "cds watch --open travel_processor/webapp/index.html?sap-ui-xx-viewCache=false",
"watch-customer": "cds watch --open customer/webapp/index.html?sap-ui-xx-viewCache=false",
"undeploy": "cf undeploy capire-sflight --delete-services --delete-service-keys --delete-service-brokers",
"build": "rimraf resources mta_archives && mbt build --mtar archive",
"deploy": "cf deploy mta_archives/archive.mtar --retries 1"
},
"dependencies": {
"@sap/cds": "^8",
"@sap/xssec": "^3.2.7",
"express": "^4",
"hdb": "^0.19.1",
"passport": "^0.6.0"
},
"devDependencies": {
"@cap-js/sqlite": "^1.7.3",
"@sap/ux-specification": "UI5-1.120",
"axios": "^0",
"chai": "^4.3.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"jest": "^28.1.0",
"qunit": "^2.9.3",
"rimraf": "^3.0.2"
},
"cds": {
"requires": {
"db": {
"kind": "sql"
},
"[production]": {
"db": {
"kind": "hana-cloud"
},
"auth": {
"kind": "xsuaa"
}
},
"[development]": {
"auth": {
"kind": "dummy-auth",
"users": {
"rose": {
"password": "rose",
"roles": []
},
"martha": {
"password": "martha",
"roles": [
"reviewer"
]
},
"amy": {
"password": "amy",
"roles": [
"processor"
]
}
}
}
}
},
"log": {
"service": true
},
"features": {
"preserve_computed": true,
"odata_new_parser": false
},
"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/customer"
]
}