forked from themesberg/flowbite-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.16 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
{
"name": "@vertisanpro/flowbite-react",
"version": "0.7.2-v3",
"description": "Non-Official React components built for Flowbite and Tailwind CSS",
"keywords": [
"design-system",
"flowbite",
"flowbite-react",
"react",
"tailwind",
"tailwindcss",
"tailwind-css"
],
"homepage": "https://flowbite-react.com",
"license": "MIT",
"files": [
"./lib/"
],
"type": "module",
"main": "./lib/src/index.js",
"module": "./lib/src/index.js",
"types": "./lib/src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/VertisanPRO/flowbite-react"
},
"scripts": {
"build": "rm -rf ./lib/ && tsc --declaration --outDir ./lib",
"lint": "eslint --color .",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"test": "vitest",
"test:open": "vitest --ui",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@floating-ui/react": "^0.26.2",
"@vertisanpro/react-icons": "^5.1.0-v4",
"@vertisanpro/tailwind-merge": "^2.1.0-v1",
"flowbite": "^2.0.0",
"nanoid": "^4.0.2",
"react-indiana-drag-scroll": "^2.2.0"
},
"devDependencies": {
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^16.18.67",
"@types/react": "^16.14.0",
"@types/react-dom": "^16.9.19",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"@vitejs/plugin-react": "^4.0.1",
"@vitest/ui": "^0.32.2",
"autoprefixer": "^10.4.14",
"eslint": "^8.43.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^22.1.0",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-tailwindcss": "^0.3.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"resize-observer-polyfill": "^1.5.1",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.32.2"
},
"peerDependencies": {
"react": "^16",
"react-dom": "^16",
"tailwindcss": "^3"
},
"resolutions": {
"@types/react": "16.14.0",
"@types/react-dom": "16.9.19"
},
"private": false,
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:jsx-a11y/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended"
],
"ignorePatterns": [
"/build/",
"/docs/",
"/lib/",
"/postcss.config.js",
"/tailwind.config.js"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"project": [
"./tsconfig.json"
]
},
"plugins": [
"@typescript-eslint",
"jsx-a11y",
"react",
"react-hooks"
],
"root": true,
"rules": {
"@typescript-eslint/consistent-type-imports": "warn",
"jsx-a11y/anchor-is-valid": "off",
"react/no-unescaped-entities": "off"
}
}
}