-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 886 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 886 Bytes
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
{
"name": "workflowbeats",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro build && wrangler dev",
"astro": "astro",
"deploy": "astro build && wrangler deploy",
"cf-typegen": "wrangler types",
"db:generate": "drizzle-kit generate",
"db:migrate": "wrangler d1 migrations apply DB --local",
"db:studio": "drizzle-kit studio --config dev.drizzle.config.ts"
},
"dependencies": {
"@astrojs/cloudflare": "^12.4.0",
"@astrojs/svelte": "^7.0.9",
"astro": "^5.5.6",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.41.0",
"svelte": "^5.25.6",
"typescript": "^5.8.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@libsql/client": "^0.15.2",
"@types/node": "^22.14.0",
"drizzle-kit": "^0.30.6",
"simple-svelte-autocomplete": "^2.5.2",
"wrangler": "^4.59.1"
}
}