-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.51 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.51 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "ghost",
"version": "1.1.1",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "bunx --bun prisma migrate deploy && bunx --bun prisma generate && next build",
"start": "next start",
"analyze": "ANALYZE=true bun run build",
"db:generate": "bunx --bun prisma generate",
"db:studio": "bunx --bun prisma studio",
"migrate": "bunx --bun prisma migrate dev && bunx --bun prisma generate",
"agent:build": "cd agent && bun build --compile --target=bun-linux-x64 ./src/index.ts --outfile ../dist/ghost-agent",
"agent:dev": "cd agent && bun run src/index.ts",
"codegen": "openapi-typescript https://docs.hetzner.cloud/cloud.spec.json -o lib/hetzner/schema.ts",
"workflow:ui": "workflow inspect runs --web",
"check": "ultracite check",
"fix": "ultracite fix",
"types": "tsgo --noEmit",
"test": "bun test --pass-with-no-tests",
"test:coverage": "bun test --coverage --pass-with-no-tests",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset tag",
"prepare": "husky",
"postinstall": "prisma generate",
"bump-deps": "npx npm-check-updates -u -x zod && bun install"
},
"dependencies": {
"@better-auth/passkey": "^1.6.9",
"@noble/ed25519": "^3.1.0",
"@nosecone/next": "1.4.0",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@sentry/nextjs": "^10.52.0",
"@t3-oss/env-core": "^0.13.11",
"@t3-oss/env-nextjs": "^0.13.11",
"@upstash/redis": "^1.38.0",
"@vercel/analytics": "^2.0.1",
"@vercel/blob": "^2.3.3",
"@vercel/sandbox": "^2.1.0",
"anser": "^2.3.5",
"better-auth": "^1.6.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"cobe": "^2.0.1",
"date-fns": "^4.1.0",
"embla-carousel-react": "^8.6.0",
"geist": "^1.7.0",
"human-id": "^4.1.3",
"input-otp": "^1.4.2",
"jose": "^6.2.3",
"lodash.merge": "^4.6.2",
"lucide-react": "^1.14.0",
"motion": "^12.38.0",
"next": "16.2.7",
"next-themes": "^0.4.6",
"openapi-fetch": "^0.17.0",
"pg": "^8.20.0",
"radix-ui": "^1.4.3",
"react": "19.2.7",
"react-day-picker": "^9.14.0",
"react-dom": "19.2.7",
"react-hook-form": "^7.75.0",
"react-resizable-panels": "^4.11.0",
"recharts": "3.8.1",
"schema-dts": "^2.0.0",
"server-only": "^0.0.1",
"shadcn": "^4.7.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"ulid": "^3.0.2",
"use-stick-to-bottom": "^1.1.4",
"vaul": "^1.1.2",
"workflow": "^4.2.4",
"zod": "4.3.6"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@next/bundle-analyzer": "^16.2.6",
"@tailwindcss/postcss": "^4.2.4",
"@tailwindcss/typography": "^0.5.19",
"@types/bun": "^1.3.13",
"@types/diff": "^8.0.0",
"@types/gamedig": "^5.0.3",
"@types/lodash.merge": "^4.6.9",
"@types/node": "25.6.1",
"@types/react": "19.2.16",
"@types/react-dom": "19.2.3",
"@typescript/native-preview": "^7.0.0-dev.20260507.1",
"husky": "^9.1.7",
"openapi-typescript": "^7.13.0",
"oxfmt": "^0.53.0",
"oxlint": "^1.63.0",
"postcss": "^8.5.14",
"prisma": "^7.8.0",
"tailwindcss": "^4.2.4",
"tailwindcss-animate": "^1.0.7",
"typescript": "^6.0.3",
"ultracite": "^7.6.4"
},
"packageManager": "bun@1.3.13",
"patchedDependencies": {
"next-themes@0.4.6": "patches/next-themes@0.4.6.patch"
}
}