-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.41 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.41 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
{
"name": "@keyvaluesystems/multilevel-table",
"private": false,
"version": "1.0.0",
"description": "A flexible and customizable table component built with React and Material-UI",
"author": "KeyValue Software Systems",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"license",
"readme"
],
"repository": {
"type": "git",
"url": "git+https://github.com/KeyValueSoftwareSystems/react-multi-level-table.git"
},
"bugs": {
"url": "https://github.com/KeyValueSoftwareSystems/react-multi-level-table/issues"
},
"homepage": "https://github.com/KeyValueSoftwareSystems/react-multi-level-table#readme",
"keywords": [
"react",
"table",
"material-ui",
"typescript",
"component",
"data-grid"
],
"scripts": {
"dev": "vite",
"build": "rm -rf dist && tsc -p tsconfig.build.json && rollup -c",
"lint": "eslint src",
"preview": "vite preview",
"prepare": "husky",
"pre-commit": "lint-staged",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-table": "^7.7.20",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-v8": "^3.1.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.3.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.0.0",
"eslint-plugin-react-refresh": "^0.4.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^15.5.2",
"prettier": "^3.5.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rollup": "^4.0.0",
"rollup-plugin-dts": "^6.0.0",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "^2.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.32.0",
"vite": "^5.0.0",
"vitest": "^3.1.3"
},
"dependencies": {
"react-table": "^7.8.0"
}
}