-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.89 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
{
"name": "tech-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"db:push": "prisma db push",
"db:generate": "prisma generate",
"db:seed": "tsx scripts/seed.ts",
"db:create-user": "tsx scripts/create-user.ts",
"db:studio": "prisma studio",
"post:publish": "tsx --env-file=.env.local scripts/post-cli.ts publish",
"post:list": "tsx --env-file=.env.local scripts/post-cli.ts list",
"post:unpublish": "tsx --env-file=.env.local scripts/post-cli.ts unpublish",
"post:delete": "tsx --env-file=.env.local scripts/post-cli.ts delete",
"post:export": "tsx --env-file=.env.local scripts/post-cli.ts export",
"db:reset": "prisma migrate reset --force",
"vercel-build": "export NODE_OPTIONS='--max-old-space-size=16384' && prisma generate && next build --turbopack"
},
"dependencies": {
"@giscus/react": "^3.1.0",
"@prisma/client": "^6.13.0",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@uiw/react-markdown-preview": "^5.2.1",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.38.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.536.0",
"next": "15.5.9",
"next-themes": "^0.4.6",
"prisma": "^6.13.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"rehype-sanitize": "^6.0.0",
"tailwind-merge": "^3.3.1",
"zod": "^4.2.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20.19.9",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.4.5",
"tailwindcss": "^4",
"tsx": "^4.20.3",
"tw-animate-css": "^1.3.6",
"typescript": "^5"
}
}