-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.72 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
46
47
{
"name": "trasta",
"version": "1.0.3",
"description": "Helps you to keep track of your household trash",
"engines": {
"node": "12.x.x"
},
"scripts": {
"start": "ui5 serve -o index.html",
"serve": "ui5 serve",
"serve-dist": "ws --compress -d dist",
"openUI5-Test": "npm run lint && npm run karma",
"test": "jest",
"karma-ci": "karma start karma-ci.conf.js",
"karma": "rimraf coverage && npm run karma-ci",
"lint": "eslint webapp",
"build": "ui5 build -a --clean-dest",
"npm build": "npm run build",
"build-self-contained": "ui5 build self-contained -a --clean-dest",
"build:ui": "ui5 build --clean-dest --dest approuter/webapp "
},
"ui5": {
"dependencies": [
"ui5-middleware-livereload"
]
},
"dependencies": {
"chart.js": "^2.9.3",
"localforage": "^1.7.3"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/openui5": "^1.40.5",
"@types/qunit": "^2.9.1",
"@ui5/cli": "^2.2.4",
"eslint": "^7.0.0",
"jest": "^26.0.1",
"karma": "^5.0.9",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.2",
"karma-ui5": "^2.1.1",
"local-web-server": "^4.1.0",
"rimraf": "^3.0.2",
"shx": "^0.3.2",
"ui5-middleware-livereload": "^0.2.0"
}
}