-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
69 lines (69 loc) · 2.19 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
{
"name": "react-tailwindcss-select",
"version": "1.8.5",
"description": "A select input made with React js and Tailwind CSS",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"author": "onesine",
"license": "MIT",
"scripts": {
"watch": "rollup -c -w",
"clean": "rm -rf dist",
"tailwind-build": "tailwindcss -i ./src/index.css -o ./dist/index.css --minify",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"pret": "prettier -c .",
"pret:fix": "prettier -w .",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"build": "npm run pret && npm run lint && npm run clean && rollup -c && npm run tailwind-build",
"dev": "next dev -p 8888"
},
"repository": {
"type": "git",
"url": "https://github.com/onesine/react-tailwindcss-select"
},
"keywords": [
"combobox",
"form",
"input",
"multiselect",
"react",
"react-component",
"react-tailwind",
"select",
"tailwind",
"tailwindcss",
"ui"
],
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@tailwindcss/forms": "^0.5.2",
"@types/node": "18.14.6",
"@types/react": "^18.0.21",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.28.0",
"eslint-config-next": "^13.2.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"next": "^13.2.3",
"postcss": "^8.4.14",
"prettier": "^2.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.77.2",
"tailwindcss": "^3.1.7",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
}
}