-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 957 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 957 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "trace2",
"version": "1.0.0",
"description": "A simple CAP project.",
"dependencies": {
"@odatano/core": "^1.2.0",
"@sap/cds": "^9",
"express": "^4"
},
"devDependencies": {
"@cap-js/cds-typer": "^0.38.0",
"@cap-js/cds-types": "^0.15.0",
"@cap-js/sqlite": "^2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"scripts": {
"start": "cds-serve",
"deploy": "node scripts/deploy-db.js"
},
"cds": {
"requires": {
"[development]": {
"auth": {
"kind": "dummy"
}
},
"db": {
"kind": "sqlite",
"credentials": {
"url": "db.sqlite"
}
},
"odatano-core": {
"network": "preview",
"backends": [
"blockfrost",
"koios"
],
"blockfrostApiKey": "your_blockfrost_api_key",
"txBuilders": [
"buildooor"
]
}
}
},
"private": true
}