-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.11 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.11 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
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "dev_stack",
"private": true,
"type": "module",
"imports": {
"#/*": "./src/*"
},
"scripts": {
"dev": "vite dev --port 3000",
"build": "vite build",
"preview": "bun run build",
"test": "vitest run",
"lint": "eslint",
"format": "prettier --check .",
"check": "prettier --write . && eslint --fix",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"deploy": "bun run build && wrangler deploy",
"cf-typegen": "wrangler types"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@fontsource-variable/bricolage-grotesque": "^5.2.10",
"@fontsource-variable/dm-sans": "^5.2.8",
"@fontsource-variable/figtree": "^5.2.10",
"@fontsource-variable/fira-code": "^5.2.7",
"@fontsource-variable/geist": "^5.2.8",
"@fontsource-variable/geist-mono": "^5.2.7",
"@fontsource-variable/ibm-plex-sans": "^5.2.8",
"@fontsource-variable/inter-tight": "^5.2.7",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@fontsource-variable/open-sans": "^5.2.7",
"@fontsource-variable/playfair-display": "^5.2.8",
"@fontsource-variable/source-serif-4": "^5.2.9",
"@fontsource-variable/space-grotesk": "^5.2.10",
"@fontsource/barlow": "^5.2.8",
"@fontsource/barlow-condensed": "^5.2.8",
"@fontsource/ibm-plex-mono": "^5.2.7",
"@fontsource/instrument-serif": "^5.2.8",
"@neondatabase/serverless": "^1.0.2",
"@phosphor-icons/react": "^2.1.10",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-devtools": "latest",
"@tanstack/react-form-devtools": "^0.2.19",
"@tanstack/react-form-start": "^1.28.5",
"@tanstack/react-query": "^5.91.0",
"@tanstack/react-query-devtools": "^5.91.3",
"@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",
"better-auth": "^1.5.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.3.1",
"drizzle-orm": "^0.45.1",
"lenis": "^1.3.19",
"motion": "^12.38.0",
"next-themes": "^0.4.6",
"nitro": "^3.0.260311-beta",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"shadcn": "^4.1.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"wrangler": "^4.75.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"@tanstack/devtools-vite": "latest",
"@tanstack/eslint-config": "latest",
"@tanstack/eslint-plugin-query": "^5.91.5",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.10.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.1.4",
"drizzle-kit": "^0.31.10",
"jsdom": "^28.1.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.7.2",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lightningcss"
]
}
}