-
Notifications
You must be signed in to change notification settings - Fork 279
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 5.84 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 5.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"description": "UI5 Web Components",
"author": "SAP SE (https://www.sap.com)",
"license": "Apache-2.0",
"private": true,
"keywords": [
"openui5",
"sapui5",
"ui5"
],
"type": "module",
"scripts": {
"generate": "yarn workspaces foreach --all --parallel run generate",
"generateAPI": "yarn generateCEM && yarn mergeCEM && yarn validateCEM",
"generateCEM": "yarn workspaces foreach --all --parallel run generateCEM",
"mergeCEM": "yarn workspaces foreach --all --parallel run mergeCEM",
"validateCEM": "yarn workspaces foreach --all --parallel run validateCEM",
"generateProd": "yarn workspaces foreach --all --parallel run generateProd",
"ts": "tsc -b",
"bundle": "yarn workspaces foreach --all --parallel run bundle",
"clean": "yarn workspaces foreach --all --parallel run clean",
"scopePrepare:main": "yarn workspace @ui5/webcomponents ui5nps scope.prepare",
"scopePrepare:compat": "yarn workspace @ui5/webcomponents-compat ui5nps scope.prepare",
"scopePrepare:ai": "yarn workspace @ui5/webcomponents-ai ui5nps scope.prepare",
"scopePrepare:fiori": "yarn workspace @ui5/webcomponents-fiori ui5nps scope.prepare",
"watch:base": "yarn workspace @ui5/webcomponents-base ui5nps watch",
"watch:main": "yarn workspace @ui5/webcomponents ui5nps watch",
"watch:compat": "yarn workspace @ui5/webcomponents-compat ui5nps watch",
"watch:ai": "yarn workspace @ui5/webcomponents-ai ui5nps watch",
"watch:fiori": "yarn workspace @ui5/webcomponents-fiori ui5nps watch",
"watch:allWithDelay": "node -e \"setTimeout(function(){}, 5000)\" && npm-run-all --parallel watch:base watch:main watch:compat watch:ai watch:fiori",
"scopeWatch:main": "yarn workspace @ui5/webcomponents ui5nps scope.watch",
"scopeWatch:compat": "yarn workspace @ui5/webcomponents-compat ui5nps scope.watch",
"scopeWatch:ai": "yarn workspace @ui5/webcomponents-ai ui5nps scope.watch",
"scopeWatch:fiori": "yarn workspace @ui5/webcomponents-fiori ui5nps scope.watch",
"startWithScope": "npm-run-all --sequential generate scopePrepare:main scopePrepare:compat scopePrepare:ai scopePrepare:fiori scopeStart:all",
"start:all": "npm-run-all --parallel watch:allWithDelay dev-server",
"dev-server": "node packages/tools/lib/dev-server/dev-server.mjs",
"scopeStart:all": "npm-run-all --parallel watch:base scopeWatch:main scopeWatch:compat scopeWatch:ai scopeWatch:fiori dev-server",
"start:website": "yarn ci:releasebuild && yarn workspace @ui5/webcomponents-website start",
"dev": "npm-run-all --sequential generate ci:test:prepare start:all",
"start": "yarn dev",
"build": "yarn ci:releasebuild && yarn ci:test:prepare",
"test": "yarn workspaces foreach --all --parallel run test",
"test:prepare": "yarn ci:test:prepare && yarn generate",
"ci:test:prepare": "yarn workspace @ui5/cypress-ct-ui5-webc build && yarn workspace @ui5/cypress-internal build",
"ci:releasebuild": "npm-run-all --sequential generate ts generateProd generateAPI",
"ci:lint": "npm-run-all --sequential generate lint",
"ci:testbuild": "npm-run-all --sequential generate ts generateProd bundle ci:test:prepare",
"ci:deploy": "DEPLOY=true yarn ci:testbuild && yarn generateAPI && yarn workspace @ui5/webcomponents-website ci:build",
"ci:deploy:nightly": "DEPLOY_NIGHTLY=true yarn ci:testbuild && yarn generateAPI && yarn workspace @ui5/webcomponents-website ci:build:nightly",
"ci:deploy:preview": "yarn ci:testbuild && yarn generateAPI && yarn workspace @ui5/webcomponents-website ci:build:preview",
"ci:test:base": "yarn workspace @ui5/webcomponents-base test",
"ci:test:main:cy:suite-1": "yarn workspace @ui5/webcomponents test:ssr && yarn workspace @ui5/webcomponents test:vitest && yarn workspace @ui5/webcomponents test:cypress:suite-1",
"ci:test:main:cy:suite-2": "yarn workspace @ui5/webcomponents test:cypress:suite-2",
"ci:test:main:cy:suite-3": "yarn workspace @ui5/webcomponents test:cypress:suite-3",
"ci:test:main:cy:suite-4": "yarn workspace @ui5/webcomponents test:cypress:suite-4",
"ci:test:fiori": "yarn workspace @ui5/webcomponents-fiori test:ssr && yarn workspace @ui5/webcomponents-fiori test:cypress",
"ci:test:compat": "yarn workspace @ui5/webcomponents-compat test:ssr && yarn workspace @ui5/webcomponents-compat test:cypress",
"ci:test:ai": "yarn workspace @ui5/webcomponents-ai test:ssr && yarn workspace @ui5/webcomponents-ai test",
"lint": "yarn workspaces foreach --all --parallel run lint",
"lint:scope": "yarn workspaces foreach --all --parallel run lint:scope",
"link-all": "yarn workspaces foreach --all --parallel run link",
"unlink-all": "yarn workspaces foreach --all --parallel run unlink",
"prepare": "husky install",
"husky:commit-msg": "commitlint -e",
"husky:pre-push": "npm-run-all --sequential husky:commit-msg"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@semantic-release/github": "^11.0.0",
"command-line-args": "^5.1.1",
"globby": "^13.1.1",
"husky": "^7.0.4",
"lerna": "^9.0.0",
"npm-run-all": "^4.1.3",
"typescript": "^5.6.2",
"vite-plugin-checker": "patch:vite-plugin-checker@npm%3A0.11.0#~/.yarn/patches/vite-plugin-checker-npm-0.11.0-8b4c9e71ff.patch",
"vite-plugin-istanbul": "^7.2.0",
"vite-tsconfig-paths": "^4.2.1",
"yarnhook": "^0.6.0"
},
"workspaces": [
"packages/theming",
"packages/cypress-ct-ui5-webc",
"packages/cypress-internal",
"packages/base",
"packages/localization",
"packages/main",
"packages/compat",
"packages/ai",
"packages/fiori",
"packages/icons",
"packages/icons-business-suite",
"packages/icons-tnt",
"packages/tools",
"packages/website",
"packages/create-package"
],
"packageManager": "yarn@4.9.4",
"engines": {
"node": "^20.19.0 || >=22.12.0"
}
}