-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.04 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
{
"name": "cfgateway",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm run typecheck && react-router build",
"cf-typegen": "wrangler types",
"deploy": "pnpm run build && wrangler deploy",
"dev": "react-router dev",
"postinstall": "pnpm run cf-typegen",
"preview": "pnpm run build && vite preview",
"test": "vitest run",
"test:e2e": "playwright test",
"typecheck": "pnpm run cf-typegen && react-router typegen && tsc -b"
},
"dependencies": {
"isbot": "^5.1.43",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-router": "^8.0.1"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.42.0",
"@cloudflare/vitest-pool-workers": "^0.16.17",
"@playwright/test": "^1.61.0",
"@react-router/dev": "^8.0.1",
"@tailwindcss/vite": "^4.3.1",
"@types/node": "^25.9.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"tailwindcss": "^4.3.1",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.9",
"wrangler": "^4.102.0"
}
}