forked from KevinVandy/material-react-table
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 3.57 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
102
103
104
105
106
107
108
109
{
"version": "1.3.0",
"license": "MIT",
"name": "material-react-table",
"description": "A fully featured Material UI V5 implementation of TanStack React Table V8, written from the ground up in TypeScript.",
"author": "Kevin Vandy",
"keywords": [
"react-table",
"material-ui",
"material-table",
"tanstack table",
"data table"
],
"repository": {
"type": "git",
"url": "https://github.com/KevinVandy/material-react-table"
},
"homepage": "https://www.material-react-table.com/",
"bugs": {
"url": "https://github.com/KevinVandy/material-react-table/issues"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/material-react-table.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"locales",
"src"
],
"size-limit": [
{
"path": "dist/cjs/index.js",
"limit": "50 KB"
},
{
"path": "dist/esm/material-react-table.esm.js",
"limit": "50 KB"
}
],
"engines": {
"node": ">=14"
},
"scripts": {
"analyze": "size-limit --why",
"build": "rm -rf dist locales && rollup -c && size-limit && rm -rf material-react-table-docs/node_modules/material-react-table && mkdir material-react-table-docs/node_modules/material-react-table && cp -r dist material-react-table-docs/node_modules/material-react-table/dist && cp -r locales material-react-table-docs/node_modules/material-react-table/ && cp -r src material-react-table-docs/node_modules/material-react-table/ && cp -r package.json material-react-table-docs/node_modules/material-react-table/",
"build-storybook": "build-storybook",
"format": "prettier -w .",
"lint": "eslint .",
"size": "size-limit",
"dev": "start-storybook -p 6006",
"start": "start-storybook -p 6006",
"storybook": "start-storybook -p 6006"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-react": "^7.18.6",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@faker-js/faker": "^7.5.0",
"@mui/icons-material": "^5.10.6",
"@mui/material": "^5.10.10",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.5.0",
"@size-limit/preset-small-lib": "^8.1.0",
"@storybook/addon-a11y": "^6.5.12",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.5.12",
"@storybook/addon-storysource": "^6.5.12",
"@storybook/addons": "^6.5.12",
"@storybook/builder-webpack5": "^6.4.22",
"@storybook/manager-webpack5": "^6.4.22",
"@storybook/react": "^6.5.12",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"babel-loader": "^8.2.5",
"eslint": "^8.26.0",
"eslint-plugin-mui-path-imports": "^0.0.3",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rollup": "^2.79.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"size-limit": "^8.1.0",
"storybook-dark-mode": "^1.1.2",
"tslib": "^2.4.0",
"typescript": "^4.8.4",
"webpack": "^5.0.0"
},
"peerDependencies": {
"@emotion/react": ">=11",
"@emotion/styled": ">=11",
"@mui/icons-material": ">=5",
"@mui/material": ">=5",
"react": ">=17.0"
},
"dependencies": {
"@tanstack/match-sorter-utils": "8.5.14",
"@tanstack/react-table": "8.5.19",
"react-virtual": "^2.10.4"
}
}