1 | {
|
2 | "name": "react-paginate",
|
3 | "version": "8.0.0",
|
4 | "description": "A ReactJS component that creates a pagination.",
|
5 | "main": "./dist/react-paginate.js",
|
6 | "repository": {
|
7 | "type": "git",
|
8 | "url": "https://github.com/AdeleD/react-paginate"
|
9 | },
|
10 | "keywords": [
|
11 | "react-component",
|
12 | "paginate",
|
13 | "paginator",
|
14 | "pagination"
|
15 | ],
|
16 | "author": {
|
17 | "name": "Adèle Delamarche"
|
18 | },
|
19 | "license": "MIT",
|
20 | "bugs": {
|
21 | "url": "https://github.com/AdeleD/react-paginate/issues"
|
22 | },
|
23 | "dependencies": {
|
24 | "prop-types": "^15.6.1"
|
25 | },
|
26 | "peerDependencies": {
|
27 | "react": "^16 || ^17"
|
28 | },
|
29 | "devDependencies": {
|
30 | "@babel/core": "^7.15.8",
|
31 | "@babel/eslint-parser": "^7.15.8",
|
32 | "@babel/plugin-proposal-class-properties": "^7.14.5",
|
33 | "@babel/preset-env": "^7.15.8",
|
34 | "@babel/preset-react": "^7.14.5",
|
35 | "@testing-library/react": "^12.1.2",
|
36 | "babel-loader": "^8.2.3",
|
37 | "core-js": "^3.19.0",
|
38 | "eslint": "^7.32.0",
|
39 | "eslint-plugin-react": "^7.26.1",
|
40 | "express": "^4.17.1",
|
41 | "husky": "^7.0.4",
|
42 | "jest-cli": "^27.3.1",
|
43 | "jquery": "^3.6.0",
|
44 | "prettier": "^2.4.1",
|
45 | "react": "^17.0.2",
|
46 | "react-dom": "^17.0.2",
|
47 | "react-hot-loader": "^4.13.0",
|
48 | "serve-static": "^1.14.1",
|
49 | "webpack": "^5.60.0",
|
50 | "webpack-cli": "^4.9.1",
|
51 | "webpack-dev-middleware": "^5.2.1"
|
52 | },
|
53 | "scripts": {
|
54 | "test": "jest",
|
55 | "test-watch": "jest --watch",
|
56 | "build": "webpack --config webpack.config.js --mode=production",
|
57 | "demo": "node demo/data.js && node demo/server.js",
|
58 | "start": "npm run demo",
|
59 | "format": "prettier --write .",
|
60 | "lint": "eslint .",
|
61 | "lint:fix": "eslint . --fix"
|
62 | },
|
63 | "husky": {
|
64 | "hooks": {
|
65 | "pre-commit": "npm run lint"
|
66 | }
|
67 | }
|
68 | }
|