-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.04 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.04 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
{
"name": "@capire/samples",
"version": "3.0.0",
"description": "A monorepo with several samples for CAP.",
"repository": "https://github.com/capire/samples",
"author": "daniel.hutzel@sap.com",
"workspaces": [
"*"
],
"devDependencies": {
"@cap-js/cds-test": "^0 || ^1",
"@sap/cds-dk": "^9"
},
"scripts": {
"latest": "git submodule -q foreach git checkout -q main",
"start": "cds watch bookshop --open http://localhost:4004",
"bookstore": "cds watch bookstore",
"bookshop": "cds watch bookshop",
"orders": "cds watch orders",
"reviews": "cds watch reviews",
"lint": "npx eslint",
"test": "chest",
"jest": "npx jest",
"mocha": "npx mocha",
"node:test": "node --test",
"build": "mbt build -t gen --mtar mta.tar",
"deploy": "cf deploy gen/mta.tar",
"undeploy": "cf undeploy capire.samples --delete-services --delete-service-keys"
},
"mocha": {
"recursive": true,
"parallel": true,
"timeout": 6666
},
"license": "SEE LICENSE IN LICENSE",
"private": true
}