-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
59 lines (59 loc) · 1.68 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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"test-packages/*",
"demos/*"
]
},
"scripts": {
"release:version": "lerna version",
"release:version-simulate": "lerna version --no-push --no-git-tag-version",
"release:publish": "lerna publish from-git --yes --no-verify-access",
"release:publish-manual": "lerna publish from-package --yes --no-verify-access",
"build": "lerna run build",
"preci": "lerna run build",
"ci": "npm-run-all format:validate ci:subpackages legal:*",
"format:fix": "prettier --write \"**/*.@(ts|js|json|md|yml)\"",
"format:validate": "prettier --check \"**/*.@(ts|js|json|md|yml)\"",
"ci:subpackages": "lerna run ci",
"legal:delete": "lerna exec \"shx rm -rf .reuse LICENSES\" || true",
"legal:copy": "lerna exec \"shx cp -r ../../.reuse .reuse && shx cp -r ../../LICENSES LICENSES\"",
"prepare": "husky",
"hooks:pre-commit": "lint-staged",
"hooks:commit-msg": "commitlint -e",
"ncu": "ncu -ws --root",
"ncu-u": "ncu -ws --root -u"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"chai": "4.4.1",
"cz-conventional-changelog": "3.3.0",
"husky": "9.0.11",
"lerna": "8.1.5",
"lint-staged": "15.2.7",
"mocha": "10.5.1",
"npm-run-all": "4.1.5",
"prettier": "3.3.2",
"shx": "0.3.4",
"typescript": "5.5.2"
},
"lint-staged": {
"*.{ts,js,json,md,yml}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}