-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.84 KB
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
{
"name": "ui5-ts-app",
"version": "0.8.15-notimportant",
"private": true,
"description": "UI5 Application: tsapp",
"author": "nosotros-todos@ui5-community.org",
"license": "Apache-2.0",
"scripts": {
"start": "npm-run-all --parallel watch:ts start:ui5",
"watch:ts": "babel src --out-dir webapp --source-maps true --extensions \".ts,.js\" --copy-files --watch",
"start:ui5": "ui5 serve --port 8080",
"//test": "run-s test:*",
"test": "wdio run wdio-ui5.conf.ts",
"test:authentication": "run-s authentication:*",
"test-h:authentication": "run-s \"authentication:* -- --headless\"",
"authentication:btp": "wdio run test/e2e/authentication/wdio-btp-authentication.conf.ts",
"authentication:basic-auth": "wdio run test/e2e/authentication/wdio-basic-auth-authentication.conf.ts",
"authentication:custom": "wdio run test/e2e/authentication/wdio-custom-authentication.conf.ts",
"authentication:multiRemote": "wdio run test/e2e/authentication/wdio-btp-authentication-multiremote.conf.ts",
"build:ts": "babel src --out-dir webapp --source-maps true --extensions \".ts,.js\" --copy-files",
"build:ui5": "ui5 build --clean-dest --include-task=generateManifestBundle",
"clean": "rimraf dist webapp approuter/webapp",
"build:cf": "mbt build"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@openui5/ts-types-esm": "latest",
"@sap/approuter": "^11.6.1",
"@types/jquery": "3.5.14",
"babel-preset-transform-ui5": "^7.0.5",
"mbt": "^1.2.18",
"ts-deepmerge": "^5.0.0",
"ui5-middleware-simpleproxy": "^0.9.0",
"ui5-task-zipper": "^0.6.1",
"wdio-ui5-service": "*"
},
"ui5": {
"dependencies": [
"ui5-middleware-simpleproxy",
"ui5-task-zipper"
]
}
}