-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 1001 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 1001 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
{
"name": "flarestack",
"version": "1.0.0",
"private": true,
"description": "SaaS-ready, edge-native IP reputation and automated blocking system for Cloudflare.",
"scripts": {
"dev": "pnpm -r run dev",
"//stop": "Use 'pnpm stop' when closing the terminal tab (instead of Ctrl+C) leaves orphan dev servers holding ports 5173, 8787, or 9229. Ctrl+C in the same terminal sends SIGINT to the whole process group and kills everything cleanly — but closing the tab only kills pnpm, leaving grandchild node/wrangler processes running as orphans.",
"stop": "fuser -k 9229/tcp 5173/tcp 8787/tcp || true",
"setup": "bash scripts/setup-local.sh",
"nuke": "bash scripts/nuke.sh",
"deploy": "node scripts/deploy-prod.js",
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"typecheck": "pnpm -r run typecheck"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.30.1",
"devDependencies": {
"wrangler": "^4.67.0"
}
}