-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.98 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
{
"name": "llink.space",
"private": true,
"type": "module",
"imports": {
"#/*": "./src/*"
},
"overrides": {
"@babel/core": "^7.29.7",
"defu": "^6.1.7",
"esbuild": "^0.28.1",
"js-yaml": "^4.3.0",
"launch-editor": "^2.14.1",
"picomatch": "^4.0.5",
"shell-quote": "^1.10.0",
"ws": "^8.21.0"
},
"scripts": {
"dev": "vite dev --port 3000",
"build": "vite build",
"preview": "vite preview",
"test": "bun --bun run test:unit",
"test:unit": "bash ./scripts/run-vitest.sh run --pool=forks --maxWorkers=1",
"test:unit:watch": "bash ./scripts/run-vitest.sh --pool=forks --maxWorkers=1",
"test:e2e": "bash ./scripts/run-playwright.sh",
"format": "biome format",
"lint": "biome lint",
"check": "biome check",
"start": "node .output/server/index.mjs",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:seed": "tsx scripts/seed.ts",
"db:push": "drizzle-kit push",
"db:pull": "drizzle-kit pull",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1085.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^5.4.0",
"@posthog/react": "^1.10.3",
"@tailwindcss/vite": "^4.3.2",
"@tanstack/react-devtools": "^0.10.8",
"@tanstack/react-query": "^5.101.2",
"@tanstack/react-query-devtools": "^5.101.2",
"@tanstack/react-router": "^1.170.17",
"@tanstack/react-router-devtools": "^1.167.0",
"@tanstack/react-router-ssr-query": "^1.167.1",
"@tanstack/react-start": "^1.168.27",
"@tanstack/router-plugin": "^1.168.19",
"@trpc/client": "^11.18.0",
"@trpc/server": "^11.18.0",
"@trpc/tanstack-react-query": "^11.18.0",
"@vercel/og": "^0.11.1",
"better-auth": "^1.6.23",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.4.0",
"drizzle-orm": "^0.45.2",
"lucide-react": "^1.24.0",
"next-themes": "^0.4.6",
"nitro": "npm:nitro-nightly@^3.0.1-20260712-095235-05bf1c38",
"pg": "^8.22.0",
"posthog-js": "^1.399.2",
"radix-ui": "^1.6.2",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-hook-form": "^7.81.0",
"recharts": "^3.9.2",
"sonner": "^2.0.7",
"superjson": "^2.2.6",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.2",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.5.3",
"@playwright/test": "^1.61.1",
"@tanstack/devtools-vite": "^0.8.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^26.1.1",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"dotenv": "^17.4.2",
"drizzle-kit": "^0.31.10",
"jsdom": "^29.1.1",
"tsx": "^4.23.0",
"typescript": "^7.0.2",
"vite": "^8.1.4",
"vitest": "^4.1.10"
}
}