-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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
{
"name": "inventory",
"version": "1.0.0",
"description": "A simple CAP project.",
"repository": "<Add your repository here>",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@sap/approuter": "^8.5.2",
"@sap/audit-logging": "^3.2.0",
"@sap/cds": "^4",
"@sap/cds-odata-v2-adapter-proxy": "^1.4.47",
"@sap/hana-client": "^2.5.109",
"concurrently": "^5.3.0",
"express": "^4"
},
"devDependencies": {
"sqlite3": "^5.0.0"
},
"scripts": {
"start": "npx cds run",
"local:dev": "concurrently --kill-others \"npm run local:cds:watch\" \"npm run local:approuter\"",
"local:debug": "concurrently --kill-others \"npm run local:cds:run\" \"npm run local:approuter\"",
"local:cds:watch": "node node_modules/@sap/cds/bin/cds watch",
"local:cds:run": "node --inspect node_modules/@sap/cds/bin/cds run",
"local:approuter": "cd app/ && npm start"
},
"cds": {
"odata": {
"version": "v4"
},
"auth": {
"passport": {
"strategy": "JWT"
}
},
"requires": {
"uaa": {
"kind": "xsuaa"
},
"db": {
"kind": "hana"
},
"[development]": {
"db": {
"kind": "sqlite"
}
}
}
}
}