-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 751 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 751 Bytes
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
{
"name": "capb2b-main",
"version": "1.0.0",
"description": "A simple CAP project.",
"repository": "<Add your repository here>",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@sap/cds": "^7",
"express": "^4"
},
"devDependencies": {
"@cap-js/sqlite": "^1",
"cap-listening-plugin": "github:qmacro/cap-listening-plugin"
},
"scripts": {
"start": "cds-serve"
},
"cds": {
"requires": {
"db": {
"[testing]": {
"kind": "sqlite",
"credentials": {
"url": "bookshop.sqlite"
}
},
"[development]": {
"kind": "sqlite",
"credentials": {
"url": ":memory:"
}
}
}
}
}
}