-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.06 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.06 KB
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
{
"name": "@softmedialab/materialui-table",
"version": "2.0.4",
"description": "Datatable for React based on https://material-table.com with additional features",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"dev": "webpack serve --config ./demo/webpack.config.js --mode development",
"build": "tsc --project src/tsconfig.json",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AbatapCompany/materialui-table.git"
},
"keywords": [
"react",
"material-ui",
"material",
"datatable",
"table"
],
"author": "Mehmet Baran",
"license": "MIT",
"bugs": {
"url": "https://github.com/AbatapCompany/materialui-table/issues"
},
"homepage": "https://github.com/AbatapCompany/materialui-table#readme",
"devDependencies": {
"@types/debounce": "1.2.1",
"@types/lodash": "4.14.176",
"@types/react-beautiful-dnd": "13.1.2",
"@types/react-dom": "17.0.11",
"@typescript-eslint/eslint-plugin": "5.3.1",
"@typescript-eslint/parser": "5.3.1",
"eslint": "7.26.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.1",
"eslint-plugin-react": "7.27.0",
"husky": "7.0.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"ts-loader": "9.2.6",
"typescript": "4.4.4",
"webpack": "5.67.0",
"webpack-cli": "4.9.1",
"webpack-dev-server": "4.7.3"
},
"dependencies": {
"@emotion/react": "11.9.0",
"@emotion/styled": "11.8.1",
"@mui/icons-material": "5.1.0",
"@mui/lab": "5.0.0-alpha.54",
"@mui/material": "5.1.0",
"@mui/styles": "5.1.0",
"@mui/system": "5.1.0",
"ahooks": "3.1.8",
"classnames": "2.3.1",
"date-fns": "2.28.0",
"debounce": "1.2.1",
"filefy": "0.1.11",
"lodash": "4.17.21",
"react-beautiful-dnd": "13.1.0",
"react-double-scrollbar": "0.0.15"
}
}