forked from react-component/table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.44 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
{
"name": "rc-table",
"version": "7.3.12",
"description": "table ui component for react",
"engines": {
"node": ">=8.x"
},
"keywords": [
"react",
"react-table",
"table",
"component",
"ui"
],
"files": [
"assets/*.css",
"dist",
"es",
"lib"
],
"main": "./lib/index",
"module": "./es/index",
"homepage": "http://github.com/react-component/table",
"maintainers": [
],
"repository": {
"type": "git",
"url": "[email protected]:react-component/table.git"
},
"bugs": {
"url": "http://github.com/react-component/table/issues"
},
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=development father doc dev --storybook",
"build": "father doc build --storybook",
"compile": "father build && lessc assets/index.less assets/index.css",
"gh-pages": "npm run build && father doc deploy",
"prepublishOnly": "npm run compile && np --no-cleanup --yolo --no-publish",
"postpublish": "npm run gh-pages",
"lint": "eslint src/ --ext .ts,.tsx,.jsx,.js,.md",
"prettier": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"test": "father test",
"coverage": "father test --coverage"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"dependencies": {
"classnames": "^2.2.5",
"component-classes": "^1.2.6",
"lodash": "^4.17.5",
"mini-store": "^2.0.0",
"prop-types": "^15.5.8",
"raf": "^3.4.1",
"rc-resize-observer": "^0.2.0",
"rc-util": "^4.20.1",
"react-lifecycles-compat": "^3.0.2",
"shallowequal": "^1.1.0"
},
"devDependencies": {
"@types/classnames": "^2.2.9",
"@types/jest": "^25.1.0",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@umijs/fabric": "^2.0.0",
"cross-env": "^7.0.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"enzyme-to-json": "^3.1.2",
"father": "^2.22.0",
"immutability-helper": "^3.0.0",
"less": "^3.10.3",
"np": "^6.0.0",
"prettier": "^2.0.1",
"rc-animate": "^2.10.1",
"rc-dropdown": "~3.0.1",
"rc-menu": "^8.0.2",
"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-test-renderer": "^16.0.0",
"react-virtualized": "^9.12.0",
"react-window": "^1.8.5",
"styled-components": "^5.0.1",
"typescript": "^3.7.2"
}
}