-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.79 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
{
"name": "cloudflareops",
"version": "0.1.0",
"type": "module",
"private": true,
"engines": {
"node": ">=22.12.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild",
"sharp",
"workerd"
]
},
"scripts": {
"dev": "astro dev --port 4321",
"build": "astro build",
"preview": "wrangler dev --port 4321",
"deploy": "astro build && wrangler deploy",
"typecheck": "astro check && tsc --noEmit",
"format": "biome format --write .",
"lint": "biome lint .",
"check": "biome check --write .",
"check:ci": "biome ci .",
"test": "vitest run",
"db:migrate": "wrangler d1 migrations apply cloudflareops-db --local",
"db:migrate:remote": "wrangler d1 migrations apply cloudflareops-db --remote"
},
"dependencies": {
"@astrojs/cloudflare": "^14.2.3",
"@astrojs/react": "^6.0.4",
"@codemirror/lang-javascript": "^6.2.5",
"@fontsource-variable/jetbrains-mono": "^5.1.0",
"@tailwindcss/vite": "^4.0.0",
"@tanstack/react-table": "^8.21.3",
"@uiw/react-codemirror": "^4.25.10",
"astro": "^7.2.4",
"aws4fetch": "^1.0.20",
"cloudflare": "^6.1.0",
"daisyui": "^5.0.0",
"dayjs": "^1.11.21",
"jose": "^5.9.0",
"lucide-react": "^0.525.0",
"marked": "^18.0.6",
"p-limit": "^6.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"recharts": "^3.9.2",
"resend": "^6.17.2",
"tailwindcss": "^4.0.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.0",
"@biomejs/biome": "2.5.2",
"@cloudflare/workers-types": "^5.20260821.1",
"@types/better-sqlite3": "^7.6.11",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"better-sqlite3": "^11.5.0",
"typescript": "^5.6.0",
"vitest": "^4.1.11",
"wrangler": "^4.125.0"
}
}