-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.23 KB
/
package.json
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
{
"name": "template_tanstack-app",
"private": true,
"version": "0.0.0",
"type": "module",
"sideEffects": false,
"scripts": {
"dev": "vinxi dev",
"build": "vinxi build",
"start": "vinxi start",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push:sqlite",
"db:seed": "tsx ./app/server/db/seed.ts",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@clerk/clerk-react": "^4.30.7",
"@faker-js/faker": "^8.4.1",
"@hono/clerk-auth": "^2.0.0",
"@hono/node-server": "^1.8.2",
"@hono/zod-validator": "^0.2.1",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@std/ulid": "npm:@jsr/[email protected]",
"@tailwindcss/container-queries": "^0.1.1",
"@tanstack/react-form": "^0.33.0",
"@tanstack/react-query": "^5.40.0",
"@tanstack/react-router": "^1.58.1",
"@tanstack/react-router-with-query": "^1.58.1",
"@tanstack/react-table": "^8.15.0",
"@tanstack/router-cli": "^1.58.1",
"@tanstack/router-devtools": "^1.58.1",
"@tanstack/router-vite-plugin": "^1.58.1",
"@tanstack/router-zod-adapter": "^1.58.1",
"@tanstack/start": "^1.51.2",
"@tanstack/zod-form-adapter": "^0.33.0",
"@types/better-sqlite3": "^7.6.11",
"better-sqlite3": "^11.1.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^1.0.0",
"concurrently": "^8.2.2",
"date-fns": "^3.6.0",
"drizzle-orm": "^0.33.0",
"drizzle-zod": "^0.5.1",
"hono": "^4.4.7",
"lucia": "^3.2.0",
"lucide-react": "^0.344.0",
"next-themes": "^0.3.0",
"react": "^18.2.0",
"react-day-picker": "^9.0.8",
"react-dom": "^18.2.0",
"react-resizable-panels": "^2.0.11",
"recharts": "^2.12.7",
"rollup-plugin-visualizer": "^5.12.0",
"sonner": "^1.4.41",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"vinxi": "^0.4.2",
"vite-tsconfig-paths": "^5.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@tanstack/router-vite-plugin": "^1.16.5",
"@types/node": "^20.11.25",
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"drizzle-kit": "^0.24.2",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"postcss": "^8.4.35",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.1",
"tsx": "^4.7.1",
"typescript": "^5.2.2",
"vite": "^5.1.4"
},
"overrides": {
"better-sqlite3": "11.2.1"
}
}