-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.31 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.31 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
86
87
88
89
90
91
92
{
"name": "next-paginate",
"version": "0.1.0",
"description": "next-paginate is a pagination library for Next.js",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "rimraf dist && rollup --config",
"build:watch": "rollup --config --watch",
"prepublishOnly": "yarn build",
"prepare": "husky install",
"lint": "eslint .",
"test": "jest"
},
"np": {
"branch": "main",
"releaseDraft": true
},
"repository": {
"type": "git",
"url": "git@github.com:HyperFunctor/next-paginate.git"
},
"bugs": {
"url": "https://github.com/HyperFunctor/next-paginate/issues"
},
"keywords": [
"React",
"next.js",
"pagination"
],
"license": "ISC",
"files": [
"package.json",
"dist",
"LICENSE"
],
"devDependencies": {
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.4",
"@rollup/plugin-commonjs": "21.0.3",
"@rollup/plugin-node-resolve": "13.1.3",
"@rollup/plugin-typescript": "8.3.1",
"@typeofweb/eslint-plugin": "0.3.0",
"@types/jest": "27.4.1",
"@types/node": "16",
"@types/react": "18.0.1",
"@types/react-dom": "18.0.0",
"all-contributors-cli": "6.20.0",
"eslint": "8.13.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.4.0",
"eslint-plugin-testing-library": "5.2.1",
"husky": "7.0.4",
"lint-staged": "12.3.7",
"next": "12.1.4",
"prettier": "2.6.2",
"react": "18.0.0",
"react-dom": "18.0.0",
"rimraf": "3.0.2",
"rollup": "2.70.1",
"rollup-plugin-filesize": "9.1.2",
"rollup-plugin-license": "2.6.1",
"rollup-plugin-prettier": "2.2.2",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "0.31.2",
"ts-jest": "27.1.4",
"tslib": "2.3.1",
"typescript": "4.6.3"
},
"peerDependencies": {
"next": "12.1.4",
"react": "18.0.0",
"react-dom": "18.0.0"
},
"lint-staged": {
"**/*.{ts,tsx,md,js,json,yml,yaml}": [
"yarn prettier --write"
]
},
"dependencies": {
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.0.0",
"jest": "27.5.1"
}
}