-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.76 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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"test-packages/*",
"demos/*"
]
},
"scripts": {
"build": "yarn workspace @ui5/dts-generator build && yarn workspace @ui5/ts-interface-generator build",
"preci": "yarn build",
"ci": "npm-run-all format:validate lint:lockfile ci:subpackages",
"ci:subpackages": "yarn workspaces run ci",
"changeset": "changeset",
"changeset:auto": "node scripts/auto-changeset.mjs",
"changeset:empty": "changeset --empty",
"version-packages": "changeset version && yarn install --ignore-scripts",
"release-publish": "changeset publish",
"format:fix": "prettier --write \"**/*.@(ts|js|json|md|yml)\"",
"format:validate": "prettier --check \"**/*.@(ts|js|json|md|yml)\"",
"lint:lockfile": "lockfile-lint --path yarn.lock --type yarn --allowed-hosts yarn --validate-https",
"prepare": "husky",
"hooks:pre-commit": "lint-staged",
"hooks:commit-msg": "commitlint -e",
"ncu": "ncu -ws --root",
"ncu-u": "ncu -ws --root -u"
},
"devDependencies": {
"@changesets/changelog-github": "0.7.0",
"@changesets/cli": "2.31.0",
"@commitlint/cli": "21.0.0",
"@commitlint/config-conventional": "21.0.0",
"chai": "6.2.2",
"cz-conventional-changelog": "3.3.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"lockfile-lint": "5.0.0",
"mocha": "11.7.5",
"npm-run-all2": "5.0.0",
"prettier": "3.8.3",
"shx": "0.4.0",
"typescript": "6.0.3"
},
"lint-staged": {
"*.{ts,js,json,md,yml}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}