-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.69 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.69 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
{
"name": "cforum",
"version": "0.0.0",
"private": true,
"author": "adysec",
"scripts": {
"build:frontend": "vite build --config frontend/vite.config.ts",
"dev:frontend": "vite --config frontend/vite.config.ts",
"dev": "npm run build:frontend && wrangler dev --local",
"dev:pages": "npm run build:frontend && wrangler pages dev public -- npm run dev:frontend",
"deploy": "npm run build:frontend && wrangler deploy",
"deploy:pages": "npm run build:frontend && wrangler pages deploy public",
"deploy:hybrid": "npm run build:frontend && npm run deploy:worker && npm run deploy:pages",
"deploy:worker": "wrangler deploy",
"start": "npm run build:frontend && wrangler dev --local",
"test": "vitest run",
"cf-typegen": "wrangler types"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.12.4",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.2",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"typescript": "^5.5.2",
"vite": "^7.1.5",
"vitest": "~3.2.0",
"wrangler": "^4.60.0"
},
"dependencies": {
"@fancyapps/ui": "^6.1.9",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.3",
"aws4fetch": "^1.0.20",
"browser-image-compression": "^2.0.2",
"class-variance-authority": "^0.7.1",
"clean-whitespace": "^0.1.2",
"clsx": "^2.1.1",
"dompurify": "^3.2.7",
"jose": "^6.1.3",
"lucide-react": "^0.541.0",
"marked": "^16.3.0",
"otpauth": "^9.4.1",
"qrcode": "^1.5.4",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7"
}
}