mirror of
https://github.com/Nezumi-2711/uptime-monitoring.git
synced 2026-09-22 20:02:21 +00:00
69 lines
1.6 KiB
JSON
69 lines
1.6 KiB
JSON
{
|
|
"name": "uptime-monitoring",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"deploy": "bun run build && wrangler deploy",
|
|
"test": "vitest run",
|
|
"types": "wrangler types",
|
|
"db:local": "wrangler d1 migrations apply uptime --local",
|
|
"db:remote": "wrangler d1 migrations apply uptime --remote",
|
|
"admin:create": "bun scripts/create-admin.ts",
|
|
"lint": "oxlint",
|
|
"lint:fix": "oxlint --fix",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"prepare": "husky"
|
|
},
|
|
"devDependencies": {
|
|
"@cloudflare/vite-plugin": "^1.54.1",
|
|
"@cloudflare/vitest-plugin": "^1.1.1",
|
|
"@tailwindcss/vite": "^4.3.3",
|
|
"@types/node": "^26.4.0",
|
|
"@types/react": "^19.2.18",
|
|
"@types/react-dom": "^19.2.5",
|
|
"@vitejs/plugin-react": "^6.1.0",
|
|
"drizzle-kit": "^0.31.10",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^17.4.1",
|
|
"oxlint": "^1.80.0",
|
|
"prettier": "^3.9.6",
|
|
"tailwindcss": "4",
|
|
"typescript": "^5.5.2",
|
|
"vite": "^8.2.2",
|
|
"vitest": "^4.1.11",
|
|
"wrangler": "^4.127.0"
|
|
},
|
|
"dependencies": {
|
|
"@tanstack/react-query": "^5.102.7",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"drizzle-orm": "^0.45.2",
|
|
"hono": "^4.13.5",
|
|
"lucide-react": "^1.34.0",
|
|
"radix-ui": "^1.6.7",
|
|
"react": "19",
|
|
"react-dom": "19",
|
|
"recharts": "^3",
|
|
"shadcn": "^4.19.0",
|
|
"tailwind-merge": "^3.6.0",
|
|
"tw-animate-css": "^1.4.0"
|
|
},
|
|
"trustedDependencies": [
|
|
"workerd",
|
|
"esbuild"
|
|
],
|
|
"lint-staged": {
|
|
"*.{ts,tsx}": [
|
|
"oxlint --fix",
|
|
"prettier --write"
|
|
],
|
|
"*.{js,jsx,json,jsonc,css,md}": [
|
|
"prettier --write"
|
|
]
|
|
}
|
|
}
|