-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
95 lines (95 loc) · 2.88 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
{
"name": "devterms",
"author": "aelew",
"license": "MIT",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"db": "drizzle-kit",
"db:studio": "drizzle-kit studio",
"db:migrate": "drizzle-kit migrate",
"db:seed": "tsx drizzle/seed",
"db:drop": "drizzle-kit drop",
"db:push": "drizzle-kit push",
"db:generate": "drizzle-kit generate"
},
"dependencies": {
"@atproto/api": "^0.13.21",
"@hono/zod-openapi": "^0.17.1",
"@hono/zod-validator": "^0.4.2",
"@hookform/resolvers": "^3.9.1",
"@icons-pack/react-simple-icons": "^10.2.0",
"@libsql/client": "^0.14.0",
"@meilisearch/instant-meilisearch": "^0.18.1",
"@number-flow/react": "^0.3.5",
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-collapsible": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-popover": "^1.1.4",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-visually-hidden": "^1.1.1",
"@scalar/hono-api-reference": "^0.5.165",
"@sinclair/typebox": "^0.33.22",
"@t3-oss/env-nextjs": "^0.11.1",
"@tanstack/react-table": "^8.20.6",
"@upstash/ratelimit": "^2.0.5",
"@upstash/redis": "^1.34.3",
"arctic": "^2.3.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.4",
"drizzle-orm": "^0.34.1",
"framer-motion": "^11.15.0",
"geist": "^1.3.1",
"hono": "^4.6.14",
"lucide-react": "^0.468.0",
"meilisearch": "^0.44.1",
"mini-svg-data-uri": "^1.4.4",
"next": "^15.1.1",
"next-plausible": "^3.12.4",
"next-safe-action": "^6.2.0",
"next-themes": "^0.4.4",
"nextjs-toploader": "^3.7.15",
"p-debounce": "^4.0.0",
"qrcode.react": "^4.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.1",
"react-share": "^5.1.1",
"sonner": "^1.7.1",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"ts-pattern": "^5.6.0",
"twitter-api-v2": "^1.18.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@types/node": "^20.17.10",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"ajv": "^8.17.1",
"autoprefixer": "^10.4.20",
"dotenv": "^16.4.7",
"drizzle-kit": "^0.25.0",
"eslint": "^8.57.1",
"eslint-config-next": "^15.1.1",
"instantsearch.js": "^4.75.6",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}