-
-
Notifications
You must be signed in to change notification settings - Fork 1k
/
package.json
101 lines (101 loc) · 2.82 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
{
"name": "material-table",
"version": "2.0.6",
"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"
},
"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",
"@mui/material": "^5.5.0",
"@mui/lab": "^5.0.0-alpha.72",
"@mui/styles": "5.5.0",
"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": "17.0.2",
"react-dom": "17.0.2",
"react-hot-loader": "4.13.0",
"typescript": "4.6.2",
"webpack": "4.27.1",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.10"
},
"dependencies": {
"@date-io/date-fns": "2.13.1",
"@emotion/styled": "11.8.1",
"classnames": "2.2.6",
"date-fns": "2.28.0",
"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.1.0",
"react-double-scrollbar": "0.0.15"
},
"peerDependencies": {
"@date-io/core": "^2.13.1",
"@mui/material": "^5.5.0",
"@mui/lab": "^5.0.0-alpha.72",
"@mui/styles": "5.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}