-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.61 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
{
"name": "demoApp",
"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 ./**/webapp/**/*.js && prettier --plugin-search-dir=. --check ./**/webapp/**/*.{js,xml}",
"lint-fix": "eslint ./**/webapp/**/*.js --fix && prettier --plugin-search-dir=. --write ./**/webapp/**/*.{js,xml} --no-error-on-unmatched-pattern",
"build:mta": "mbt build",
"deploy:cf": "cross-var cf deploy mta_archives/demoApp_$npm_package_version.mtar",
"deploy": "run-s build:mta deploy:cf",
"serve:uimodule": "ui5 serve --config=uimodule/ui5.yaml",
"build:uimodule": "ui5 build --config=uimodule/ui5.yaml --clean-dest --dest approuter/uimodule/webapp"
},
"devDependencies": {
"shx": "^0.3.3",
"@ui5/cli": "^2.14.1",
"ui5-middleware-livereload": "^0.5.8",
"karma": "^6.3.9",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.1.0",
"karma-ui5": "^2.3.4",
"npm-run-all": "^4.1.5",
"eslint": "^7.32.0",
"prettier": "^2.5.1",
"@prettier/plugin-xml": "^1.1.0",
"@sap/eslint-plugin-ui5-jsdocs": "^2.0.5",
"ui5-middleware-cfdestination": "^0.7.3",
"ui5-task-zipper": "^0.4.7",
"cross-var": "^1.1.0",
"mbt": "^1.2.7",
"@sapui5/ts-types": "^1.96.0"
},
"ui5": {
"dependencies": [
"ui5-middleware-livereload",
"ui5-middleware-cfdestination",
"ui5-task-zipper"
]
}
}