-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.09 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
{
"name": "token-pagination-hooks",
"version": "0.2.1",
"description": "React Hook for token based pagination",
"author": "Simone Busoli <simone.busoli@nearform.com>",
"repository": "simoneb/token-pagination-hooks",
"main": "cjs/index.js",
"module": "es/index.js",
"unpkg": "umd/index.js",
"umd": "umd/index.js",
"files": [
"cjs/",
"es/",
"umd/",
"src/"
],
"scripts": {
"clean": "rimraf cjs es umd",
"prepare": "run-s clean build",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "dotenv -e .token release-it --",
"toc": "markdown-toc README.md -i",
"test": "jest",
"examples": "run-p examples:*",
"examples:server": "nodemon examples/server.js",
"examples:client": "npm run build:watch"
},
"keywords": [
"react",
"pagination",
"token pagination"
],
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@testing-library/react": "^11.2.2",
"@testing-library/react-hooks": "^3.7.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"dotenv-cli": "^4.0.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"markdown-toc": "^1.2.0",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-test-renderer": "^17.0.1",
"regenerator-runtime": "^0.13.7",
"release-it": "^14.2.2",
"rollup": "^2.35.1"
},
"peerDependencies": {
"react": "^17.0.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}