This repository was archived by the owner on Apr 20, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.17 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.17 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
111
{
"name": "@bunkit/monorepo",
"version": "0.1.0-alpha.1",
"private": true,
"description": "Bake production-ready apps in seconds | Modern CLI for Bun-powered projects",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun run --filter './packages/*' build",
"dev": "bun run --filter '@bunkit/cli' dev",
"test": "bun test",
"lint": "biome check .",
"format": "biome check --write .",
"typecheck": "tsc --noEmit",
"cli": "bun run packages/cli/src/index.ts",
"changeset": "changeset",
"version": "changeset version",
"release": "bun run build && changeset publish",
"update-deps": "bun update --latest && bun install",
"check-deps": "bun outdated",
"knip": "knip",
"knip:prod": "knip --production",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@changesets/cli": "2.29.8",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@types/bun": "latest",
"husky": "^9.1.7",
"knip": "^5.74.0",
"typescript": "5.9.3"
},
"catalog": {
"// CLI Dependencies": "",
"@clack/prompts": "^0.11.0",
"picocolors": "^1.1.1",
"commander": "^14.0.2",
"execa": "^9.6.1",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.2",
"ejs": "^3.1.10",
"zod": "^3.25.76",
"consola": "^3.4.2",
"pathe": "^2.0.3",
"defu": "^6.1.4",
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"ora": "^9.0.0",
"// Frontend Frameworks": "",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"next": "^16.0.10",
"// Backend Frameworks": "",
"hono": "^4.11.1",
"// Database - Drizzle ORM": "",
"drizzle-orm": "^0.45.1",
"drizzle-kit": "^0.31.8",
"// Database - PostgreSQL": "",
"postgres": "^3.4.7",
"// Database - MySQL": "",
"mysql2": "^3.16.0",
"// Database - Prisma ORM": "",
"@prisma/client": "^7.2.0",
"prisma": "^7.2.0",
"// Database - Supabase": "",
"@supabase/supabase-js": "^2.88.0",
"// Authentication": "",
"better-auth": "^1.4.7",
"next-auth": "^4.24.13",
"@auth/drizzle-adapter": "^1.11.1",
"// Code Quality - Ultracite": "",
"ultracite": "^6.4.2",
"// Code Quality - Biome": "",
"@biomejs/biome": "^2.3.10",
"// Styling - Tailwind CSS": "",
"tailwindcss": "^4.1.18",
"autoprefixer": "^10.4.23",
"postcss": "^8.5.6",
"@tailwindcss/postcss": "^4.1.18",
"// UI - shadcn/ui Dependencies (February 2026)": "",
"radix-ui": "^1.4.3",
"@radix-ui/react-slot": "^1.2.4",
"@base-ui/react": "^1.2.0",
"shadcn": "^3.8.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"tailwind-merge": "^3.4.0",
"iconoir-react": "^7.11.0",
"@phosphor-icons/react": "^2.1.10",
"lucide-react": "^0.562.0",
"tw-animate-css": "^1.2.9",
"// Testing - Vitest": "",
"vitest": "^4.0.16",
"@vitest/ui": "^4.0.16",
"// Type Definitions": "",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"// Build Tools": "",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=20.9.0",
"bun": ">=1.3.0"
},
"packageManager": "bun@1.1.43"
}