-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.56 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
48
49
50
51
{
"name": "PersonSkills",
"version": "0.0.1",
"description": "",
"private": true,
"devDependencies": {
"@ui5/cli": "^1.7.0",
"@ui5/fs": "^1.1.2",
"eslint": "^6.2.2",
"express": "latest",
"http-proxy": "^1.17.0",
"npm-run-all": "^4.1.5",
"rimraf": "^2.7.1",
"serve": "^10.1.2",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"node-emoji": "^1.10.0",
"colors": "^1.3.3",
"regenerator-runtime": "^0.13.3",
"nwabap-ui5uploader": "^0.3.4",
"npm-watch": "^0.5.0"
},
"dependencies": {
"@openui5/sap.f": "^1.69.1",
"@openui5/sap.m": "^1.69.1",
"@openui5/sap.ui.core": "^1.69.1",
"@openui5/themelib_sap_belize": "^1.69.1"
},
"scripts": {
"start": "npm-run-all sapbuild --parallel watch start:dist proxy",
"start:webapp": "ui5 serve",
"start:dist": "serve dist",
"lint": "eslint webapp",
"build": "rimraf dist && ui5 build -a",
"sapbuild": "rimraf dist && ui5 build",
"proxy": "node proxy.js",
"deploy": "npx nwabap upload --base ./dist --conn_server \"$ABAP_DEVELOPMENT_SERVER_HOST\" --conn_user \"$ABAP_DEVELOPMENT_USER\" --conn_password \"$ABAP_DEVELOPMENT_PASSWORD\" --abap_package \"$ABAP_PACKAGE\" --abap_bsp \"$ABAP_APPLICATION_NAME\" --abap_bsp_text \"$ABAP_APPLICATION_DESC\" --abap_transport \"$CI_COMMIT_TITLE\"",
"watch": "npm-watch sapbuild"
},
"watch": {
"sapbuild": {
"patterns": [
"webapp",
"ui5.yaml"
],
"extensions": "js,json,xml,html,properties",
"delay": 500,
"runOnChangeOnly": true
}
}
}