forked from backpine/tanstack-start-on-cloudflare
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 4.2 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 4.2 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "tanstack-start-on-cloudflare",
"private": true,
"type": "module",
"packageManager": "pnpm@10.34.5",
"engines": {
"node": ">=24.18.0"
},
"scripts": {
"prepare": "simple-git-hooks",
"init-project": "tsx scripts/init-project.ts",
"dev": "vite dev --port 3000",
"build": "vite build",
"build:staging": "CLOUDFLARE_ENV=staging vite build --mode staging",
"build:production": "CLOUDFLARE_ENV=production vite build --mode production",
"deploy": "pnpm run build && wrangler deploy",
"deploy:staging": "pnpm run build:staging && wrangler deploy --env=''",
"deploy:production": "pnpm run build:production && wrangler deploy --env=''",
"serve": "vite preview",
"cf-typegen": "wrangler types --env-interface BaseEnv",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"types": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"lint:ci": "biome ci .",
"knip": "knip",
"release": "semantic-release",
"release:dry": "semantic-release --dry-run",
"deps": "taze -r",
"deps:update": "taze -r -w",
"deps:major": "taze -r major",
"deps:major:update": "taze -r major -w",
"db:generate:dev": "dotenvx run -f .dev.vars -- drizzle-kit generate --config drizzle-dev.config.ts",
"db:generate:staging": "dotenvx run -f .staging.vars -- drizzle-kit generate --config drizzle-staging.config.ts",
"db:generate:production": "dotenvx run -f .production.vars -- drizzle-kit generate --config drizzle-production.config.ts",
"db:migrate:dev": "dotenvx run -f .dev.vars -- drizzle-kit migrate --config drizzle-dev.config.ts",
"db:migrate:staging": "dotenvx run -f .staging.vars -- drizzle-kit migrate --config drizzle-staging.config.ts",
"db:migrate:production": "dotenvx run -f .production.vars -- drizzle-kit migrate --config drizzle-production.config.ts",
"db:pull:dev": "dotenvx run -f .dev.vars -- drizzle-kit pull --config drizzle-dev.config.ts",
"db:pull:staging": "dotenvx run -f .staging.vars -- drizzle-kit pull --config drizzle-staging.config.ts",
"db:pull:production": "dotenvx run -f .production.vars -- drizzle-kit pull --config drizzle-production.config.ts",
"db:studio": "dotenvx run -f .dev.vars -- drizzle-kit studio --config drizzle-dev.config.ts",
"db:seed:dev": "dotenvx run -f .dev.vars -- tsx scripts/seed.ts",
"db:seed:staging": "dotenvx run -f .staging.vars -- tsx scripts/seed.ts",
"db:seed:production": "dotenvx run -f .production.vars -- tsx scripts/seed.ts"
},
"dependencies": {
"@neondatabase/serverless": "^1.1.0",
"@radix-ui/react-collapsible": "^1.1.20",
"@radix-ui/react-dialog": "^1.1.23",
"@radix-ui/react-dropdown-menu": "^2.1.24",
"@radix-ui/react-slot": "^1.3.3",
"@tailwindcss/vite": "^4.3.3",
"@tanstack/react-query": "^5.101.4",
"@tanstack/react-query-devtools": "^5.101.4",
"@tanstack/react-router": "^1.170.25",
"@tanstack/react-router-devtools": "^1.167.1",
"@tanstack/react-router-ssr-query": "^1.167.1",
"@tanstack/react-start": "^1.168.46",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"hono": "^4.13.2",
"lucide-react": "^0.476.0",
"radix-ui": "^1.6.7",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3",
"tw-animate-css": "^1.4.0",
"vite-tsconfig-paths": "^5.1.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@cloudflare/vite-plugin": "^1.52.1",
"@cloudflare/vitest-pool-workers": "^0.20.3",
"@dotenvx/dotenvx": "^1.75.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.20.1",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "^4.1.10",
"drizzle-kit": "^0.31.10",
"jsdom": "^26.1.0",
"knip": "^6.32.2",
"semantic-release": "^25.0.9",
"simple-git-hooks": "^2.13.1",
"taze": "^19.17.2",
"tsx": "^4.23.12",
"typescript": "^5.9.3",
"vite": "7.1.2",
"vitest": "^4.1.10",
"wrangler": "^4.123.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm run lint:ci",
"pre-push": "pnpm run cf-typegen && pnpm run types && pnpm run knip"
}
}