-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.44 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
{
"name": "blog-posts",
"private": true,
"version": "0.0.1",
"type": "module",
"homepage": "/blog-posts",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"typecheck": "tsc --noEmit",
"preview": "vite preview",
"shadcn-update": "for file in src/components/ui/*.tsx; do npx shadcn@latest add -y -o $(basename \"$file\" .tsx); done"
},
"dependencies": {
"@base-ui/react": "^1.6.0",
"@fontsource-variable/inter": "^5.2.8",
"@tailwindcss/vite": "^4",
"axios": "^1.18.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1",
"lucide-react": "^1.24.0",
"mobx": "^6.16",
"mobx-react-lite": "^4.1",
"next-themes": "^0.4.6",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-router-dom": "^7.18",
"shadcn": "^4.13.0",
"sonner": "^2.0",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@eslint/js": "^10",
"@types/node": "^26",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6",
"eslint": "^10",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17",
"prettier": "^3.9.5",
"prettier-plugin-tailwindcss": "^0.8.1",
"typescript": "~6",
"typescript-eslint": "^8",
"vite": "^8"
}
}