-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
128 lines (128 loc) · 3.91 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@aboutbits/react-ui",
"version": "2.10.5",
"homepage": "https://react-ui.aboutbits.it",
"repository": {
"type": "git",
"url": "git+https://github.com/aboutbits/react-ui.git"
},
"bugs": {
"url": "https://github.com/aboutbits/react-ui/issues"
},
"private": false,
"publishConfig": {
"access": "public"
},
"types": "./dist/types/index.d.ts",
"module": "./dist/esm/index.js",
"main": "./dist/cjs/index.js",
"prettier": "@aboutbits/prettier-config",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./tailwind-preset": "./tailwind-preset.ts"
},
"files": [
"dist/**/*",
"tailwind-preset.ts"
],
"engines": {
"npm": ">=8",
"node": ">=16"
},
"scripts": {
"dev": "storybook dev -p 4000 --no-open",
"build": "rimraf dist && npm run build:types && npm run build:esm && npm run build:cjs",
"build:types": "tsc -p tsconfig.types.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build-storybook": "storybook build",
"lint": "eslint --cache .",
"lint:fix": "npm run lint -- --fix",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest watch --passWithNoTests",
"typecheck": "tsc --project tsconfig.json --noEmit",
"checks": "npm run typecheck && npm run lint && npm run test",
"prepublishOnly": "npm run checks",
"prepare": "npm run build",
"preversion": "npm run checks",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"dependencies": {
"@aboutbits/pagination": "^2.0.2",
"@aboutbits/react-material-icons": "^2.0.0",
"@aboutbits/react-toolbox": "^0.2.5",
"@floating-ui/react": "^0.26.10",
"@headlessui/react": "^2.1.9",
"axios": "^1.6.8",
"axios-mock-adapter": "^2.0.0",
"classnames": "^2.5.1",
"lodash": "^4.17.21",
"react-hook-form": "^7.51.2"
},
"devDependencies": {
"@aboutbits/eslint-config": "^3.0.0",
"@aboutbits/prettier-config": "^1.6.1",
"@aboutbits/react-pagination": "^3.0.12",
"@aboutbits/ts-config": "^1.1.3",
"@hookform/resolvers": "^3.3.4",
"@storybook/addon-essentials": "^7.4.1",
"@storybook/addon-links": "^7.4.1",
"@storybook/addon-mdx-gfm": "^7.4.1",
"@storybook/addon-styling": "^1.3.7",
"@storybook/manager-api": "^7.4.1",
"@storybook/react": "^7.4.1",
"@storybook/react-vite": "^7.4.1",
"@storybook/theming": "^7.4.1",
"@tailwindcss/forms": "^0.5.7",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.26",
"@types/prettier": "^3.0.0",
"@types/react": "^18.2.70",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"autoprefixer": "^10.4.19",
"cssnano": "^6.1.1",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-tailwindcss": "^3.15.1",
"jsdom": "^24.0.0",
"next": "^14.1.4",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-textarea-autosize": "^8.5.3",
"remark-gfm": "^3.0.1",
"rimraf": "^5.0.1",
"storybook": "^7.4.1",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.3",
"vite": "^4.4.3",
"vitest": "^0.33.0",
"zod": "^3.22.4"
},
"peerDependencies": {
"@aboutbits/react-pagination": "^3.0.3",
"react": "^17.0.0 || ^18.0.0"
},
"peerDependenciesMeta": {
"@aboutbits/react-pagination": {
"optional": true
}
}
}