-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.04 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
{
"name": "timeout",
"version": "0.0.1",
"scripts": {
"start": "ui5 serve --config=ui5.yaml --open flpSandbox.html",
"build:ui": "run-s build",
"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 .",
"deploy": "run-s build:ui",
"serve": "ui5 serve --config=ui5.yaml",
"build": "ui5 build --config=ui5.yaml --clean-dest --a --dest dist"
},
"devDependencies": {
"@sapui5/ts-types": "^1.96.16",
"@ui5/cli": "^2.14.14",
"eslint": "^8.28.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-ui5": "^2.4.0",
"npm-run-all": "^4.1.5",
"shx": "^0.3.4",
"ui5-middleware-livereload": "^0.7.0",
"ui5-middleware-route-proxy": "*",
"ui5-task-nwabap-deployer": "*"
},
"ui5": {
"dependencies": [
"ui5-middleware-livereload",
"ui5-task-nwabap-deployer",
"ui5-middleware-route-proxy"
]
}
}