-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.1 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.1 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
{
"name": "pingflare",
"version": "0.0.1",
"description": "Cloudflare-native uptime monitoring solution with public status pages",
"devDependencies": {
"@cloudflare/workers-types": "^4.20251202.0",
"esbuild": "^0.24.0",
"@eslint/js": "^9.39.1",
"@sveltejs/adapter-cloudflare": "^7.2.4",
"@sveltejs/kit": "^2.48.5",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@tailwindcss/vite": "^4.1.17",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"@vite-pwa/sveltekit": "^1.1.0",
"@vitest/coverage-v8": "^4.0.15",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.13.0",
"globals": "^16.5.0",
"prettier": "^3.7.3",
"prettier-plugin-svelte": "^3.4.0",
"svelte": "^5.43.8",
"svelte-check": "^4.3.4",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0",
"vite": "^7.2.2",
"vitest": "^4.0.15",
"workbox-window": "^7.4.0",
"wrangler": "^4.51.0"
},
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build && node scripts/build-worker.js",
"build:sveltekit": "vite build",
"build:worker": "node scripts/build-worker.js",
"preview": "vite preview",
"deploy": "wrangler d1 migrations apply DB --remote && wrangler deploy",
"db:migrations:apply": "wrangler d1 migrations apply DB --remote",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"type": "module",
"cloudflare": {
"bindings": {
"DB": {
"description": "D1 database for storing monitors, health check results, users, and incidents. Created automatically during deployment."
},
"CRON_SECRET": {
"description": "Random string to authenticate scheduled health checks. Generate with: `openssl rand -hex 32`"
}
}
}
}