-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 961 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 961 Bytes
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
{
"name": "vite-hono-starter",
"type": "module",
"private": true,
"packageManager": "bun@1.3.4",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json,md}\"",
"db:generate": "turbo run db:generate --filter=server",
"db:migrate": "turbo run db:migrate --filter=server",
"db:studio": "turbo run db:studio --filter=server",
"clean": "rimraf node_modules **/*/node_modules **/*/dist .turbo **/*/.turbo",
"match-versions": "bun run scripts/match-versions.ts"
},
"devDependencies": {
"@starter/config": "workspace:*",
"prettier": "3.7.4",
"prettier-plugin-tailwindcss": "0.7.2",
"rimraf": "6.1.3",
"turbo": "2.5.0"
},
"dependencies": {
"picocolors": "1.1.1",
"zod": "4.3.6"
}
}