-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.54 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.54 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
{
"name": "pullnotes",
"private": true,
"type": "module",
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
},
"imports": {
"#/*": "./src/*"
},
"scripts": {
"dev": "node scripts/dev-start.mjs",
"build": "vite build",
"start": "npm run auth:migrate && node scripts/start-server.mjs",
"preview": "vite preview",
"setup": "node scripts/setup-github-app.mjs",
"auth:migrate": "node scripts/auth-migrate.mjs",
"test": "vitest run",
"format": "biome format",
"lint": "biome lint",
"check": "biome check"
},
"dependencies": {
"@better-auth/cli": "1.4.18",
"@octokit/app": "^16.1.2",
"@radix-ui/react-switch": "^1.2.6",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-devtools": "^0.9.6",
"@tanstack/react-router": "^1.162.2",
"@tanstack/react-router-devtools": "^1.162.2",
"@tanstack/react-router-ssr-query": "^1.162.2",
"@tanstack/react-start": "^1.162.2",
"@tanstack/router-plugin": "^1.162.2",
"@tiptap/core": "^3.20.0",
"@tiptap/extension-image": "^3.20.0",
"@tiptap/extension-link": "^3.20.0",
"@tiptap/extension-placeholder": "^3.20.0",
"@tiptap/extension-table": "^3.20.0",
"@tiptap/extension-table-cell": "^3.20.0",
"@tiptap/extension-table-header": "^3.20.0",
"@tiptap/extension-table-row": "^3.20.0",
"@tiptap/extension-underline": "^3.20.0",
"@tiptap/markdown": "^3.20.0",
"@tiptap/pm": "^3.20.0",
"@tiptap/react": "^3.20.0",
"@tiptap/starter-kit": "^3.20.0",
"@tiptap/suggestion": "^3.20.0",
"better-auth": "1.4.18",
"better-sqlite3": "^12.6.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.1",
"emojibase-data": "^17.0.0",
"lucide-react": "^0.561.0",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.1.18",
"tippy.js": "^6.3.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@clack/prompts": "^1.0.1",
"@tanstack/devtools-vite": "^0.5.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/node": "^22.10.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.0.4",
"jsdom": "^27.0.0",
"shadcn": "^3.8.5",
"tw-animate-css": "^1.3.6",
"typescript": "^5.7.2",
"vite": "^7.1.7",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.5"
}
}