-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.94 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.94 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
99
100
101
102
103
104
105
{
"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.",
"packageManager": "pnpm@10.28.0",
"engines": {
"node": ">=24.14.1",
"deno": ">=2.7",
"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",
"fix": "biome check --write .",
"migrate": "drizzle-kit migrate",
"format": "biome check --write .",
"validate": "tsc && biome check .",
"migrate:revert": "drizzle-kit drop",
"start": "node .output/server/index.mjs",
"knip": "knip --fix --allow-remove-files"
},
"dependencies": {
"@base-ui/react": "^1.4.1",
"@tanstack/react-query": "^5.100.9",
"@tanstack/react-router": "^1.169.2",
"@tanstack/react-router-with-query": "^1.130.17",
"@tanstack/react-start": "^1.167.65",
"better-auth": "^1.6.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"lucide-react": "^1.14.0",
"pg": "^8.20.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"resend": "^6.12.3",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@biomejs/biome": "2.4.14",
"@commitlint/cli": "^21.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@inlang/paraglide-js": "^2.18.0",
"@tailwindcss/vite": "^4.3.0",
"@types/node": "^25.6.2",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"drizzle-kit": "^0.31.10",
"husky": "^9.1.7",
"knip": "^6.12.1",
"nitro": "3.0.260429-beta",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"vite": "^8.0.11"
},
"optionalDependencies": {
"bufferutil": "^4.1.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"@parcel/watcher",
"bufferutil",
"esbuild",
"leveldown"
],
"ignoredBuiltDependencies": [
"@tailwindcss/oxide"
],
"overrides": {
"esbuild@<=0.24.2": ">=0.25.0",
"js-yaml@>=4.0.0 <4.1.1": ">=4.1.1",
"ajv@>=7.0.0-alpha.0 <8.18.0": ">=8.18.0",
"undici@>=7.0.0 <7.24.0": ">=7.24.0",
"undici@>=7.17.0 <7.24.0": ">=7.24.0",
"h3@>=2.0.0-beta.0 <=2.0.1-rc.16": ">=2.0.1-rc.17",
"h3@>=2.0.0-beta.4 <2.0.1-rc.18": ">=2.0.1-rc.18",
"h3@>=2.0.1-alpha.0 <=2.0.1-rc.16": ">=2.0.1-rc.17",
"picomatch@<2.3.2": ">=2.3.2",
"picomatch@>=4.0.0 <4.0.4": ">=4.0.4",
"postcss@<8.5.10": ">=8.5.10",
"uuid@>=13.0.0 <13.0.1": ">=13.0.1",
"fast-uri@<=3.1.0": ">=3.1.1",
"fast-uri@<=3.1.1": ">=3.1.2"
}
}
}