forked from mbrn/material-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.76 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": "material-table",
"version": "1.69.4",
"description": "Datatable for React based on https://material-ui.com/api/table/ with additional features",
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"babel": {
"extends": "./configs/.babelrc"
},
"scripts": {
"start": "webpack-dev-server --config ./demo/webpack.config.js --mode development",
"build": "babel src --out-dir dist",
"lint": "npm run eslint && npm run tsc",
"eslint": "eslint src/** -c ./configs/.eslintrc",
"tsc": "tsc --noEmit --lib es6,dom --skipLibCheck types/index.d.ts",
"lint:fix": "eslint src/** --fix",
"prettify": "prettier --write **/*.js",
"prepare": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/mbrn/material-table.git"
},
"keywords": [
"react",
"material-ui",
"material",
"datatable",
"table"
],
"author": "Mehmet Baran",
"license": "MIT",
"bugs": {
"url": "https://github.com/mbrn/material-table/issues"
},
"homepage": "https://github.com/mbrn/material-table#readme",
"devDependencies": {
"@babel/cli": "7.1.2",
"@babel/core": "7.4.4",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/plugin-transform-runtime": "7.1.0",
"@babel/preset-env": "7.2.0",
"@babel/preset-react": "7.0.0",
"@material-ui/core": "4.0.1",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.4",
"babel-polyfill": "6.26.0",
"buble": "0.19.3",
"eslint": "5.7.0",
"eslint-config-defaults": "9.0.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-react": "7.11.1",
"eslint-plugin-standard": "4.0.0",
"husky": "1.2.0",
"prettier": "2.0.5",
"pretty-quick": "2.0.1",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-hot-loader": "4.3.12",
"typescript": "3.2.2",
"webpack": "4.27.1",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.10"
},
"dependencies": {
"@date-io/date-fns": "1.1.0",
"@material-ui/pickers": "3.2.2",
"classnames": "2.2.6",
"date-fns": "2.0.0-alpha.27",
"debounce": "1.2.0",
"fast-deep-equal": "2.0.1",
"filefy": "0.1.10",
"jspdf": "2.1.0",
"jspdf-autotable": "3.5.9",
"prop-types": "15.6.2",
"react-beautiful-dnd": "13.0.0",
"react-double-scrollbar": "0.0.15"
},
"peerDependencies": {
"@date-io/core": "^1.3.6",
"@material-ui/core": "^4.0.1",
"react": "^16.8.4 || ^17.0.0",
"react-dom": "^16.8.4 || ^17.0.0"
}
}