-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.77 KB
/
package.json
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
63
64
65
66
67
68
69
70
71
{
"name": "timesheet-cap",
"version": "1.0.0",
"description": "A simple CAP project.",
"repository": "<Add your repository here>",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@sap/cds": "^7",
"express": "^4"
},
"devDependencies": {
"@cap-js/sqlite": "^1",
"@sap/eslint-plugin-cds": "^3",
"eslint": "^9",
"cds-plugin-ui5": "^0.6.13"
},
"scripts": {
"dev": "cds-ts watch",
"start": "cds-serve",
"compile-to-csn": "cds compile db/schema.cds -o db/schema.csn",
"watch-form-entry": "cds watch --open formentry/index.html?sap-ui-xx-viewCache=false --livereload false",
"watch-freestyle": "cds watch --open freestyle/index.html?sap-ui-xx-viewCache=false --livereload false",
"watch-lrop": "cds watch --open lrop/index.html?sap-ui-xx-viewCache=false --livereload false",
"watch-flex": "cds watch --open flex/index.html?sap-ui-xx-viewCache=false --livereload false"
},
"cds": {
"[development]": {
"requires": {
"db": {
"kind": "sqlite"
},
"auth": {
"kind": "mocked",
"users": {
"employee": {
"password": "1234",
"roles": [
"EMPLOYEE"
],
"attr": {
"fullName": "Employee 1"
}
},
"administrator": {
"password": "1234",
"roles": [
"ADMINISTRATOR"
]
},
"manager": {
"password": "1234",
"roles": [
"MANAGER"
]
}
}
}
}
}
},
"workspaces": [
"app/*"
],
"sapux": [
"app/form-entry",
"app/freestyle",
"app/lrop",
"app/flex"
]
}