-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.24 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
{
"name": "app",
"version": "0.0.1",
"description": "",
"author": "Nayara Corrêa",
"dependencies": {},
"devDependencies": {
"@ui5/cli": "^2.10.2",
"eslint": "^7.18.0",
"karma": "^6.0.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-junit-reporter": "^1.2.0",
"karma-ui5": "^2.3.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"puppeteer": "^3.0.1",
"shx": "^0.3.3",
"ui5-middleware-livereload": "^0.5.1"
},
"scripts": {
"start": "ui5 serve -o index.html",
"start-mock": "ui5 serve -o mockindex.html",
"server": "node index.js",
"serve": "ui5 serve",
"test": "run-s lint karma",
"karma-ci": "karma start karma-ci.conf.js",
"karma-2": "karma start karma.conf.js",
"clearCoverage": "shx rm -rf coverage test-results",
"karma": "run-s clearCoverage karma-ci",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"build:ui": "ui5 build --clean-dest --dest approuter/webapp ",
"lint:sonar": "eslint -f json -o es-lint-report.json \"webapp/{controller,localservice,test,utils}/*.js\"",
"prettier-format": "prettier --write webapp/**/*.{js,html}"
},
"ui5": {
"dependencies": [
"ui5-middleware-livereload"
]
}
}