-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.76 KB
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": "calendar",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"format": "prettier --write \"**/*.{ts,tsx,json,css,md,yml}\"",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest",
"prepare": "husky",
"predeploy": "pnpm build",
"deploy": "gh-pages -d dist"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --ignore-unknown --write",
"eslint --fix --max-warnings=0"
],
"*.{json,css,md,yml}": [
"prettier --ignore-unknown --write"
]
},
"dependencies": {
"@next-font/plugin-vite": "^1.4.1",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-slot": "^1.2.4",
"@tailwindcss/vite": "^4.1.18",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.19",
"dayjs-plugin-lunar": "^1.4.1",
"lucide-react": "^0.561.0",
"next-font": "~1.2.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-router": "^7.10.1",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"cheerio": "^1.2.0",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"gh-pages": "^6.3.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"rollup-plugin-visualizer": "^6.0.5",
"tw-animate-css": "^1.4.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4",
"vitest": "^4.0.16"
}
}