-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.99 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.99 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
{
"name": "public-dashboard",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev --port 3000",
"build": "vite build && BUILD_PHASE=1 bun run scripts/prefill-cache.ts",
"preview": "vite preview",
"start": "bun server.mjs",
"test": "bun test",
"format": "biome check --write --linter-enabled=false",
"lint": "oxlint",
"check": "biome check && oxlint && tsc --noEmit"
},
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/react-devtools": "^0.10.2",
"@tanstack/react-query": "^5.99.2",
"@tanstack/react-query-devtools": "^5.99.2",
"@tanstack/react-router": "^1.168.23",
"@tanstack/react-router-devtools": "^1.166.13",
"@tanstack/react-router-ssr-query": "^1.166.11",
"@tanstack/react-start": "^1.167.42",
"@tanstack/react-table": "^8.21.3",
"@tanstack/router-plugin": "^1.167.22",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"ioredis": "^5.10.1",
"lucide-react": "^1.8.0",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"tw-animate-css": "^1.4.0",
"update": "^0.7.4",
"usehooks-ts": "^3.1.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/devtools-vite": "^0.6.0",
"@tanstack/eslint-plugin-query": "^5.99.2",
"@tanstack/eslint-plugin-router": "^1.161.6",
"@types/bun": "^1.3.12",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint-plugin-perfectionist": "^5.9.0",
"oxlint": "^1.61.0",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vite": "^8.0.8"
},
"trustedDependencies": [
"@tailwindcss/oxide",
"sharp",
"unrs-resolver"
]
}