-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.36 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
{
"name": "codeville-waitlist-template",
"type": "module",
"version": "0.0.1",
"scripts": {
"build:client": "bun run --bun astro build",
"preview": "astro preview",
"astro": "astro",
"format": "bunx prettier . --write",
"format:check": "bunx prettier . --check",
"lint": "eslint 'src/**/*.{js,ts,tsx,astro}'",
"client": "bun run --bun astro dev",
"worker": "wrangler dev",
"dev": "concurrently \"bun run client\" \"bun run worker\"",
"dryrun:staging": "bun run build:client && wrangler deploy --dry-run --env staging",
"dryrun:prod": "bun run build:client && wrangler deploy --dry-run --env production",
"deploy:staging": "bun run build:client && wrangler deploy --env staging",
"deploy:prod": "bun run build:client && wrangler deploy --env production",
"db:generate": "drizzle-kit generate",
"db:migrate:local": "wrangler d1 migrations apply codeville-waitlist-local-db --local",
"db:migrate:staging": "wrangler d1 migrations apply codeville-waitlist-staging-db --remote --env staging",
"test:create-db": "bun run ./scripts/create-test-db.ts",
"test:destroy-db": "bun run ./scripts/destroy-test-db.ts",
"test": "bun run test:create-db && bun test && bun run test:destroy-db"
},
"dependencies": {
"@astrojs/react": "^4.4.2",
"@fontsource/bricolage-grotesque": "^5.2.10",
"@fontsource/inter": "^5.2.8",
"@fontsource/space-grotesk": "^5.2.10",
"@radix-ui/react-slot": "^1.2.4",
"@tailwindcss/vite": "^4.1.18",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"astro": "^5.16.5",
"bun": "^1.3.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.1",
"eslint": "^9.39.2",
"eslint-plugin-astro": "^1.5.0",
"hono": "^4.11.1",
"jose": "^6.1.3",
"lucide-react": "^0.561.0",
"motion": "^12.23.26",
"prettier": "^3.7.4",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"rough-notation": "^0.5.1",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"wrangler": "^4.54.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20251223.0",
"@types/bun": "^1.3.5",
"@typescript-eslint/parser": "^8.50.0",
"drizzle-kit": "^0.31.8",
"drizzle-seed": "^0.3.1",
"tw-animate-css": "^1.4.0"
}
}