-
Notifications
You must be signed in to change notification settings - Fork 269
/
package.json
102 lines (98 loc) · 4.89 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
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
{
"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": "wsrun --exclude-missing generate",
"generateAPI": "wsrun --exclude-missing generateAPI",
"generateProd": "wsrun --exclude-missing generateProd",
"ts": "tsc -b packages/compat/tsconfig.json packages/fiori/tsconfig.json packages/ai/tsconfig.json",
"bundle": "wsrun --exclude-missing bundle",
"clean": "wsrun --exclude-missing clean",
"scopePrepare:main": "yarn workspace @ui5/webcomponents nps scope.prepare",
"scopePrepare:compat": "yarn workspace @ui5/webcomponents-compat nps scope.prepare",
"scopePrepare:ai": "yarn workspace @ui5/webcomponents-ai nps scope.prepare",
"scopePrepare:fiori": "yarn workspace @ui5/webcomponents-fiori nps scope.prepare",
"watch:base": "yarn workspace @ui5/webcomponents-base nps watch",
"watch:main": "yarn workspace @ui5/webcomponents nps watch",
"watch:compat": "yarn workspace @ui5/webcomponents-compat nps watch",
"watch:ai": "yarn workspace @ui5/webcomponents-ai nps watch",
"watch:fiori": "yarn workspace @ui5/webcomponents-fiori nps 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 nps scope.watch",
"scopeWatch:compat": "yarn workspace @ui5/webcomponents-compat nps scope.watch",
"scopeWatch:ai": "yarn workspace @ui5/webcomponents-ai nps scope.watch",
"scopeWatch:fiori": "yarn workspace @ui5/webcomponents-fiori nps 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",
"dev": "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",
"start:website": "yarn ci:releasebuild && yarn workspace @ui5/webcomponents-website start",
"start": "npm-run-all --sequential generate start:all",
"build": "yarn ci:releasebuild",
"test": "yarn wsrun --exclude-missing test",
"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: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:test:base": "yarn workspace @ui5/webcomponents-base test",
"ci:test:main:suite-1": "yarn workspace @ui5/webcomponents test:ssr && yarn workspace @ui5/webcomponents test:suite-1",
"ci:test:main:suite-2": "yarn workspace @ui5/webcomponents test:cypress && yarn workspace @ui5/webcomponents test:suite-2",
"ci:test:fiori": "yarn workspace @ui5/webcomponents-fiori test:ssr && yarn workspace @ui5/webcomponents-fiori test:cypress && yarn workspace @ui5/webcomponents-fiori test",
"ci:test:compat": "yarn workspace @ui5/webcomponents-compat test:ssr && yarn workspace @ui5/webcomponents-compat test",
"ci:test:ai": "yarn workspace @ui5/webcomponents-ai test:ssr && yarn workspace @ui5/webcomponents-ai test",
"lint": "wsrun --exclude-missing lint",
"lint:scope": "wsrun --exclude-missing lint:scope",
"link-all": "wsrun link",
"unlink-all": "wsrun unlink",
"release": "node ./.github/actions/release.cjs",
"prepare": "husky install",
"husky:commit-msg": "commitlint -e",
"husky:pre-push": "npm-run-all --sequential husky:commit-msg",
"postinstall": "patch-package"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@semantic-release/github": "^11.0.0",
"@wdio/devtools-service": "^7.19.7",
"command-line-args": "^5.1.1",
"copy-and-watch": "^0.1.5",
"globby": "^13.1.1",
"husky": "^7.0.4",
"lerna": "^7.4.1",
"npm-run-all": "^4.1.3",
"nps": "^5.10.0",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"turbo": "^1.7.0",
"typescript": "^5.6.2",
"vite-plugin-checker": "0.6.2",
"vite-tsconfig-paths": "^4.2.1",
"wsrun": "^5.2.4",
"yarnhook": "^0.6.0"
},
"workspaces": [
"packages/theming",
"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"
]
}