-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.4 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
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
{
"name": "cap-with-javascript-basics",
"version": "1.1.0",
"description": "A simple CAP project.",
"repository": "https://github.com/SAP-samples/cloud-cap-with-javascript-basics",
"license": "Apache-2.0",
"private": false,
"type": "module",
"engines": {
"node": ">=22"
},
"dependencies": {
"@cap-js-community/odata-v2-adapter": "^1",
"@cap-js/graphql": "^0.14.0",
"@cloudnative/health-connect": "^2.1.0",
"@json2csv/node": "^7.0.6",
"@sap/cds": "^9",
"@sap/cds-common-content": "^3",
"@sap/cds-fiori": "^2",
"@sap/textbundle": "^6",
"@sap/xsenv": "^6",
"accept-language-parser": "^1.5.0",
"async": "^3.2.6",
"body-parser": "^2",
"cds-swagger-ui-express": "^0.11.0",
"cors": "^2.8.6",
"easy-table": "^1.2.0",
"event-loop-lag": "^1.4.0",
"express": "^5",
"express-status-monitor": "^1.3.4",
"glob": "^13",
"helmet": "^8",
"node-xlsx": "^0.24.0",
"node-zip": "^1.1.1",
"overload-protection": "^1.2.3",
"swagger-jsdoc": "^6.3.0",
"then-request": "^6.0.2",
"upath": "^3",
"ws": "^8.21.0",
"xmldoc": "^3"
},
"devDependencies": {
"@cap-js/cds-typer": "^0.39.0",
"@cap-js/sqlite": "^2",
"@sap/cds-dk": "^9",
"@sap/eslint-plugin-cds": "^4",
"eslint": "^10"
},
"overrides": {
"axios": "^1.13.2",
"cookie": "^1.0.2",
"debug": "^4.4.3",
"engine.io": "^6.6.4",
"engine.io-client": "^6.6.3",
"jszip": "^3.10.1",
"on-headers": "^1.1.0",
"parseuri": "^2.0.0",
"qs": "^6.14.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"socket.io-parser": "^4.2.4",
"ws": "^8.21.0"
},
"scripts": {
"watch": "cds watch --profile development",
"start": "cds-serve",
"types": "npx @cap-js/cds-typer ./db/schema.cds --outputDirectory ./@cds-models"
},
"cds": {
"requires": {
"auth": "mocked",
"db": {
"kind": "sqlite",
"driver": "node"
}
},
"log": {
"levels": {
"sqlite": "debug",
"cds": "info",
"nodejs": "info"
}
},
"fiori": {
"preview": {
"ui5": {
"version": "1.120.4"
}
}
},
"cov2ap": {
"plugin": true
},
"protocols": {
"graphql": {
"path": "/graphql",
"impl": "@cap-js/graphql"
}
}
},
"imports": {
"#cds-models/*": "./@cds-models/*/index.js"
}
}