forked from ant-design/pro-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.87 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
{
"name": "@ant-design/pro-table",
"version": "2.1.7",
"description": "🏆 Use Ant Design Table like a Pro!",
"repository": "https://github.com/ant-design/pro-table",
"license": "MIT",
"files": [
"/lib",
"/es",
"/dist"
],
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "father build && webpack",
"lint": "npm run lint-eslint && npm run lint:style",
"lint-eslint": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
"lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./**/src ./tests && npm run lint:style",
"lint:style": "stylelint --fix \"src/**/*.less\" --syntax less",
"prepublishOnly": "npm run test && npm run build && np --no-cleanup --yolo --no-publish",
"prettier": "prettier -c --write \"**/*\"",
"site": "dumi build && gh-pages -d ./dist",
"start": "dumi dev",
"test": "npm run lint && father test"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
],
"dependencies": {
"@ant-design/icons": "^4.0.0",
"@types/react-responsive": "^8.0.2",
"antd": "^4.0.0",
"classnames": "^2.2.6",
"dnd-core": "^10.0.2",
"lodash.isequal": "^4.5.0",
"lodash.tonumber": "^4.0.3",
"moment": "^2.24.0",
"rc-resize-observer": "^0.1.3",
"rc-util": "^4.19.0",
"react-dnd": "^10.0.2",
"react-dnd-html5-backend": "^10.0.2",
"unstated-next": "^1.1.0",
"use-json-comparison": "^1.0.5",
"use-media-antd-query": "1.0.1",
"use-merge-value": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/classnames": "^2.2.9",
"@types/enzyme": "^3.10.3",
"@types/jest": "^24.0.23",
"@types/lodash.isequal": "^4.5.5",
"@types/lodash.tonumber": "^4.0.3",
"@types/node": "^12.12.8",
"@types/react": "^16.9.11",
"@umijs/fabric": "^2.0.0",
"babel-plugin-import": "^1.12.2",
"css-loader": "^3.4.2",
"dumi": "^1.0.0-beta.12",
"enzyme": "^3.10.0",
"enzyme-to-json": "^3.4.3",
"eslint": "^6.8.0",
"father": "^2.26.0",
"husky": "^4.2.3",
"jsdom-global": "^3.0.2",
"less-loader": "^5.0.0",
"np": "^5.1.3",
"pretty-quick": "^2.0.1",
"react-github-btn": "^1.1.1",
"style-loader": "^1.1.3",
"stylelint": "^11.0.0",
"typescript": "^3.3.3",
"umi": "^3.0.0-beta.32",
"umi-plugin-githubpages": "^2.0.1",
"umi-request": "^1.2.15",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10"
},
"peerDependencies": {
"react": "16.x"
},
"authors": {
"name": "chenshuai2144",
"email": "qixian.cs@outlook.com"
}
}