-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.37 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
67
68
69
70
71
72
73
74
75
76
{
"name": "jackwang032-blog",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,scss,md}\"",
"check": "tsc -b",
"preview": "pnpm run build && vite preview",
"pick": "tsx scripts/pick.ts",
"sync-notes": "tsx scripts/sync-notes.ts",
"prepare": "husky install",
"predeploy": "pnpm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-dialog": "^1.1.5",
"@radix-ui/react-dropdown-menu": "^2.1.5",
"@radix-ui/react-navigation-menu": "^1.2.4",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-toast": "^1.2.5",
"@tailwindcss/typography": "^0.5.16",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"idb": "^8.0.2",
"lucide-react": "^0.474.0",
"motion": "^12.0.6",
"nanoid": "^5.0.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.2",
"react-markdown": "^9.0.1",
"react-markdown-editor-lite": "^1.3.4",
"react-medium-image-zoom": "^5.2.13",
"react-router-dom": "^7.1.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"shiki": "^1.27.2",
"swr": "^2.3.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.1"
},
"devDependencies": {
"@shadcn/ui": "^0.0.4",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.20",
"gh-pages": "^6.3.0",
"globals": "^15.14.0",
"husky": "^8.0.3",
"lint-staged": "^15.4.3",
"node-fetch": "^3.3.1",
"postcss": "^8.5.1",
"prettier": "^3.2.5",
"sass-embedded": "^1.83.4",
"tailwindcss": "^3.4.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vite": "^5.0.10"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
],
"*.{css,scss,less,json,md}": [
"prettier --write"
]
}
}