-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
78 lines (78 loc) · 1.99 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
{
"name": "react-hooks-paginator",
"description": "A package for adding paginator functionality to react apps",
"version": "0.5.3",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/types/index.d.ts",
"type": "module",
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "https://github.com/codenaz/react-paginator"
},
"keywords": [
"react",
"paginate",
"page",
"pagination",
"paginator"
],
"author": {
"name": "Nwakwoke Patrick",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"start": "react-scripts start",
"build": "del dist && rollup -c",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepublish": "npm run build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/cli": "7.25.6",
"@babel/core": "7.22.0",
"@babel/preset-env": "7.9.0",
"@babel/preset-react": "7.9.0",
"@babel/plugin-transform-private-property-in-object": "^7.21.11",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/jest-dom": "^4.1.2",
"@testing-library/react": "^9.3.0",
"babel-jest": "^29.7.0",
"babel-loader": "8.0.5",
"del-cli": "^3.0.0",
"husky": "^8.0.3",
"prettier": "^1.16.4",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-scripts": "5.0.1",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-visualizer": "^3.3.1",
"sass": "^1.77.8",
"webpack": "5.94.0"
}
}