-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
99 lines (99 loc) · 2.4 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
{
"name": "sematable",
"version": "2.11.3",
"description": "Client side sorting, pagination, and text filter for redux/react based apps",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "babel --presets es2015 -d lib/ src/",
"prepublish": "npm run compile",
"eslint": "./node_modules/.bin/eslint src",
"lint": "npm run eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sematext/sematable.git"
},
"keywords": [
"redux",
"react",
"datatable",
"data",
"filter",
"client",
"frontend"
],
"author": "Sematext Group, Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sematext/sematable/issues"
},
"homepage": "https://github.com/sematext/sematable#readme",
"babel": {
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-object-rest-spread"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb",
"env": {
"browser": true
},
"rules": {
"no-confusing-arrow": 0,
"react/jsx-filename-extension": 0,
"react/jsx-quotes": 0,
"react/prefer-stateless-function": 0,
"react/jsx-indent": [
2,
2
],
"jsx-quotes": [
2,
"prefer-double"
]
}
},
"peerDependencies": {
"bootstrap": "^3.0 || ^4.0",
"font-awesome": "^4.7.0",
"lodash": "^4.17.12",
"react": "^15.5 || ^16 || ^17",
"react-dom": "^15.5 || ^16 || ^17",
"react-redux": "^4 || ^5 || ^6 || ^7",
"redux": "^3.4.0"
},
"dependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.6.1",
"react-select": "^2",
"redux-actions": "^0.11.0",
"reselect": "^2.5.3"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^6.0.2",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"bootstrap": "4.0.0-alpha.6",
"bootstrap-css": "^3.0.0",
"eslint": "^3.3.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-loader": "^1.3.0",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.0.0",
"font-awesome": "^4.7.0",
"lodash": "^4.15.0",
"react": "15.5.0",
"react-dom": "15.5.0",
"react-redux": "^4.4.5",
"redux": "^3.4.0"
}
}