-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.84 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
63
{
"scripts": {
"start": "dumi dev",
"build": "pnpm -r build",
"site": "dumi build && cp .surgeignore _site",
"test": "jest",
"coverage": "jest --coverage",
"predeploy": "pnpm run site && cp CNAME _site",
"prepare": "husky install && dumi setup",
"clean": "redbud run ./scripts/clean.ts",
"tsc:check": "tsc --noEmit",
"deploy": "gh-pages -d _site -b gh-pages -f",
"release": "redbud run ./scripts/release.ts"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@emotion/babel-preset-css-prop": "^11.10.0",
"@emotion/react": "^11.10.6",
"@pansy/react-hooks": "^1.0.3",
"@pansy/shared": "^1.11.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.4.2",
"@types/node": "^18.15.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/testing-library__jest-dom": "^5.14.5",
"@umijs/test": "^4.0.57",
"@umijs/utils": "^4.0.57",
"antd": "^5.3.1",
"dumi": "^2.1.15",
"gh-pages": "^5.0.0",
"git-repo-info": "^2.1.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lerna": "^6.5.1",
"lint-staged": "^13.2.0",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"read-pkg": "^7.1.0",
"redbud": "^1.6.0",
"regenerator-runtime": "^0.13.11",
"rimraf": "^4.4.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"zx": "^7.2.0"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --no-error-on-unmatched-pattern --cache --write"
],
"*.ts?(x)": [
"prettier --no-error-on-unmatched-pattern --cache --parser=typescript --write"
]
},
"workspaces": [
"packages/*"
]
}