-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
58 lines (58 loc) · 1.22 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
{
"name": "feature-showcase",
"version": "1.0.0",
"description": "A simple CAP project to demonstrate different FEv4 List Report & Oject Page features.",
"repository": {
"type": "git",
"url": "[email protected]:SAP-samples/fiori-elements-feature-showcase.git"
},
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@sap/cds": "^7.2",
"cds-launchpad-plugin": "^2.0.1",
"content-disposition": "^0.5.3",
"express": "^4"
},
"devDependencies": {
"@cap-js/sqlite": "^1.1.0",
"@sap/ux-specification": "^1.90.12"
},
"scripts": {
"start": "cds run"
},
"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"
}
},
"sapux": [
"app/featureShowcase",
"app/featureShowcaseNavigationTarget"
],
"cds": {
"launchpad": {
"version": "1.127.1"
}
}
}