-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.77 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
{
"private": true,
"workspaces": {
"packages": [
"packages/*",
"packages/@skbkontur/*"
],
"nohoist": [
"**/react-router"
]
},
"scripts": {
"commit": "git-cz",
"release": "env-cmd lerna version",
"release:manual": "env-cmd lerna version --no-push --no-git-tag-version",
"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",
"deps": "node scripts/deps.mts",
"lint-staged": "lint-staged",
"typecheck-scripts": "tsc -p ./tsconfig.scripts.json",
"set-testing-package-versions": "node scripts/testing/set-package-versions.mts",
"set-testing-package-versions-local": "cross-env REACT_VERSION=17 TYPESCRIPT_VERSION=4 node scripts/testing/set-package-versions.mts",
"reset-testing-package-versions": "node scripts/testing/set-package-versions.mts --reset"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@testing-library/jest-dom": "^6.4.5",
"@types/jest": "^29.5.12",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"env-cmd": "^10.1.0",
"husky": "^9.0.11",
"lerna": "^4.0.0",
"lint-staged": "^16.4.0",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"publint": "^0.3.15",
"typescript": "5.9.3"
},
"resolutions": {
"react": "19.2.1",
"react-dom": "19.2.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=22.18"
},
"engineStrict": true
}