-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
113 lines (113 loc) · 2.84 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
110
111
112
113
{
"name": "root",
"version": "2.2.2",
"private": true,
"scripts": {
"prestart": "rimraf build/",
"start:rollup": "npm run build -- --watch",
"start:dev": "wait-on build/lib/index.js && npm start -w dev",
"start": "concurrently --names \"rollup,react\" -c \"green,blue\" \"npm run start:rollup\" \"npm run start:dev\"",
"docs": "docsify serve docs --open",
"build": "npx rimraf build/ && rollup --config rollup.config.ts",
"test": "jest",
"prepare": "husky install"
},
"workspaces": [
"lib",
"dev"
],
"engines": {
"npm": ">=8.0.0"
},
"author": {
"name": "David Parrish",
"url": "https://github.com/dvprrsh"
},
"contributor": [
{
"name": "David Parrish",
"url": "https://github.com/dvprrsh"
},
{
"name": "Lee Lavery",
"url": "https://github.com/leelavery"
},
{
"name": "Nova",
"url": "https://github.com/WeAreNova"
}
],
"license": "MIT",
"keywords": [
"mui",
"material-ui",
"table",
"data-table",
"sorting",
"pagination",
"multi-column",
"filtering",
"server-side",
"data",
"fetching"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jestSonar": {
"reportPath": "coverage"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-typescript": "^8.3.0",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.6",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"babel-jest": "^27.4.5",
"concurrently": "^6.3.0",
"docsify-cli": "^4.4.3",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-sonarjs": "^0.10.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"jest-sonar-reporter": "^2.0.0",
"react-test-renderer": "^17.0.2",
"rollup": "^2.58.3",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.3.1",
"typescript": "^4.5.4",
"wait-on": "^6.0.0"
},
"dependencies": {
"@mui/icons-material": "5.0.0",
"@mui/lab": "5.0.0-alpha.45",
"@mui/material": "5.0.0",
"@wearenova/mui-data-table": "file:lib",
"dev": "^2.0.2"
}
}