-
-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.91 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
{
"name": "tanstarter",
"version": "0.0.1",
"private": true,
"type": "module",
"imports": {
"#/*": "./src/*"
},
"scripts": {
"dev": "vp dev",
"build": "vp build",
"preview": "vp preview",
"start": "node --env-file-if-exists=.env .output/server/index.mjs",
"start:e2e": "node --env-file-if-exists=.env.e2e .output/server/index.mjs",
"test": "vp test",
"test:e2e": "playwright test --pass-with-no-tests",
"lint": "vp lint --type-aware --type-check",
"lint:fix": "vp lint --type-aware --type-check --fix",
"format": "vp fmt",
"format:check": "vp fmt --check",
"check": "vp check",
"check:fix": "vp check --fix",
"prepare": "vp config",
"db": "drizzle-kit",
"deps": "vpx taze@latest -Ilw --maturity-period 3",
"tanstack": "vpx @tanstack/cli@latest",
"ui": "vpx shadcn@latest",
"auth": "vpx auth@latest",
"auth:secret": "vpx auth@latest secret",
"auth:generate": "vpx auth@rc generate --config ./src/lib/auth/auth.ts --y --output ./src/lib/db/schema/auth.schema.ts",
"auth:migrate": "vpr auth:generate && vpr db generate && vpr db migrate",
"skills": "vpx skills@latest",
"intent": "vpx @tanstack/intent@latest"
},
"dependencies": {
"@base-ui/react": "1.7.0",
"@better-auth/drizzle-adapter": "1.7.0-rc.6",
"@fontsource-variable/inter": "5.3.0",
"@icons-pack/react-simple-icons": "13.13.0",
"@t3-oss/env-core": "0.13.11",
"@tanstack/react-query": "5.101.4",
"@tanstack/react-router": "1.170.29",
"@tanstack/react-router-ssr-query": "1.167.1",
"@tanstack/react-start": "1.168.46",
"better-auth": "1.7.0-rc.6",
"class-variance-authority": "0.7.1",
"cnfast": "0.1.0",
"drizzle-orm": "1.0.0-rc.4",
"lucide-react": "1.31.0",
"postgres": "3.4.9",
"react": "19.2.8",
"react-dom": "19.2.8",
"shadcn": "4.18.0",
"zod": "4.4.3"
},
"devDependencies": {
"@babel/core": "8.0.1",
"@playwright/test": "1.62.1",
"@rolldown/plugin-babel": "0.2.3",
"@tailwindcss/vite": "4.3.3",
"@tanstack/devtools-a11y": "0.2.0",
"@tanstack/devtools-vite": "0.8.3",
"@tanstack/eslint-plugin-query": "5.101.4",
"@tanstack/eslint-plugin-router": "1.162.0",
"@tanstack/react-devtools": "0.10.10",
"@tanstack/react-query-devtools": "5.101.4",
"@tanstack/react-router-devtools": "1.167.1",
"@types/babel__core": "7.20.5",
"@types/node": "26.2.0",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.4",
"@vitejs/plugin-react": "6.0.5",
"babel-plugin-react-compiler": "1.0.0",
"drizzle-kit": "1.0.0-rc.4",
"nitro": "3.0.260610-beta",
"tailwindcss": "4.3.3",
"tw-animate-css": "1.4.0",
"typescript": "7.0.2",
"vite": "catalog:",
"vite-plus": "catalog:"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.22.0",
"generator": "create-mugnavo",
"intent": {
"skills": [
"@tanstack/*"
]
}
}