-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
102 lines (102 loc) · 3.02 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"workspaces": [
"packages/*"
],
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/crazyair/yforms.git"
},
"scripts": {
"start": "dumi dev",
"build": "father-build && cd packages/yforms && yarn compile && cd ../..",
"docs:build": "dumi build",
"fa:build": "father build",
"test": "umi-test -u --coverage",
"test:ci": "umi-test",
"lint": "eslint --ext .js,jsx,ts,tsx packages/**/src --fix",
"lint:es": "eslint --ext .js,jsx,ts,tsx packages/**/src",
"lint:tsc": "tsc -p tsconfig.json --noEmit",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"pub": "npm run build && lerna publish"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
".{less,css,json}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/polyfill": "^7.12.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@testing-library/react": "^11.1.1",
"@testing-library/react-hooks": "^3.4.2",
"@types/classnames": "^2.2.11",
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.18",
"@types/lodash": "^4.14.165",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@types/react-router-dom": "^5.1.6",
"@types/react-test-renderer": "^16.9.3",
"@types/warning": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"@umijs/fabric": "^2.4.11",
"@umijs/test": "^3.3.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"clean-webpack-plugin": "^3.0.0",
"conventional-changelog": "^3.1.24",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"dumi": "^1.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "7.15",
"eslint-config-umi": "^1.6.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unicorn": "^23.0.0",
"father-build": "^1.19.1",
"husky": "^4.3.5",
"lerna": "^3.22.1",
"lerna-changelog": "^1.0.1",
"less": "^3.12.2",
"less-loader": "^7.2.1",
"lint-staged": "^10.5.3",
"mini-css-extract-plugin": "^1.3.3",
"prettier": "^2.2.1",
"rc-util": "^5.5.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-test-renderer": "^16.13.1",
"typescript": "^4.1.2",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1"
},
"license": "MIT",
"dependencies": {
"antd": "^4.9.2",
"immutable": "^4.0.0-rc.12",
"rc-queue-anim": "^1.8.5"
}
}