-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.08 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.08 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
{
"name": "react-hono-template",
"version": "0.0.1",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"ai": "^6.0.142",
"@paralleldrive/cuid2": "^3.3.0",
"hono": "^4.12.9",
"zod": "^4.3.6"
}
},
"scripts": {
"check": "turbo lint && turbo fmt:check && turbo typecheck",
"clean": "git clean -xdf dist node_modules .turbo bun.lock",
"fix": "turbo lint:fix && turbo fmt",
"fmt": "oxfmt --ignore-path .oxfmtignore *.json",
"fmt:check": "oxfmt --ignore-path .oxfmtignore --check *.json",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"prepare": "husky"
},
"devDependencies": {
"@types/bun": "latest",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"turbo": "^2.9.4"
},
"peerDependencies": {
"typescript": "^6.0.2"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"oxfmt --write",
"oxlint --fix"
],
"*.json": [
"oxfmt --write"
]
},
"packageManager": "bun@1.3.11"
}