-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.65 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.65 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "yopem-read",
"version": "0.0.1",
"private": true,
"license": "AGPL-3.0-or-later",
"type": "module",
"scripts": {
"analyze": "next experimental-analyze",
"build": "next build",
"check": "bun run lint && bun run typecheck && bun run format:check",
"db:check": "drizzle-kit check",
"db:drop": "drizzle-kit drop",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"dev": "bun run --bun next dev --turbopack -p 3001",
"format:check": "oxfmt --check .",
"format:write": "oxfmt --write .",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"preview": "bun run next build && bun run next start",
"start": "next start -p 3001",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@openauthjs/openauth": "^0.4.3",
"@orpc/client": "^1.13.9",
"@orpc/server": "^1.13.9",
"@orpc/tanstack-query": "^1.13.9",
"@t3-oss/env-nextjs": "^0.13.10",
"@tanstack/react-form": "^1.28.5",
"@tanstack/react-query": "^5.91.2",
"@tanstack/zod-form-adapter": "^0.42.1",
"@yopem/try-catch": "^0.0.2",
"babel-plugin-react-compiler": "^1.0.0",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"dayjs": "^1.11.20",
"dotenv-cli": "^11.0.0",
"drizzle-orm": "^0.45.1",
"drizzle-zod": "^0.8.3",
"fast-xml-parser": "^5.5.6",
"ioredis": "^5.10.0",
"js.foresight": "^3.4.0",
"lucide-react": "^1.0.1",
"nanoid": "^5.1.7",
"next": "16.2.1",
"next-themes": "^0.4.6",
"nuqs": "^2.8.9",
"pg": "^8.20.0",
"qrcode.react": "^4.2.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"server-only": "^0.0.1",
"superjson": "^2.2.6",
"tailwind-merge": "^3.5.0",
"transliteration": "^2.6.1",
"tw-animate-css": "^1.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@tanstack/react-query-devtools": "^5.91.3",
"@types/bcryptjs": "^3.0.0",
"@types/bun": "^1.3.11",
"@types/ioredis": "^5.0.0",
"@types/node": "^25.5.0",
"@types/pg": "^8.18.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@yopem/typescript-config": "^0.2.1",
"drizzle-kit": "^0.31.10",
"eslint-plugin-better-tailwindcss": "^4.3.2",
"lefthook": "^2.1.4",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"oxlint-tsgolint": "^0.17.0",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.2",
"typescript": "5.9.3"
},
"overrides": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3"
},
"packageManager": "bun@1.3.2"
}