-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.58 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.58 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
{
"name": "dashed-astro",
"type": "module",
"version": "3.8.0",
"scripts": {
"db:push": "drizzle-kit push:sqlite",
"db:studio": "drizzle-kit studio",
"db:generate": "bunx drizzle-kit generate --dialect sqlite --schema ./src/lib/db/schema.ts",
"dev": "bun --bun astro dev",
"build": "bun --bun astro build",
"compile": "bun build ./dist/server/entry.mjs --compile --bytecode --outfile dashed",
"preview": "bun ./dist/server/entry.mjs",
"astro": "astro",
"lint": "biome check && bun run --bun astro check",
"check": "biome check --write && bun run --bun astro check"
},
"dependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/react": "^4.4.2",
"@base-ui/react": "^1.1.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@hookform/resolvers": "^5.2.2",
"@lucide/astro": "^0.577.0",
"@nurodev/astro-bun": "^2.1.2",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-query": "^5.90.21",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"astro": "^5.17.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"drizzle-orm": "^0.45.1",
"lucide-react": "^0.577.0",
"next-themes": "^0.4.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.71.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@total-typescript/ts-reset": "^0.6.1",
"@types/bun": "^1.3.9",
"drizzle-kit": "^0.31.9",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1"
}
}