-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.07 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.07 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
{
"name": "joy-log",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"eslint:check": "eslint '**/*.{cjs,mjs,js,ts,jsx,tsx}'",
"eslint": "eslint --fix '**/*.{cjs,mjs,js,ts,jsx,tsx}'",
"format:check": "prettier --check '**/*.{cjs,mjs,js,ts,jsx,tsx,json,yaml,md,css}'",
"format": "prettier --write '**/*.{cjs,mjs,js,ts,jsx,tsx,json,yaml,md,css}'",
"type-check": "tsc --noEmit --incremental",
"prepare": "lefthook install",
"db:push": "drizzle-kit push"
},
"dependencies": {
"@giscus/react": "^3.1.0",
"@vercel/blob": "^2.3.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.1",
"immer": "^11.1.4",
"lucide-react": "^0.563.0",
"next": "16.1.6",
"next-mdx-remote": "^6.0.0",
"next-themes": "^0.4.6",
"pg": "^8.18.0",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"rehype-pretty-code": "^0.14.1",
"shiki": "^3.23.0",
"tailwind-merge": "^3.4.0",
"vercel": "^50.23.2",
"yet-another-react-lightbox": "^3.29.1",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@eslint/js": "^10.0.1",
"@evilmartians/lefthook": "^2.1.0",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.19",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/hast": "^3.0.4",
"@types/node": "^20",
"@types/pg": "^8.16.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"drizzle-kit": "^0.31.9",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"gray-matter": "^4.0.3",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"shadcn": "^3.8.4",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"typescript-eslint": "^8.55.0"
}
}