-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
88 lines (88 loc) · 2.58 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
{
"name": "redux-form-datagrid",
"version": "0.1.7",
"description": "React data grid component that complies with redux and redux-form. Also exposes a non form version that can be exposed to just render a data grid.",
"main": "build/bundle.min.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf build && rollup -c",
"build:watch": "rimraf build && rollup -c -w",
"lint": "eslint lib/**; exit 0",
"lint:watch": "esw -w lib/**",
"prepublish": "npm run build",
"flow": "flow",
"rollup": "rollup",
"setup": "npm install && npm link && cd examples && npm link redux-form-datagrid && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ydsood/redux-form-datagrid.git"
},
"keywords": [
"redux-form",
"datatable",
"redux-form",
"grid",
"redux-form",
"datagrid",
"datagrid",
"redux",
"datatable",
"redux",
"datagrid",
"datatable"
],
"author": "Yadvaindera Sood <[email protected]> (https://github.com/ydsood)",
"license": "ISC",
"bugs": {
"url": "https://github.com/ydsood/redux-form-datagrid/issues"
},
"homepage": "https://github.com/ydsood/redux-form-datagrid#readme",
"peerDependencies": {
"react": "^16.x",
"react-dom": "^16.x",
"styled-components": "3.x",
"react-redux": "5.x",
"redux": "4.x",
"redux-form": "7.x",
"semantic-ui-css": "2.x",
"semantic-ui-react": "^0.x",
"md5": "^2.2.x",
"babel-polyfill": "^6.x"
},
"devDependencies": {
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.2.0",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"eslint-watch": "^4.0.2",
"flow-bin": "^0.81.0",
"jest": "^23.6.0",
"polished": "^2.1.1",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"rimraf": "^2.6.2",
"rollup": "^0.66.2",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-uglify": "^6.0.4"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"md5": "^2.2.1",
"semantic-ui-react": "^0.82.5",
"styled-components": "^3.4.9"
}
}