-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
66 lines (66 loc) · 1.98 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
{
"name": "shadcn-date-range-picker",
"version": "1.1.1",
"description": "DateRangePicker is a reusable component for shadcn using Radix UI and Tailwind CSS. Includes preset date ranges, text entry, calendar selection and date comparison.",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{js,jsx,ts,tsx}' --fix"
},
"keywords": [
"shadcn",
"tailwind",
"radix",
"calendar",
"datepicker"
],
"author": {
"name": "John Polacek",
"url": "https://johnpolacek.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/johnpolacek/your-package-name.git"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.3",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.2",
"@types/react": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"eslint": "^8.45.0",
"eslint-config-standard-with-typescript": "^36.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"tailwindcss": "^3.3.3",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"react": "^18.2.0",
"react-day-picker": "^8.8.0",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.6",
"timezone-mock": "^1.3.6"
}
}