-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.48 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
65
66
67
68
69
70
71
{
"name": "react-flowfull-client",
"private": true,
"type": "module",
"version": "0.5.0",
"packageManager": "npm@10.9.2",
"overrides": {
"zod": "4.4.3"
},
"scripts": {
"dev": "vite dev --port 3000",
"dev:preview": "vite dev --port 3000 --host 0.0.0.0",
"start": "node .output/server/index.mjs",
"build": "vite build",
"dev:deno": "deno run -A npm:vite dev --port 3000",
"build:deno": "deno run -A npm:vite build --config vite.deno.config.ts",
"build:cf": "vite build --config vite.cloudflare.config.ts",
"serve": "vite preview",
"dev:cf": "npm run build:cf && npx wrangler dev --config .output/server/wrangler.json",
"deploy:cf": "npm run build:cf && npx wrangler deploy --config .output/server/wrangler.json",
"preview:cf": "npm run build:cf && npx wrangler dev --config .output/server/wrangler.json --remote",
"test": "npx vitest run --passWithNoTests",
"check:deno": "deno run -A npm:vite build --config vite.deno.config.ts",
"check:cf": "npm run build:cf"
},
"dependencies": {
"@hookform/resolvers": "^5.2.1",
"@pubflow/core": "0.5.0",
"@pubflow/react": "0.5.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/vite": "^4.0.6",
"@tanstack/react-router": "^1.130.2",
"@tanstack/react-router-ssr-query": "^1.131.7",
"@tanstack/react-start": "^1.131.7",
"@tanstack/router-plugin": "^1.121.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"i18next": "26.3.1",
"i18next-browser-languagedetector": "8.2.1",
"lucide-react": "^0.540.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.62.0",
"react-i18next": "17.0.8",
"swr": "^2.2.5",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.0.6",
"tw-animate-css": "^1.3.6",
"vite-tsconfig-paths": "^5.1.4",
"zod": "4.4.3"
},
"devDependencies": {
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^5.0.4",
"nitro": "3.0.260610-beta",
"typescript": "^5.7.2",
"vite": "7.1.7",
"web-vitals": "^4.2.4"
}
}