forked from SAP/openui5-sample-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 960 Bytes
/
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
{
"name": "openui5-sample-app",
"version": "0.2.0",
"description": "Sample of an OpenUI5 app",
"private": true,
"scripts": {
"start": "ui5 serve",
"lint": "eslint webapp",
"karma": "karma start",
"karma-ci": "rimraf coverage && karma start karma-ci.conf.js",
"watch": "npm run karma",
"test": "npm run lint && npm run karma-ci",
"build": "rimraf dist && ui5 build -a",
"build-self-contained": "rimraf dist && ui5 build self-contained -a",
"serve-dist": "ws --compress -d dist"
},
"dependencies": {
"@openui5/sap.m": "^1.67.1",
"@openui5/sap.ui.core": "^1.67.1",
"@openui5/themelib_sap_fiori_3": "^1.67.1",
"openui5-fhir": "^1.0.2"
},
"devDependencies": {
"@ui5/cli": "^1.6.0",
"eslint": "^5.16.0",
"karma": "^4.2.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-ui5": "^1.0.0",
"local-web-server": "^3.0.4",
"rimraf": "^2.6.2"
}
}