-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.57 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "khmercoder-blog",
"version": "0.1.0",
"private": false,
"scripts": {
"dev": "next dev",
"build": "npm run db:migrate && next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"typecheck": "tsc --noEmit",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"staged": "pnpm run typecheck && pnpm run format:check && pnpm run lint && echo \"\n✅ All checks passed!\n\"",
"quality-check": "cross-env SKIP_ENV=true pnpm run staged",
"db:generate": "drizzle-kit generate:sqlite",
"db:migrate": "tsx src/lib/db/migrate.ts",
"db:drop": "drizzle-kit drop",
"db:pull": "drizzle-kit introspect:sqlite",
"db:push": "drizzle-kit push:sqlite",
"db:studio": "drizzle-kit studio",
"db:check": "drizzle-kit check:sqlite"
},
"simple-git-hooks": {
"pre-push": "pnpm run quality-check"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.514.0",
"@editorjs/checklist": "^1.6.0",
"@editorjs/code": "^2.9.0",
"@editorjs/delimiter": "^1.4.0",
"@editorjs/editorjs": "^2.29.0",
"@editorjs/embed": "^2.7.0",
"@editorjs/header": "^2.8.1",
"@editorjs/image": "^2.9.0",
"@editorjs/inline-code": "^1.5.0",
"@editorjs/link": "^2.6.2",
"@editorjs/list": "^1.9.0",
"@editorjs/nested-list": "^1.4.2",
"@editorjs/paragraph": "^2.11.3",
"@editorjs/table": "^2.3.0",
"@editorjs/underline": "^1.1.0",
"@justmiracle/result": "^1.2.0",
"@libsql/client": "^0.4.3",
"@lucia-auth/adapter-sqlite": "2.0.1",
"@lucia-auth/oauth": "^3.5.3",
"@mantine/hooks": "^7.5.2",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@sotaproject/strikethrough": "^1.0.1",
"@t3-oss/env-nextjs": "^0.9.2",
"@tabler/icons-react": "^2.47.0",
"@types/react-lottie": "^1.2.10",
"@uiw/react-textarea-code-editor": "^3.0.2",
"axios": "^1.6.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^0.2.1",
"drizzle-orm": "^0.29.3",
"drizzle-zod": "^0.5.1",
"editorjs-drag-drop": "^1.1.13",
"editorjs-undo": "^2.0.26",
"html-to-text": "^9.0.5",
"lottie-react": "^2.4.0",
"lucia": "2.7.7",
"lucide-react": "^0.323.0",
"nanoid": "^5.0.5",
"next": "14.1.0",
"next-themes": "^0.2.1",
"react": "^18",
"react-dom": "^18",
"slugify": "^1.6.6",
"sonner": "^1.4.0",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.4"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@tailwindcss/typography": "^0.5.10",
"@types/editorjs__header": "^2.6.3",
"@types/html-to-text": "^9.0.4",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"cross-env": "^7.0.3",
"dotenv": "^16.4.1",
"drizzle-kit": "^0.20.14",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-tailwindcss": "^3.14.2",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"shiki": "^1.1.3",
"simple-git-hooks": "^2.9.0",
"tailwindcss": "^3.3.0",
"tsx": "^4.7.0",
"typescript": "^5"
}
}