-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.3 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
{
"name": "ghg_cds",
"version": "1.0.0",
"description": "GHG Emissions Database for tokenization",
"repository": "https://github.com/fleischr/GHGReportSample",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@sap/cds": "^7",
"@sap/cds-odata-v2-adapter-proxy": "^1.9.21",
"@sap/xssec": "^3",
"bent": "^7.3.12",
"cds-swagger-ui-express": "^0.8.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ethers": "^6.11.1",
"express": "^4",
"fs": "^0.0.1-security",
"hdb": "^0.19.0",
"passport": "^0",
"thor-devkit": "^2.0.9"
},
"devDependencies": {
"@sap-cloud-sdk/openapi-generator": "^3.12.0",
"@sap/ux-specification": "^1.120.5",
"@sap/ux-ui5-tooling": "^1.13.2",
"@ui5/cli": "^3.9.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"fiori-tools": "^1.1.8",
"prettier": "^3.3.2",
"sqlite3": "^5.0.4",
"yamljs": "^0.3.0"
},
"scripts": {
"start": "cds run",
"watch-emissionsdatalist": "cds watch --open emissionsdatalist/webapp/index.html?sap-ui-xx-viewCache=false",
"lint": "eslint 'src/**/*.ts' --fix"
},
"engines": {
"node": "^20.0"
},
"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/emissionsdatalist"
],
"cds": {
"requires": {
"Thorest": {
"kind": "rest",
"model": "srv/external/thorest"
},
"Itinerary.API": {
"kind": "rest",
"model": "srv/external/ConcurTravelItinerary"
},
"[production]": {
"auth": {
"kind": "xsuaa"
},
"db": {
"kind": "hana-cloud"
}
},
"db": {
"kind": "sql"
},
"SustainabilityMetrics": {
"kind": "odata",
"model": "srv/external/SustainabilityMetrics"
},
"auth": {
"passport": {
"strategy": "JWT"
}
}
}
}
}