-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.85 KB
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
{
"name": "driver-app",
"version": "1.0.0",
"description": "Sample driver web application for SAP E-Mobility",
"license": "Apache-2.0",
"private": true,
"scripts": {
"start": "cds-serve",
"dev": "cds-ts watch --profile hybrid",
"build:ams": "cds build --for ams",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"install:all": "cd cli && npm install && npm run cli install",
"deploy": "cd cli && npm install && npm run cli build && npm run cli deploy"
},
"overrides": {
"handlebars": "4.7.9"
},
"imports": {
"#cds-models/*": "./@cds-models/*/index.js"
},
"engines": {
"node": "^22.13.0 || ^24.0.0",
"npm": ">=10"
},
"dependencies": {
"@cap-js/sqlite": "2.4.0",
"@sap-cloud-sdk/connectivity": "4.1.2",
"@sap-cloud-sdk/http-client": "4.1.2",
"@sap-cloud-sdk/resilience": "4.1.2",
"@sap/ams": "3.5.0",
"@sap/cds": "9.9.1",
"@sap/xssec": "4.11.2",
"express": "4.21.2",
"lru-cache": "11.2.2"
},
"devDependencies": {
"@cap-js/cds-test": "0.4.1",
"@cap-js/cds-typer": "0.39.1",
"@cap-js/cds-types": "0.17.0",
"@sap/ams-dev": "2.2.0",
"@sap/cds-compiler": "6.4.6",
"@sap/cds-dk": "9.9.0",
"@types/jest": "30.0.0",
"@types/lru-cache": "7.10.10",
"@types/node": "24.12.4",
"@typescript-eslint/eslint-plugin": "8.59.3",
"@typescript-eslint/parser": "8.59.3",
"eslint": "10.3.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import-x": "4.16.2",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-vue": "10.9.1",
"globals": "17.6.0",
"jest": "30.4.2",
"jest-junit": "17.0.0",
"prettier": "3.6.2",
"ts-jest": "29.4.9",
"tsx": "4.20.6",
"typescript": "5.9.3"
}
}