-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.21 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.21 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
{
"name": "cs-cloudflare-worker-bouncer-installer",
"description": "A Cloudflare Worker that serves as a bouncer installer for the CS platform.",
"cloudflare": {
"label": "CS Cloudflare Worker Bouncer Installer",
"products": [
"Workers"
],
"categories": [
"starter"
],
"docs_url": "https://github.com/crowdsecurity/cs-cloudflare-worker-bouncer-install/blob/main/README.md",
"publish": true
},
"dependencies": {
"cloudflare": "^5.2.0",
"hono": "4.11.1",
"isbot": "5.1.32",
"react": "19.2.1",
"react-dom": "19.2.1",
"react-router": "7.9.6"
},
"devDependencies": {
"@cloudflare/vite-plugin": "1.15.3",
"@react-router/dev": "7.9.6",
"@tailwindcss/vite": "4.1.17",
"@types/node": "^24.10.1",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"tailwindcss": "4.1.17",
"typescript": "5.9.3",
"vite": "^6.0.0",
"vite-tsconfig-paths": "5.1.4",
"wrangler": "^4.67.0"
},
"private": true,
"type": "module",
"scripts": {
"build": "react-router build",
"cf-typegen": "wrangler types",
"deploy": "npm run build && wrangler deploy",
"dev": "react-router dev",
"preview": "npm run build && vite preview",
"typecheck": "npm run cf-typegen && react-router typegen && tsc -b"
}
}