-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.82 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.82 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": "steam-rewind",
"private": true,
"type": "module",
"scripts": {
"dev": "NODE_OPTIONS='--import ./instrument.server.mjs' vite dev --port 3000",
"build": "vite build && cp instrument.server.mjs .output/server",
"serve": "vite preview",
"test": "vitest run",
"format": "biome format",
"lint": "biome lint",
"lint:fix": "biome check --write .",
"check": "biome check",
"start": "node --import ./.output/server/instrument.server.mjs .output/server/index.mjs",
"backfill": "bun ./scripts/index.ts"
},
"dependencies": {
"@fontsource-variable/space-grotesk": "^5.2.10",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@sentry/tanstackstart-react": "^10.29.0",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.87.0",
"@tailwindcss/vite": "^4.1.17",
"@tanstack/match-sorter-utils": "^8.19.4",
"@tanstack/react-devtools": "^0.8.4",
"@tanstack/react-pacer": "^0.17.4",
"@tanstack/react-query": "^5.90.12",
"@tanstack/react-query-devtools": "^5.91.1",
"@tanstack/react-router": "^1.140.0",
"@tanstack/react-router-devtools": "^1.140.0",
"@tanstack/react-router-ssr-query": "^1.140.0",
"@tanstack/react-start": "^1.140.0",
"@tanstack/react-table": "^8.21.3",
"@tanstack/router-plugin": "^1.140.0",
"@vercel/analytics": "^1.6.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"embla-carousel-react": "^8.6.0",
"gsap": "^3.14.1",
"isthereanydeal-nodejs": "^0.1.5",
"lucide-react": "^0.556.0",
"motion": "^12.23.25",
"nitro": "^3.0.1-alpha.1",
"node-steam-openid": "^2.0.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-globe.gl": "^2.37.0",
"recharts": "3.5.1",
"steam-nodejs": "^0.3.7",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.17",
"tw-animate-css": "^1.4.0",
"type-fest": "^5.3.1",
"vite-tsconfig-paths": "^5.1.4",
"zod": "^4.1.13"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@tanstack/devtools-vite": "^0.3.12",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.10.2",
"@types/pg": "^8.15.6",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"babel-plugin-react-compiler": "^1.0.0",
"dotenv": "^17.2.3",
"jsdom": "^27.3.0",
"supabase": "^2.65.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.2.7",
"vitest": "^4.0.15",
"web-vitals": "^5.1.0"
}
}