-
Notifications
You must be signed in to change notification settings - Fork 238
/
package.json
64 lines (64 loc) · 1.75 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
64
{
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "node ./scripts/bootstrap.js",
"build": "father-build",
"link": "yarn link umi && yarn link @umijs/test && yarn link @umijs/utils && yarn link @umijs/types",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"release": "node ./scripts/release.js",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"test:update": "umi-test --updateSnapshot"
},
"lint-staged": {
"*.ts?(x)": [
"prettier --parser=typescript --write",
"git add"
],
"*.{js,jsx,less,md,json}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@ant-design/pro-layout": "^6.19.3",
"@testing-library/react": "^9.4.0",
"@testing-library/react-hooks": "^3.2.1",
"@types/assert": "^1.5.4",
"@types/jest": "^25.1.3",
"@types/lodash": "^4.14.170",
"@types/node": "^13.7.7",
"@umijs/plugin-blocks": "^2.0.0-beta.4",
"@umijs/test": "^3.0.10",
"@umijs/test-utils": "^1.0.0",
"antd": "^4.16.1",
"babel-plugin-import": "^1.13.3",
"body-parser": "^1.18.2",
"cheerio": "^1.0.0-rc.9",
"cypress": "^7.1.0",
"cypress-wait-until": "^1.7.1",
"express": "^4.15.3",
"father-build": "^1.19.1",
"inquirer": "^8.0.0",
"lerna": "^3.20.2",
"lint-staged": "^10.0.8",
"npm-run-all": "^4.1.5",
"pify": "^5.0.0",
"prettier": "^2.0.5",
"query-string": "^6.11.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.9.0",
"umi": "^3.4.24",
"webpack": "^5.38.1",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
}
}