-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 4.32 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 4.32 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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@vishm-ats/mui-datatables",
"version": "5.0.2",
"description": "Datatables for React using Material-UI",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"dev": "cross-env NODE_ENV=development webpack serve",
"test": "cross-env NODE_ENV=test mocha",
"docs:dev": "next docs",
"docs:build": "cross-env NODE_ENV=production next build docs",
"docs:export": "next export docs -o docs/export",
"docs:deploy": "npm run docs:build && npm run docs:export && firebase deploy",
"docs:start": "next start docs",
"coverage": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha --require @babel/register test/*.js && nyc report --reporter=html | cat coverage/lcov.info | coveralls",
"coverage:html": "cross-env NODE_ENV=test nyc check-coverage --lines 55 --reporter=html --reporter=text mocha --require @babel/register test/*.js && nyc report --reporter=html",
"prettier": "find src/ docs/ test/ -type f -name \"*.js\" ! -path \"*/.next/*\" | xargs prettier --write",
"lint": "eslint src",
"build": "cross-env NODE_ENV=production npm run prettier && rollup -c",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Atharva-System/mui-datatables.git"
},
"keywords": [
"material-ui",
"datatables",
"react"
],
"author": "gregnb <gregnb@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Atharva-System/mui-datatables/issues"
},
"homepage": "https://github.com/Atharva-System/mui-datatables#readme",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/eslint-parser": "^7.24.0",
"@babel/plugin-external-helpers": "^7.10.1",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-transform-async-to-generator": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.24.0",
"@babel/register": "^7.10.1",
"@cfaester/enzyme-adapter-react-18": "^0.8.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@lopatnov/rollup-plugin-uglify": "^2.1.1",
"@mui/icons-material": "^6.4.1",
"@mui/material": "^6.4.1",
"@rollup/plugin-babel": "5.0.2",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@rollup/plugin-replace": "^2.3.2",
"babel-loader": "^10.0.0",
"cross-env": "^10.1.0",
"eslint": "^8.57.1",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-webpack-plugin": "^5.0.2",
"next": "^16.1.1",
"nyc": "^15.0.1",
"prettier": "^1.18.2",
"prismjs": "^1.20.0",
"react": "^19.2.3",
"react-dnd-test-backend": "^16.0.1",
"react-dnd-test-utils": "^16.0.1",
"react-dom": "^19.2.3",
"react-router-dom": "^5.0.1",
"react-waypoint": "^10.1.0",
"regenerator-runtime": "^0.14.1",
"rollup": "^2.3.4",
"rollup-pluginutils": "^2.8.2",
"simulant": "^0.2.2",
"sinon": "^7.4.2",
"style-loader": "^4.0.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"peerDependencies": {
"@emotion/react": "^11.0.0",
"@mui/icons-material": ">=5.11.0",
"@mui/material": ">=5.11.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.12.1",
"@emotion/cache": "^11.7.1",
"clsx": "^1.1.1",
"lodash.assignwith": "^4.2.0",
"lodash.clonedeep": "^4.5.0",
"lodash.debounce": "^4.0.8",
"lodash.find": "^4.6.0",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"lodash.isundefined": "^3.0.1",
"lodash.memoize": "^4.1.2",
"lodash.merge": "^4.6.2",
"prop-types": "^15.7.2",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-to-print": "^3.2.0",
"tss-react": "^4.1.3"
},
"side-effects": false,
"nyc": {
"lines": 50,
"statements": 50,
"functions": 50,
"branches": 50,
"check-coverage": true,
"all": true,
"include": [
"src/**/*.js"
],
"exclude": [
"test/**/*.test.js"
],
"sourceMap": false,
"instrument": false
}
}