-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2 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
{
"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": ">=20"
},
"dependencies": {
"@cap-js-community/odata-v2-adapter": "^1",
"@cap-js/graphql": "^0.9.0",
"@cloudnative/health-connect": "^2.1.0",
"@json2csv/node": "^7.0.4",
"@sap/cds": "^7",
"@sap/cds-common-content": "^1",
"@sap/cds-fiori": "^1.2.2",
"@sap/textbundle": "^4.3.0",
"@sap/xsenv": "^4.2.0",
"accept-language-parser": "^1.5.0",
"async": "^3.2.5",
"body-parser": "^1.20.2",
"cds-swagger-ui-express": "^0.8.0",
"cors": "^2.8.5",
"easy-table": "^1.2.0",
"event-loop-lag": "^1.4.0",
"express": "^4",
"express-status-monitor": "^1.3.4",
"glob": "^10.3.10",
"helmet": "^7.1.0",
"node-xlsx": "^0.23.0",
"node-zip": "^1.1.1",
"overload-protection": "^1.2.3",
"swagger-jsdoc": "^6.2.8",
"then-request": "^6.0.2",
"upath": "^2.0.1",
"ws": "^8.16.0",
"xmldoc": "^1.3.0"
},
"devDependencies": {
"@cap-js/cds-typer": "^0.15.0",
"@cap-js/sqlite": "^1",
"@sap/cds-dk": "^7",
"@sap/eslint-plugin-cds": "^2",
"eslint": "^8"
},
"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"
},
"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"
}
}