This repository has been archived by the owner on Feb 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.52 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
{
"name": "ui5-ts-shim-showcase",
"version": "1.0.0",
"description": "UI5 Application: ui5-ts-shim-showcase",
"author": "Peter Muessig",
"license": "Apache-2.0",
"scripts": {
"build": "npm-run-all build:ts build:ui5",
"build:opt": "npm-run-all build:ts build:ui5:opt",
"build:ts": "babel src --out-dir webapp --source-maps inline --extensions \".ts,.js\" --copy-files",
"build:ui5": "ui5 build --clean-dest",
"build:ui5:opt": "ui5 build self-contained --clean-dest --all",
"start": "npm-run-all --parallel watch:ts start:ui5",
"watch:ts": "babel src --out-dir webapp --source-maps inline --extensions \".ts,.js\" --copy-files --watch",
"start:ui5": "ui5 serve --port 8080 -o index.html",
"start:dist": "ui5 serve --port 8080 -o index.html --config ui5-dist.yaml",
"ts-typecheck": "tsc --noEmit",
"lint": "eslint src"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@openui5/ts-types-esm": "1.94.0",
"@types/jquery": "3.5.1",
"@types/lodash": "^4.14.172",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"@ui5/cli": "^2.10.4",
"babel-preset-transform-ui5": "^7.0.3",
"eslint": "^7.27.0",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"typescript": "^4.3.2",
"ui5-middleware-livereload": "^0.5.4"
},
"ui5": {
"dependencies": [
"lodash",
"ui5-middleware-livereload"
]
}
}