forked from c-kobo/ui5con2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 1.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
{
"name": "ui5con2023",
"version": "1.0.0",
"description": "Boost Your Productivity In Developing SAPUI5 apps With SAP Fiori Tools",
"repository": "https://github.com/c-kobo/ui5con2023",
"engines": {
"node": ">=14"
},
"dependencies": {
"@sap/cds": "^6.8.2",
"@sap/xssec": "^3.2.7",
"express": "^4.18.2",
"hdb": "^0.19.1",
"passport": "^0.6.0"
},
"devDependencies": {
"axios": "^1.4.0",
"cds-plugin-ui5": "0.1.4",
"chai": "^4.3.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"jest": "^29.0.2",
"qunit": "^2.9.3",
"sqlite3": "^5"
},
"scripts": {
"start": "cds-serve",
"test": "jest --runInBand"
},
"cds": {
"requires": {
"db": {
"kind": "sql"
},
"[production]": {
"db": {
"kind": "hana-cloud"
},
"auth": {
"kind": "xsuaa"
}
},
"auth": {
"[development]": {
"strategy": "dummy"
}
}
},
"hana": {
"deploy-format": "hdbtable"
},
"log": {
"service": true
},
"features": {
"preserve_computed": true
},
"build": {
"[node]": {
"target": "gen",
"tasks": [
{
"for": "node-cf"
},
{
"for": "hana"
}
]
},
"[hana]": {
"target": "gen",
"tasks": [
{
"for": "hana"
}
]
}
}
},
"jest": {
"testEnvironment": "node",
"testTimeout": 20000
},
"license": "SAP SAMPLE CODE LICENSE",
"private": true,
"workspaces": [
"app/*"
]
}