-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.86 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
{
"name": "timezone-converter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format:fix": "prettier --write './**/*.{css,scss,md,mdx,json}'",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"new-component": "hygen component new"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tooltip": "^1.0.7",
"@vercel/analytics": "^1.2.2",
"@vvo/tzdb": "^6.125.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^0.2.1",
"date-fns": "^3.3.1",
"lucide-react": "^0.341.0",
"luxon": "^3.4.4",
"next": "14.1.0",
"next-sitemap": "^4.2.3",
"next-themes": "^0.2.1",
"react": "^18",
"react-day-picker": "^8.10.0",
"react-dom": "^18",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-animated": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/eslint-parser": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@chromatic-com/storybook": "^1.2.1",
"@storybook/addon-essentials": "8.0.0-rc.1",
"@storybook/addon-interactions": "8.0.0-rc.1",
"@storybook/addon-links": "8.0.0-rc.1",
"@storybook/addon-onboarding": "8.0.0-rc.1",
"@storybook/blocks": "8.0.0-rc.1",
"@storybook/nextjs": "8.0.0-rc.1",
"@storybook/react": "8.0.0-rc.1",
"@storybook/test": "8.0.0-rc.1",
"@tailwindcss/typography": "^0.5.10",
"@types/luxon": "^3.4.2",
"@types/node": "^18.19.18",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"autoprefixer": "^10.0.1",
"eslint": "^8.57.0",
"eslint-config-eason": "0.0.12",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-storybook": "^0.8.0",
"hygen": "^6.2.11",
"postcss": "^8",
"prettier": "^2.7.1",
"storybook": "8.0.0-rc.1",
"storybook-dark-mode": "^3.0.3",
"tailwindcss": "^3.3.0",
"typescript": "^4.9.5"
}
}