-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
32 lines (32 loc) · 999 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
{
"name": "ui5-typescript-helloworld",
"version": "1.0.0",
"description": "Showcase of a TypeScript setup for developing UI5 applications",
"author": "SAP SE",
"license": "Apache-2.0",
"scripts": {
"build": "ui5 build --clean-dest",
"build:opt": "ui5 build self-contained --clean-dest --all",
"start": "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 webapp",
"ui5lint": "ui5lint"
},
"repository": {
"type": "git",
"url": "https://github.com/SAP-samples/ui5-typescript-helloworld.git"
},
"devDependencies": {
"@types/openui5": "1.127.0",
"@ui5/cli": "^4",
"@ui5/linter": "^1.1.1",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"ui5-middleware-livereload": "^3",
"ui5-middleware-simpleproxy": "^3",
"ui5-tooling-transpile": "^3"
}
}