-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
141 lines (141 loc) · 4 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
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "reactjs-datetime-range-picker",
"description": "ReactJS datetime range picker with daily, weekly, monthly, quarterly & yearly levels",
"private": false,
"version": "1.1.0",
"homepage": "https://bhavinpatel04.github.io/reactjs-datetime-range-picker",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "yarn clean && tsc && vite build",
"build-storybook": "storybook build",
"clean": "rm -rf dist storybook-static",
"eslint": "eslint",
"format": "prettier --write src//**/*.{ts,tsx,css} --config ./.prettierrc",
"generate-css": "lessc src/components/reactjs-datetime-range-picker/DateTimeRangePicker.less src/components/reactjs-datetime-range-picker/DateTimeRangePicker.css",
"lint": "eslint src/**/*.{js,jsx,ts,tsx}",
"lint:fix": "eslint --fix src/**/*.{jsx,ts,tsx}",
"preview": "vite preview",
"prepublishOnly": "yarn build",
"storybook": "storybook dev -p 6006",
"test": "test",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/BhavinPatel04/reactjs-datetime-range-picker.git"
},
"keywords": [
"react",
"reactjs",
"react-datetime-range-picker",
"reactjs-datetime-range-picker",
"datetime-range-picker",
"datetime-range",
"datetime",
"date-time-range-picker",
"date-time-range",
"date-time",
"date-range-picker",
"date-range",
"date",
"time-range-picker",
"time-range",
"time"
],
"author": "Bhavin Patel",
"license": "MIT",
"bugs": {
"url": "https://github.com/BhavinPatel04/reactjs-datetime-range-picker/issues"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
},
"./dist/style.css": "./dist/style.css"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"yarn eslint",
"yarn format"
]
},
"devDependencies": {
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-interactions": "^8.0.0",
"@storybook/addon-links": "^8.0.0",
"@storybook/blocks": "^8.0.0",
"@storybook/react": "^8.0.0",
"@storybook/react-vite": "^8.0.0",
"@storybook/test": "^8.0.0",
"@types/node": "^20.11.24",
"@types/react": "^18.2.61",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.18",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"gh-pages": "^6.1.1",
"husky": "^9.0.11",
"less": "^4.2.0",
"lint-staged": "^15.2.2",
"moment": "^2.30.1",
"postcss": "^8.4.35",
"postcss-import": "^16.0.1",
"postcss-nesting": "^12.0.4",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "18.2.0",
"reactjs-datetime-range-picker": "^0.0.6",
"storybook": "^8.0.0",
"tailwind-variants": "^0.2.0",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "*",
"vite": "^5.1.4",
"vite-plugin-dts": "^3.7.3",
"vite-plugin-linter": "^2.1.1",
"vite-tsconfig-paths": "^4.3.1"
},
"peerDependencies": {
"react": "^18.2.0"
},
"dependencies": {
"@nextui-org/button": "^2.0.27",
"@nextui-org/input": "^2.1.17",
"@nextui-org/select": "^2.1.21",
"@nextui-org/system": "^2.0.15",
"@nextui-org/theme": "^2.1.18",
"framer-motion": "^11.0.8",
"global": "^4.4.0"
},
"resolutions": {
"jackspeak": "2.1.1",
"string-width": "4.2.3",
"strip-ansi": "6.0.1",
"wrap-ansi": "7.0.0"
},
"sideEffects": [
"**/*.css"
]
}