-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.29 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
{
"name": "my-tanstack-app",
"private": true,
"type": "module",
"imports": {
"#/*": "./src/*"
},
"scripts": {
"dev": "dotenv -e .env.local -- sh -c \"NODE_OPTIONS='--import ./instrument.server.mjs' vite dev --port 3000\"",
"build": "vite build && cp instrument.server.mjs .output/server",
"preview": "vite preview",
"test": "vitest run",
"start": "node --import ./.output/server/instrument.server.mjs .output/server/index.mjs",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:pull": "drizzle-kit pull",
"db:studio": "drizzle-kit studio",
"deploy": "pnpm run build && wrangler deploy"
},
"dependencies": {
"@cloudflare/vite-plugin": "^1.26.0",
"@neondatabase/serverless": "^1.0.2",
"@sentry/tanstackstart-react": "^10.42.0",
"@strapi/client": "^1.6.1",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-devtools": "latest",
"@tanstack/react-form": "latest",
"@tanstack/react-query": "latest",
"@tanstack/react-query-devtools": "latest",
"@tanstack/react-router": "latest",
"@tanstack/react-router-devtools": "latest",
"@tanstack/react-router-ssr-query": "latest",
"@tanstack/react-start": "latest",
"@tanstack/router-plugin": "^1.132.0",
"better-auth": "^1.5.3",
"dotenv-cli": "^11.0.0",
"drizzle-kit": "^0.31.9",
"drizzle-orm": "^0.45.1",
"lucide-react": "^0.545.0",
"pg": "^8.16.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0",
"tailwindcss": "^4.1.18",
"use-debounce": "^10.1.0",
"vite-plugin-neon-new": "^0.8.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"@tanstack/devtools-vite": "latest",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.10.2",
"@types/pg": "^8.15.6",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^6.0.1",
"dotenv": "^17.3.1",
"jsdom": "^28.1.0",
"tsx": "^4.21.0",
"typescript": "^5.7.2",
"vite": "^8.0.0",
"vitest": "^3.0.5",
"wrangler": "^4.70.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lightningcss"
]
}
}