forked from react-component/table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.79 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
103
104
105
106
107
108
{
"name": "rc-table",
"version": "7.32.0",
"description": "table ui component for react",
"engines": {
"node": ">=8.x"
},
"keywords": [
"react",
"react-table",
"table",
"component",
"ui"
],
"files": [
"assets/*.css",
"es",
"lib"
],
"main": "./lib/index",
"module": "./es/index",
"types": "./lib/index.d.ts",
"homepage": "http://github.com/react-component/table",
"maintainers": [
"yiminghe@gmail.com",
"afc163@gmail.com"
],
"repository": {
"type": "git",
"url": "git@github.com:react-component/table.git"
},
"bugs": {
"url": "http://github.com/react-component/table/issues"
},
"license": "MIT",
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d .doc",
"compile": "father build && lessc assets/index.less assets/index.css",
"deploy": "npm run docs:build && npm run docs:deploy",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"test": "rc-test",
"coverage": "rc-test --coverage",
"prepublishOnly": "npm run compile && np --no-cleanup --yolo --no-publish",
"lint": "eslint src/ --ext .tsx,.ts",
"lint:tsc": "tsc -p tsconfig.json --noEmit",
"now-build": "npm run docs:build",
"prepare": "husky install"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"dependencies": {
"@babel/runtime": "^7.10.1",
"@rc-component/context": "^1.3.0",
"classnames": "^2.2.5",
"rc-resize-observer": "^1.1.0",
"rc-util": "^5.27.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@types/enzyme": "^3.10.5",
"@types/jest": "^28.1.2",
"@types/react": "^17.0.35",
"@types/react-dom": "^18.0.5",
"@types/responselike": "^1.0.0",
"@umijs/fabric": "^3.0.0",
"cross-env": "^7.0.0",
"dumi": "^2.1.3",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"enzyme-to-json": "^3.1.2",
"eslint": "^7.1.0",
"father": "^4.0.0",
"gh-pages": "^3.1.0",
"glob": "^7.1.6",
"husky": "^8.0.3",
"immutability-helper": "^3.0.0",
"less": "^3.10.3",
"lint-staged": "^13.1.0",
"np": "^7.0.0",
"prettier": "^2.0.1",
"rc-animate": "^3.0.0",
"rc-dropdown": "~4.0.1",
"rc-menu": "~9.6.0",
"rc-test": "^7.0.14",
"rc-tooltip": "^5.2.1",
"react": "^16.0.0",
"react-dnd": "^2.5.4",
"react-dnd-html5-backend": "^2.5.4",
"react-dom": "^16.0.0",
"react-resizable": "^1.7.5",
"react-virtualized": "^9.12.0",
"react-window": "^1.8.5",
"regenerator-runtime": "^0.13.7",
"styled-components": "^5.0.1",
"typescript": "^4.8.4"
},
"lint-staged": {
"**/*.{js,jsx,tsx,ts,md,json}": [
"prettier --write",
"git add"
]
}
}