-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.09 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
{
"name": "my-ui5-app",
"version": "0.0.1",
"description": "My UI5 application to test deployment into gh-pages",
"private": true,
"scripts": {
"start": "npm-run-all clean build --parallel watch start:prod",
"start:dev": "ui5 serve -o index.html",
"start:prod": "serve dist",
"clean": "rimraf dist",
"build": "ui5 build",
"watch": "npm-watch build"
},
"watch": {
"build": {
"patterns": [
"webapp",
"ui5.yaml"
],
"extensions": "js,json,xml,html,properties",
"delay": 500,
"runOnChangeOnly": true
}
},
"dependencies": {
"@openui5/sap.m": "^1.61.1",
"@openui5/sap.ui.core": "^1.61.1",
"@openui5/sap.ui.layout": "^1.61.1",
"@openui5/themelib_sap_belize": "^1.61.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@ui5/logger": "^1.0.0",
"@ui5/cli": "^1.2.0",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.5.0",
"rimraf": "^2.6.3",
"serve": "^10.1.2"
}
}