-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.52 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.52 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
{
"name": "llm-stack",
"version": "0.1.0",
"private": true,
"description": "A full-stack React starter template, optimized for AI-assisted development.",
"keywords": [
"ai",
"better-auth",
"drizzle-orm",
"llm",
"react",
"react-router",
"starter-template",
"tailwindcss",
"typescript"
],
"license": "MIT",
"author": "Nikolai Lehbrink",
"repository": {
"type": "git",
"url": "https://github.com/nikolailehbrink/llm-stack.git"
},
"type": "module",
"scripts": {
"build": "react-router build",
"clean": "rm -rf node_modules .react-router build",
"commitlint": "commitlint",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:seed": "vpx tsx --env-file=.env app/db/seed.ts",
"db:studio": "drizzle-kit studio",
"dev": "react-router dev",
"fmt": "vp fmt",
"fmt:check": "vp fmt --check",
"knip": "knip",
"lint": "vp lint",
"lint:fix": "vp lint --fix",
"prepare": "vp config",
"preview": "vp preview",
"setup": "vp i && bun scripts/setup.ts && vp dev",
"start": "react-router-serve build/server/index.js",
"test": "vp test",
"typecheck": "react-router typegen && tsc"
},
"dependencies": {
"@base-ui/react": "1.3.0",
"@conform-to/react": "1.18.0",
"@conform-to/zod": "1.18.0",
"@fontsource-variable/inter": "5.2.8",
"@fontsource/instrument-serif": "5.2.8",
"@react-router/node": "7.14.0",
"@react-router/serve": "7.14.0",
"better-auth": "1.5.6",
"better-sqlite3": "12.8.0",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"drizzle-orm": "0.45.2",
"isbot": "5.1.37",
"lucide-react": "1.7.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-router": "7.14.0",
"tailwind-merge": "3.5.0",
"tw-animate-css": "1.4.0",
"zod": "4.3.6"
},
"devDependencies": {
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@react-router/dev": "7.14.0",
"@tailwindcss/vite": "4.2.2",
"@types/better-sqlite3": "7.6.13",
"@types/node": "25.5.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"drizzle-kit": "0.31.10",
"knip": "6.3.0",
"shadcn": "4.1.2",
"tailwindcss": "4.2.2",
"typescript": "5.9.3",
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vite-plugin-devtools-json": "1.0.0",
"vite-plus": "latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
},
"packageManager": "[email protected]"
}