forked from jackytea/tanstack-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.39 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.39 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
{
"type": "module",
"private": true,
"version": "0.1.0",
"sideEffects": false,
"name": "tanstack-starter",
"license": "AGPL-3.0-only",
"author": "Jacky Tea",
"main": "src/client.tsx",
"description": "TanStack Start template.",
"engines": {
"node": ">=22.x",
"deno": ">=2.5",
"pnpm": ">=10",
"bun": ">=1.3",
"npm": ">=11"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackytea/tanstack-starter.git"
},
"scripts": {
"prepare": "husky",
"dev": "vite dev",
"build": "vite build",
"serve": "vite preview",
"migrate": "drizzle-kit migrate",
"format": "biome check --write .",
"validate": "tsc && biome check .",
"migrate:revert": "drizzle-kit drop",
"start": "node .output/server/index.mjs"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@tanstack/react-query": "^5.90.11",
"@tanstack/react-router": "^1.139.12",
"@tanstack/react-router-with-query": "^1.130.17",
"@tanstack/react-start": "^1.139.12",
"better-auth": "^1.4.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.44.7",
"i18next": "^25.7.1",
"lucide-react": "^0.555.0",
"pg": "^8.16.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-i18next": "^16.3.5",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@tailwindcss/vite": "^4.1.17",
"@types/node": "^24.10.1",
"@types/pg": "^8.15.6",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"drizzle-kit": "^0.31.7",
"husky": "^9.1.7",
"nitro": "3.0.1-alpha.1",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"vite": "^7.2.6",
"vite-tsconfig-paths": "^5.1.4"
},
"optionalDependencies": {
"bufferutil": "^4.0.9"
},
"overrides": {
"glob": "^11.0.0",
"rimraf": "^6.0.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"@parcel/watcher",
"bufferutil",
"esbuild",
"leveldown"
],
"ignoredBuiltDependencies": [
"@tailwindcss/oxide"
]
}
}