-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.24 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.24 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
{
"name": "@startkit-dev/startkit",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"check": "bun run format:check && bun run lint && bun run test",
"clean": "git clean -xdf node_modules/.cache .tanstack dist .wrangler",
"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:types": "bun run bin/generate-db-types.ts",
"dev": "vite dev",
"fix": "bun run format && bun run lint:fix",
"format": "oxfmt .",
"format:check": "bun format -- --check",
"lint": "oxlint",
"lint:fix": "bun lint -- --fix --fix-suggestions",
"lint:fixall": "bun lint:fix -- --fix-dangerously",
"nuke": "bun run clean && git clean -xdf node_modules",
"outdated": "npx npm-check-updates --interactive --format group",
"setup": "bin/setup",
"start": "vite start",
"test": "bun test",
"typegen": "wrangler types && bun db:types"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@fontsource-variable/geist": "^5.2.8",
"@fontsource-variable/geist-mono": "^5.2.7",
"@tanstack/react-query": "^5.99.0",
"@tanstack/react-query-devtools": "^5.99.0",
"@tanstack/react-router": "^1.168.21",
"@tanstack/react-router-devtools": "^1.166.13",
"@tanstack/react-router-with-query": "^1.130.17",
"@tanstack/react-start": "^1.167.39",
"better-auth": "^1.6.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"kysely": "^0.28.3",
"kysely-d1": "^0.4.0",
"lucide-react": "^1.8.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tailwind-merge": "^3.5.0",
"valibot": "^1.3.1"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.32.2",
"@tailwindcss/vite": "^4.2.2",
"@types/bun": "latest",
"@types/node": "latest",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"kysely-codegen": "^0.20.0",
"oxfmt": "latest",
"oxlint": "latest",
"oxlint-tsgolint": "latest",
"setup-dotenv": "^2.0.1",
"tailwindcss": "^4.2.2",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.2",
"vite": "^8.0.8",
"wrangler": "^4.82.2"
}
}