-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.43 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.43 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
{
"name": "@sap-ux/generator-simple-fe",
"version": "1.1.242",
"description": "Simple example of a yeoman generator for Fiori elements.",
"license": "Apache-2.0",
"private": true,
"main": "generators/app/index.js",
"scripts": {
"install:yo": "npm install -g yo",
"start": "yo ./generators/app",
"build": "pnpm clean && tsc --build",
"watch": "tsc --watch",
"clean": "rimraf --glob generators coverage *.tsbuildinfo",
"format": "prettier --write '**/*.{js,json,ts,yaml,yml}' --ignore-path ../../../.prettierignore",
"lint": "eslint",
"lint:fix": "eslint --fix"
},
"dependencies": {
"@sap-ux/fiori-elements-writer": "workspace:*",
"@sap-ux/fiori-freestyle-writer": "workspace:*",
"@sap-ux/logger": "workspace:*",
"@sap-ux/btp-utils": "workspace:*",
"@sap-ux/axios-extension": "workspace:*",
"@sap-ux/system-access": "workspace:*",
"yeoman-generator": "^5.10.0"
},
"devDependencies": {
"@sap-ux/store": "workspace:*",
"@types/yeoman-environment": "^2.10.11",
"@types/yeoman-generator": "^5.2.14",
"@sap-ux/ui5-application-writer": "workspace:*",
"@sap-ux/odata-service-writer": "workspace:*",
"axios": "^1.15.0"
},
"files": [
"generators",
"templates",
"LICENSE"
],
"engines": {
"node": ">=20.x"
}
}