-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1.03 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
{
"name": "ui5con2022-smart-controls",
"version": "1.0.0",
"scripts": {
"start": "ui5 serve --config=uimodule/ui5.yaml --open index.html",
"build:ui": "run-s build:uimodule",
"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",
"serve:uimodule": "ui5 serve --config=uimodule/ui5.yaml",
"build:uimodule": "ui5 build --config=uimodule/ui5.yaml --clean-dest --a --dest uimodule/dist --include-task=generateManifestBundle"
},
"devDependencies": {
"shx": "^0.3.3",
"@ui5/cli": "^2.14.1",
"ui5-middleware-livereload": "^0.5.8",
"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",
"@sapui5/ts-types": "^1.96.0"
},
"ui5": {
"dependencies": [
"ui5-middleware-livereload"
]
}
}