-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
67 lines (67 loc) · 1.79 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
{
"name": "gridjs-react",
"version": "6.1.1",
"description": "React component for Grid.js",
"main": "dist/gridjs.production.min.js",
"module": "dist/gridjs.production.es.min.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"keywords": [
"gridjs",
"table",
"react",
"sort",
"pagination",
"grid"
],
"author": "Afshin Mehrabani <[email protected]>",
"homepage": "https://gridjs.io",
"repository": "https://github.com/grid-js/gridjs-react",
"license": "MIT",
"peerDependencies": {
"gridjs": "^6.1.0",
"react": ">=18.x"
},
"scripts": {
"clean": "rimraf coverage dist tmp",
"build": "rollup -c",
"build:watch": "rollup -c --watch",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.0.4",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.8.7",
"gridjs": "^6.1.1",
"jest": "^29.7.0",
"jsdom": "^20.0.0",
"jsdom-global": "^3.0.2",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "~3.0.2",
"rollup": "^2.78.1",
"rollup-plugin-sizes": "^1.0.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.33.0",
"source-map-loader": "^4.0.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.3.1",
"tslib": "^2.4.0",
"tsutils": "^3.21.0",
"typescript": "^4.7.4"
}
}