-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.12 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
{
"name": "deye-monitor",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "PWA realtime solar monitor for Deye Cloud — Vite + React + Cloudflare Workers + D1",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"setup": "node scripts/setup.mjs",
"deploy": "npm run build && wrangler deploy --keep-vars",
"db:create": "wrangler d1 create deye-monitor",
"db:init": "wrangler d1 execute deye-monitor --remote --file=./schema.sql",
"tail": "wrangler tail"
},
"dependencies": {
"@meteocons/svg": "^0.1.0",
"hono": "^4.12.25",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.0.0",
"@cloudflare/workers-types": "^4.20260617.1",
"@tailwindcss/vite": "^4.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.0",
"puppeteer-core": "^25.1.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.6.0",
"vite": "^6.0.0",
"vite-plugin-pwa": "^0.21.0",
"wrangler": "^4.0.0"
}
}