-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
82 lines (82 loc) · 2.48 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
80
81
82
{
"name": "react-headless-pagination",
"author": "Thijs Smudde",
"version": "1.1.6",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"description": "Headless ReactJS component for pagination. Built using hooks and tested with Jest.",
"files": [
"dist"
],
"engines": {
"node": ">=18.13"
},
"scripts": {
"start": "tsdx watch",
"build": "NODE_ENV=production tsdx build",
"test": "tsdx test --watchAll ",
"test-coverage": "yarn tsdx test --collectCoverage --coverageReporters 'cobertura'",
"test-coverage-html": "tsdx test --watchAll --collectCoverage --coverageReporters 'html'",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"build:css": "npx tailwindcss -i ./stories/tailwind.css -o storybook-static/tailwind.css --minify",
"watch:css": "npx tailwindcss -i ./stories/tailwind.css -o ./stories/tailwind_output.css --watch",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"clsx": "^2.1.0"
},
"peerDependencies": {
"react": ">=16"
},
"module": "dist/react-headless-pagination.esm.js",
"size-limit": [
{
"path": "dist/react-headless-pagination.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/react-headless-pagination.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@babel/core": "7.12.13",
"@headlessui/react": "1.4.1",
"@size-limit/preset-small-lib": "4.9.2",
"@storybook/addon-essentials": "^7.6.7",
"@storybook/addon-interactions": "^7.6.7",
"@storybook/addon-links": "^7.6.7",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.6.7",
"@storybook/react": "^7.6.7",
"@storybook/react-webpack5": "^7.6.7",
"@storybook/test": "^7.6.7",
"@testing-library/jest-dom": "5.11.9",
"@testing-library/react": "11.2.5",
"@testing-library/react-hooks": "7.0.2",
"@types/react": "17.0.1",
"@types/react-dom": "17.0.0",
"autoprefixer": "9",
"babel-loader": "8.2.2",
"chromatic": "5.6.2",
"identity-obj-proxy": "3.0.0",
"postcss": "7",
"prettier": "2.4.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-icons": "4.3.1",
"react-is": "17.0.1",
"rollup-plugin-postcss": "4.0.0",
"size-limit": "4.9.2",
"storybook": "^7.6.7",
"tailwindcss": "^3.4.1",
"tsdx": "0.14.1",
"tslib": "2.1.0",
"typescript": "4.1.3"
}
}