-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.56 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
{
"name": "touch",
"private": true,
"sideEffects": false,
"type": "module",
"engines": {
"node": "22.x"
},
"imports": {
"#*": [
"./src/*",
"./src/*.ts",
"./src/*.tsx"
]
},
"scripts": {
"dev": "vite dev",
"build": "bun run check && vite build && tsc --noEmit && drizzle-kit migrate && vitest run",
"preview": "vite preview",
"deploy": "bun run build && wrangler deploy",
"format": "prettier --write . && eslint --fix",
"check": "prettier --check . && eslint --max-warnings 0",
"cf-typegen": "wrangler types",
"lint": "eslint --max-warnings 0 --fix",
"test": "vitest",
"clean:soft": "rm -rf node_modules tsconfig.tsbuildinfo .wrangler .tanstack dist && bun install",
"clean:hard": "rm -rf node_modules tsconfig.tsbuildinfo .wrangler .tanstack dist bun.lock && bun install",
"db:generate": "drizzle-kit generate",
"db:generate:custom": "drizzle-kit generate --custom",
"db:drop": "drizzle-kit drop",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:pull": "drizzle-kit pull",
"db:check": "drizzle-kit check",
"db:up": "drizzle-kit up",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@clerk/tanstack-react-start": "^1.4.17",
"@heroicons/react": "^2.2.0",
"@tailwindcss/vite": "^4.3.2",
"@tanstack/query-core": "^5.101.2",
"@tanstack/query-db-collection": "^1.0.47",
"@tanstack/react-db": "^0.1.92",
"@tanstack/react-router": "^1.170.17",
"@tanstack/react-router-devtools": "^1.167.0",
"@tanstack/react-start": "^1.168.27",
"drizzle-orm": "^0.45.2",
"drizzle-zod": "^0.8.3",
"nanoid": "^6.0.0",
"pg": "^8.22.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tailwindcss": "^4.3.2",
"tiny-invariant": "^1.3.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.44.0",
"@eslint/js": "^10.0.1",
"@tanstack/eslint-plugin-router": "^1.162.0",
"@types/node": "^26.1.1",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"dotenv": "^17.4.2",
"drizzle-kit": "^0.31.10",
"eslint": "^10.7.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.7.0",
"neon-testing": "^3.0.0",
"prettier": "^3.9.5",
"prettier-plugin-tailwindcss": "^0.8.0",
"sharp": "^0.35.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0",
"vite": "^8.1.4",
"vitest": "^4.1.10",
"wrangler": "^4.110.0"
}
}