-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.81 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.81 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
{
"name": "@startkit-dev/startkit",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"check": "bun run format:check && bun run lint && bun run typecheck && bun test",
"clean": "git clean -xdf node_modules/.cache .tanstack .output .nitro dist .wrangler",
"db:generate": "drizzle-kit generate",
"db:migrate": "wrangler d1 migrations apply DB --local",
"db:migrate:prod": "wrangler d1 migrations apply DB",
"db:reset": "git clean -xdf .wrangler && bun db:migrate",
"db:studio": "drizzle-kit studio",
"dev": "vite dev",
"fix": "bun run format && bun run lint:fix",
"format": "prettier --experimental-cli --write .",
"format:check": "prettier --experimental-cli --check .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"nuke": "bun run clean && git clean -xdf node_modules",
"outdated": "npx npm-check-updates --interactive --format group",
"setup": "bin/setup",
"start": "vite start",
"typecheck": "tsc --noEmit --pretty",
"typegen": "wrangler types"
},
"dependencies": {
"@fontsource-variable/geist": "^5.2.8",
"@fontsource-variable/geist-mono": "^5.2.7",
"@tanstack/react-query": "^5.90.2",
"@tanstack/react-query-devtools": "^5.90.2",
"@tanstack/react-router": "^1.132.7",
"@tanstack/react-router-devtools": "^1.132.11",
"@tanstack/react-router-with-query": "^1.130.17",
"@tanstack/react-start": "^1.132.13",
"better-auth": "^1.3.18",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.44.5",
"lucide-react": "^0.544.0",
"radix-ui": "^1.4.3",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tailwind-merge": "^3.3.1",
"valibot": "^1.1.0"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.13.7",
"@eslint/js": "^9.36.0",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@prettier/plugin-oxc": "^0.0.4",
"@tailwindcss/vite": "^4.1.13",
"@tanstack/eslint-plugin-router": "^1.132.0",
"@types/bun": "latest",
"@types/node": "^24.5.2",
"@types/react": "^19.1.14",
"@types/react-dom": "^19.1.9",
"@typescript-eslint/parser": "^8.44.1",
"@vitejs/plugin-react": "^5.0.4",
"dotkit": "^1.5.0",
"drizzle-kit": "^0.31.5",
"eslint": "^9.36.0",
"eslint-config-flat-gitignore": "^2.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"prettier": "^3.6.2",
"prettier-plugin-jsdoc": "^1.3.3",
"prettier-plugin-packagejson": "^2.5.19",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.13",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"typescript-eslint": "^8.44.1",
"vite": "npm:rolldown-vite@latest",
"vite-tsconfig-paths": "^5.1.4",
"wrangler": "^4.40.2"
}
}