-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.26 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.26 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
{
"name": "debug",
"version": "0.1.0",
"type": "module",
"description": "debug",
"repository": "<Add your repository here>",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@sap-cloud-sdk/http-client": "^4.0.2",
"@sap-cloud-sdk/resilience": "^4.0.2",
"@sap/cds": "^8",
"express": "^4"
},
"devDependencies": {
"@cap-js/cds-types": "^0.10.0",
"@cap-js/sqlite": "^1.11.0",
"@sap/cds-dk": "^8"
},
"scripts": {
"start": "cds-serve"
},
"cds": {
"i18n": {
"default_language": "pt"
},
"server": {
"shutdown_on_uncaught_errors": false,
"index": true
},
"requires": {
"[production]": {
"auth": {
"kind": "mocked",
"users": {
"Admin": {}
}
}
},
"[development]": {
"db": {
"kind": "sqlite",
"credentials": {
"url": "sqlite.db"
}
}
},
"Brasil.API": {
"kind": "rest",
"model": "srv/external/openapi",
"credentials": {
"[development]": {
"url": "https://brasilapi.com.br/api/"
},
"[production]": {
"destination": "BrasilAPI"
}
}
}
}
}
}