-
Notifications
You must be signed in to change notification settings - Fork 130
/
package.json
39 lines (39 loc) · 1.07 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
{
"workspaces": {
"packages": [
"packages/*",
"packages/@skbkontur/*"
],
"nohoist": [
"**/react-router"
]
},
"private": true,
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@skbkontur/eslint-config": "*",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"env-cmd": "^10.1.0",
"husky": "^9.0.11",
"lerna": "^4.0.0",
"prettier": "3.2.5"
},
"scripts": {
"commit": "git-cz",
"release": "env-cmd lerna version --create-release github",
"release:next:prerelease": "env-cmd lerna version prerelease --preid next --no-changelog --ignore-changes='!packages/react-ui/**'",
"release:next:preminor": "env-cmd lerna version preminor --preid next --no-changelog --ignore-changes='!packages/react-ui/**'",
"prepare": "husky install",
"deps": "node scripts/deps"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"selenium-webdriver": "4.0.0-beta.4"
}
}