forked from capire/samples-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 732 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 732 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
{
"name": "@capire/samples-java",
"version": "3.0.0",
"description": "A monorepo with several samples for CAP using Java stack.",
"repository": "https://github.com/capire/samples-java",
"workspaces": [
"*"
],
"devDependencies": {
"@cap-js/cds-test": "^0",
"@sap/cds-dk": "^9"
},
"scripts": {
"start": "cd bookshop && npm start",
"bookstore": "cd bookstore && npm start",
"orders": "cd orders && npm start",
"reviews": "cd reviews && npm start",
"build": "mbt build -t gen --mtar mta.tar",
"deploy": "cf deploy gen/mta.tar",
"undeploy": "cf undeploy capire.samples-java --delete-services --delete-service-keys"
},
"license": "SEE LICENSE IN LICENSE",
"private": true
}