-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.28 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
{
"name": "cap-cave",
"version": "1.0.0",
"description": "A simple CAP project.",
"repository": "<Add your repository here>",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@sap/cds": "^5",
"axios": "^0.24.0",
"chartjs": "^0.3.24",
"chartjs-chart-matrix": "^1.1.0",
"cors": "^2.8.5",
"express": "^4",
"passport": "^0.5.0",
"winston": "^3.3.3",
"hdb": "^0.18.3"
},
"devDependencies": {
"@sap/eslint-plugin-ui5-jsdocs": "^2.0.5",
"@sap/ux-specification": "^1.90.10",
"@sapui5/ts-types": "^1.92.2",
"cds-swagger-ui-express": "^0.3.0",
"eslint": "^7.32.0",
"sqlite3": "^5.0.2"
},
"scripts": {
"start": "cds run",
"watch-customer": "cds watch --open customer-apps/launchpad.html",
"watch-retailer": "cds watch --open retailer-apps/launchpad.html",
"deploy:sql": "cds deploy -2 sqlite:cave.db"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"es2020": true,
"node": true,
"jest": true,
"mocha": true
},
"globals": {
"SELECT": true,
"INSERT": true,
"UPDATE": true,
"DELETE": true,
"CREATE": true,
"DROP": true,
"CDL": true,
"CQL": true,
"CXL": true,
"cds": true
},
"rules": {
"no-console": "off",
"require-atomic-updates": "off"
}
},
"cds": {
"i18n": {
"folders": [
"_i18n",
"i18n"
]
},
"requires": {
"db": {
"kind": "sqlite",
"model": "*",
"credentials": {
"database": "cave.db"
}
},
"auth": {
"kind": "dummy-auth",
"users": {
"vigneronne": {
"password": "vigneronne",
"roles": [
"admin"
]
},
"customer": {
"password": "customer",
"roles": [
"customer"
]
},
"customer1": {
"password": "customer1",
"roles": [
"customer"
]
}
}
},
"messaging": {
"kind": "file-based-messaging"
}
},
"hana": {
"deploy-format": "hdbtable"
}
},
"sapux": [
"app/list-vins",
"app/list-vins",
"app/list-cepages"
]
}