-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 958 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 958 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
{
"name": "@capire/bookstore",
"version": "2.0.1",
"description": "Shows how to reuse and compose with CAP.",
"repository": "https://github.com/capire/bookstore-java",
"dependencies": {
"@capire/bookshop": "*",
"@capire/common": "*",
"@capire/data-viewer": "*",
"@capire/orders": "*",
"@capire/reviews": "*"
},
"devDependencies": {
"@sap/cds": "^9",
"@sap/cds-dk": "^9"
},
"scripts": {
"start": "mvn spring-boot:run",
"start-with-all": "SPRING_PROFILES_ACTIVE=default,with-orders,with-reviews mvn spring-boot:run",
"hybrid": "SPRING_PROFILES_ACTIVE=cloud,hybrid npx cds bind --exec mvn spring-boot:run",
"bind": "npx cds bind --to samples-auth,samples-db,samples-destination,samples-messaging"
},
"cds": {
"requires": {
"db-ext": {
"[development]": {
"model": "db/h2"
},
"[production]": {
"model": "db/hana"
}
}
}
}
}