forked from onesine/react-tailwindcss-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.67 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-tailwindcss-datepicker",
"version": "1.6.6",
"description": "A modern React Datepicker using Tailwind CSS 3",
"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",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "eslint --ignore-path .gitignore --fix .",
"pret": "prettier -c .",
"pret:fix": "prettier --ignore-path .gitignore --config ./.prettierrc --write './**/*.{js,jsx,ts,tsx,css,md,json}'",
"code-style": "npm run pret && npm run lint",
"code-style:fix": "npm run pret:fix && npm run pret:fix",
"build": "npm run code-style && npm run clean && rollup -c",
"pub": "npm run build && npm publish",
"dev": "next dev -p 8888",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/onesine/react-tailwindcss-datepicker"
},
"keywords": [
"react-tailwindcss-datepicker",
"react-datepicker",
"tailwind-datepicker",
"datepicker",
"date-picker",
"daterangepicker",
"react-daterangepicker",
"date-range",
"date-range-picker",
"tailwind-daterange-picker"
],
"peerDependencies": {
"dayjs": "^1.11.6",
"react": "^17.0.2 || ^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.3",
"@types/node": "18.14.5",
"@types/react": "^18.0.21",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"autoprefixer": "^10.4.13",
"dayjs": "^1.11.7",
"eslint": "^8.29.0",
"eslint-config-next": "^13.1.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.3",
"next": "^13.1.1",
"postcss": "^8.4.19",
"prettier": "^2.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.77.2",
"tailwindcss": "^3.2.4",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run lint"
],
"*.{ts,tsx,css,scss,md}": [
"npm run pret:fix"
]
}
}