-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 782 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 782 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
{
"name": "wvfoia-sync",
"version": "0.1",
"license": "GPL-3.0-only",
"private": true,
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"postbuild": "cp .assetsignore dist/.assetsignore",
"preview": "astro build && wrangler dev",
"deploy": "npm run build && wrangler deploy",
"astro": "astro",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm run build",
"cf-typegen": "wrangler types"
},
"dependencies": {
"@astrojs/cloudflare": "^12.6.12",
"@tailwindcss/vite": "^4.1.18",
"astro": "^5.17.1",
"drizzle-orm": "^0.45.1",
"node-html-parser": "^7.0.2",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@types/node": "^25.2.1",
"wrangler": "^4.63.0"
}
}