-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 940 Bytes
/
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
{
"name": "Favorites",
"version": "0.0.1",
"scripts": {
"start": "ui5 serve --config=uimodule/ui5.yaml --open index.html",
"build:ui": "run-s build:uimodule",
"test": "run-s lint karma",
"karma-ci": "karma start karma-ci.conf.js",
"clearCoverage": "shx rm -rf coverage",
"karma": "run-s clearCoverage karma-ci",
"lint": "eslint .",
"serve:uimodule": "ui5 serve --config=uimodule/ui5.yaml",
"build:uimodule": "ui5 build --config=uimodule/ui5.yaml --clean-dest --dest uimodule/dist --include-task=generateManifestBundle"
},
"devDependencies": {
"shx": "^0.3.3",
"@ui5/cli": "^2.11.2",
"ui5-middleware-livereload": "^0.5.4",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-ui5": "^2.3.4",
"npm-run-all": "^4.1.5",
"eslint": "^7.29.0"
},
"ui5": {
"dependencies": [
"ui5-middleware-livereload"
]
}
}