forked from gregnb/mui-datatables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.65 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
{
"name": "mui-datatable-delight",
"version": "0.0.0-alpha.2",
"description": "A responsive DataTable component built with MUI for React-based project.",
"files": [
"./dist"
],
"types": "./dist/types/index.d.ts",
"main": "./dist/cjs/src/index.js",
"module": "./dist/esm/src/index.js",
"scripts": {
"build": "rollup -c",
"build:docs": "next build docs",
"dev": "next docs",
"lint": "eslint src",
"prepublishOnly": "npm run build",
"prettier": "prettier './**/*.{js,jsx,ts,tsx,mjs,cjs}' --write",
"test": "vitest run --coverage",
"test:watch": "vitest watch --silent=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sensasi-delight/mui-datatable-delight.git"
},
"keywords": [
"data table",
"mui",
"material ui",
"react"
],
"author": "gregnb <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gregnb/mui-datatable-delight/issues"
},
"homepage": "https://mui-datatable-delight.vercel.app",
"devDependencies": {
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@eslint/js": "^9.19.0",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@mdx-js/rollup": "^3.1.0",
"@mui/icons-material": "^6.4.0",
"@mui/material": "^6.4.0",
"@mui/material-nextjs": "^6.3.0",
"@next/mdx": "^15.1.6",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.1.0",
"@types/mdx": "^2.0.13",
"@types/mui-datatables": "^4.3.12",
"@types/prismjs": "^1.26.5",
"@types/react": "^19.0.8",
"@vitejs/plugin-react-swc": "^3.7.2",
"@vitest/coverage-v8": "^3.0.4",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"jsdom": "^26.0.0",
"mermaid": "^11.4.1",
"next": "^15.1.6",
"prettier": "^3.4.2",
"prismjs": "^1.29.0",
"react": "^18.3.1",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dnd-test-backend": "^16.0.1",
"react-dnd-test-utils": "^16.0.1",
"react-dom": "^18.3.1",
"react-waypoint": "^10.1.0",
"rollup": "^4.32.0",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-pluginutils": "^2.8.2",
"rollup-preserve-directives": "^1.1.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.22.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.4"
},
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.4.1",
"@mui/icons-material": "^5.9.3 || ^6.0.0",
"@mui/material": "^5.9.3 || ^6.0.0",
"react": "^17.0.2 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.2 || ^18.0.0 || ^19.0.0",
"react-to-print": "^3.0.5",
"redux": "^4.2.0",
"tss-react": "^4.9.14"
}
}