-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.96 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
{
"name": "@hyperse/antd-monorepo",
"version": "0.0.1",
"private": true,
"description": "A Typescript based react admin antd libraries for @hyperse",
"keywords": [
"frontend",
"typescript",
"react",
"flatjs"
],
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"g:clean": "yarn clean:global-cache && yarn workspaces foreach -ptv run clean",
"g:build": "yarn g:build-release",
"?build-release": "When https://github.com/atlassian/changesets/issues/432 has a solution we can remove this trick",
"g:build-release": "yarn workspaces foreach -At run build-release",
"g:test": "yarn g:test-unit && yarn g:test-e2e",
"g:test-unit": "yarn workspaces foreach -Ap run test-unit",
"g:test-e2e": "yarn workspaces foreach -Ap run test-e2e",
"g:lint": "yarn workspaces foreach -At run lint --color",
"g:typecheck": "yarn workspaces foreach -At run typecheck",
"g:fix-all-files": "yarn workspaces foreach -At run fix-all-files",
"g:lint-staged-files": "lint-staged --allow-empty",
"g:changeset": "changeset",
"g:release": "yarn g:build-release && changeset publish",
"g:cz": "cz",
"g:publish-local": "yarn changeset version && cd scripts && ./publish-to-verdaccio.sh",
"prepare": "husky"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"resolutions": {
"eslint-plugin-markdown": "5.1.0"
},
"dependencies": {
"cross-env": "7.0.3"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.9",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@hyperse/eslint-config-hyperse": "^1.2.6",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.13.0",
"husky": "9.1.6",
"is-ci": "3.0.1",
"lint-staged": "15.2.10",
"npm-run-all": "4.1.5",
"rimraf": "6.0.1",
"typescript": "5.6.3"
},
"packageManager": "[email protected]"
}