-
Notifications
You must be signed in to change notification settings - Fork 151
/
package.json
69 lines (68 loc) · 1.97 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
{
"name": "next-template",
"version": "0.0.2",
"private": true,
"packageManager": "pnpm@9.7.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"preview": "next build && next start",
"typecheck": "tsc --noEmit",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"postinstall": "prisma generate",
"studio": "prisma studio",
"export": "tsx prisma/export.ts"
},
"dependencies": {
"@atproto/api": "^0.12.29",
"@prisma/client": "5.18.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@types/psl": "^1.1.3",
"@vercel/kv": "^2.0.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"lucide-react": "0.427.0",
"next": "^14.2.5",
"next-plausible": "^3.12.4",
"next-themes": "^0.3.0",
"prettier-plugin-tailwindcss": "^0.6.6",
"psl": "^1.9.0",
"react": "^18.3.1",
"react-day-picker": "^9.0.8",
"react-dom": "^18.3.1",
"sharp": "^0.33.4",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@types/node": "^22.2.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/parser": "^8.0.1",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-tailwindcss": "^3.17.4",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"prisma": "^5.18.0",
"tailwindcss": "^3.4.9",
"tsx": "^4.17.0",
"typescript": "^5.5.4"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}