-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.01 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
{
"name": "tanstack-starter",
"version": "0.1.0",
"private": true,
"description": "TanStack Start template.",
"license": "AGPL-3.0-only",
"author": "Jacky Tea",
"repository": {
"type": "git",
"url": "git+https://github.com/jackytea/tanstack-starter.git"
},
"type": "module",
"sideEffects": false,
"main": "src/client.tsx",
"scripts": {
"prepare": "husky",
"dev": "vite dev",
"build": "vite build",
"serve": "vite preview",
"migrate": "drizzle-kit migrate",
"migrate:revert": "drizzle-kit drop",
"start": "node .output/server/index.mjs",
"knip": "knip --fix --allow-remove-files",
"validate": "tsc && oxlint && oxfmt --check .",
"fix": "pnpm knip && oxlint --fix . && oxfmt --write ."
},
"dependencies": {
"@base-ui/react": "^1.7.0",
"@tanstack/react-query": "^5.101.4",
"@tanstack/react-router": "1.170.19",
"@tanstack/react-router-with-query": "^1.130.17",
"@tanstack/react-start": "^1.168.36",
"better-auth": "^1.7.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"lucide-react": "^1.31.0",
"pg": "^8.23.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"resend": "^6.18.0",
"tailwind-merge": "^3.6.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@inlang/paraglide-js": "^2.24.1",
"@tailwindcss/vite": "^4.3.3",
"@types/node": "^26.2.0",
"@types/pg": "^8.23.1",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^6.0.5",
"drizzle-kit": "^0.31.10",
"husky": "^9.1.7",
"knip": "^6.32.2",
"nitro": "3.0.260610-beta",
"oxfmt": "^0.63.0",
"oxlint": "^1.78.0",
"oxlint-tailwindcss": "^1.9.0",
"tailwindcss": "^4.3.3",
"typescript": "^7.0.2",
"vite": "^8.2.1"
},
"optionalDependencies": {
"bufferutil": "^4.1.0"
},
"packageManager": "pnpm@10.33.0"
}