-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 2.06 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
{
"name": "vite-react-tailwind-template",
"type": "module",
"version": "0.0.0",
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://"
},
"scripts": {
"build": "tsc && vite build",
"dev": "vite",
"format": "prettier --write \"src/**/*.ts\" ",
"lint": "eslint --fix",
"prepare": "simple-git-hooks",
"serve": "vite preview"
},
"dependencies": {
"@headlessui/react": "2.1.8",
"@radix-ui/react-slot": "1.1.0",
"@remixicon/react": "4.2.0",
"@tanstack/react-query": "5.56.2",
"clsx": "2.1.1",
"framer-motion": "11.5.6",
"immer": "10.1.1",
"jotai": "2.10.0",
"lodash-es": "4.17.21",
"ofetch": "1.4.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.26.2",
"sonner": "1.5.0",
"tailwind-merge": "2.5.2",
"usehooks-ts": "3.1.0"
},
"devDependencies": {
"@egoist/tailwindcss-icons": "1.8.1",
"@iconify-json/mingcute": "1.2.0",
"@innei/prettier": "^0.15.0",
"@tailwindcss/container-queries": "0.1.1",
"@tailwindcss/typography": "0.5.15",
"@types/lodash-es": "4.17.12",
"@types/node": "22.5.5",
"@types/react": "18.3.8",
"@types/react-dom": "18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "10.4.20",
"click-to-react-component": "1.1.0",
"daisyui": "4.12.10",
"eslint": "9.11.0",
"eslint-config-hyoban": "3.1.6",
"lint-staged": "15.2.10",
"postcss": "8.4.47",
"postcss-import": "16.1.0",
"postcss-js": "4.0.1",
"prettier": "3.3.3",
"simple-git-hooks": "2.11.1",
"tailwind-scrollbar": "3.1.0",
"tailwind-variants": "0.2.1",
"tailwindcss": "3.4.12",
"tailwindcss-animated": "1.1.2",
"typescript": "5.6.2",
"vite": "5.4.7",
"vite-plugin-checker": "0.8.0",
"vite-tsconfig-paths": "5.0.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --ignore-path ./.gitignore --write "
],
"*.{js,ts,cjs,mjs,jsx,tsx,json}": [
"eslint --fix"
]
}
}