-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.67 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "sui3",
"private": true,
"type": "module",
"imports": {
"#/*": "./src/*"
},
"scripts": {
"dev": "vite dev --port 8333",
"generate-routes": "tsr generate",
"build": "vite build",
"build:production": "SUI3_WRANGLER_CONFIG=wrangler.production.jsonc vite build",
"preview": "vite preview",
"deploy": "pnpm run build:production && wrangler deploy",
"cf-typegen": "wrangler types",
"db:migrate:local": "wrangler d1 migrations apply sui3 --config wrangler.development.jsonc --local",
"db:migrate:remote": "wrangler d1 migrations apply sui3 --config wrangler.production.jsonc --remote",
"test": "vitest run"
},
"dependencies": {
"@base-ui/react": "^1.6.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fontsource-variable/geist": "^5.2.9",
"@fontsource-variable/geist-mono": "^5.3.0",
"@fontsource-variable/inter": "^5.2.8",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@simplewebauthn/browser": "^13.3.0",
"@simplewebauthn/server": "^13.3.2",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-devtools": "latest",
"@tanstack/react-form": "^1.33.2",
"@tanstack/react-query": "5.101.2",
"@tanstack/react-router": "latest",
"@tanstack/react-router-devtools": "latest",
"@tanstack/react-router-ssr-query": "latest",
"@tanstack/react-start": "latest",
"@tanstack/router-plugin": "^1.132.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"feather-icons": "^4.29.2",
"fuse.js": "^7.5.0",
"lucide-react": "^1.24.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-feather": "^2.0.10",
"shadcn": "^4.13.0",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.45.0",
"@cloudflare/workers-types": "^5.20260715.1",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/devtools-vite": "latest",
"@tanstack/router-cli": "^1.132.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/feather-icons": "^4.29.4",
"@types/node": "^22.10.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^6.0.1",
"jsdom": "^28.1.0",
"jsonc-parser": "^3.3.1",
"typescript": "^6.0.2",
"vite": "^8.0.0",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^4.1.5",
"workbox-core": "^7.4.1",
"workbox-precaching": "^7.4.1",
"wrangler": "^4.111.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lightningcss",
"workerd",
"sharp"
]
}
}