-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 716 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 716 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
{
"name": "react-tanstack-router-hono-drizzle",
"private": true,
"workspaces": ["apps/*"],
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"check-types": "turbo check-types",
"dev:native": "turbo -F native dev",
"dev:web": "turbo -F web dev",
"dev:server": "turbo -F server dev",
"db:push": "turbo -F server db:push",
"db:studio": "turbo -F server db:studio",
"check": "biome check --write ."
},
"dependencies": {},
"devDependencies": {
"turbo": "^2.4.2",
"@biomejs/biome": "1.9.4",
"husky": "^9.1.7",
"lint-staged": "^15.5.0"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write ."
]
},
"packageManager": "bun@1.2.10"
}