-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.86 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.86 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
{
"name": "db-agent",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"build": "turbo run build",
"start": "turbo run start",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"tsc": "turbo run tsc",
"generate": "turbo run generate",
"format-check": "prettier --check \"./**/*.{ts,tsx,css,json,md,yml,yaml}\"",
"format-write": "prettier --write \"./**/*.{ts,tsx,css,json,md,yml,yaml}\"",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/compat": "^1.3.2",
"@types/node": "^24.3.0",
"@types/react": "^19.1.12",
"@xata.io/tsconfig": "^0.0.1",
"eslint": "^9.34.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.2.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"tsx": "^4.20.5",
"turbo": "^2.5.6",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"npx prettier --config=.prettierrc.precommit.js --write"
],
"*.{css,json,md,yml,yaml}": [
"npx prettier --write"
]
},
"pnpm": {
"overrides": {
"esbuild@<=0.24.2": ">=0.25.0",
"vite@>=6.2.0 <=6.2.6": ">=6.2.7",
"vite@<7.1.11": ">=7.1.11",
"prismjs@<1.30.0": ">=1.30.0",
"axios": ">=1.12.0",
"tar-fs": ">=2.1.4",
"hono@<4.10.3": ">=4.10.3",
"jsondiffpatch@<0.7.2": ">=0.7.2",
"js-yaml@>=4.0.0 <4.1.1": ">=4.1.1",
"body-parser@>=2.2.0 <2.2.1": ">=2.2.1",
"mdast-util-to-hast@>=13.0.0 <13.2.1": ">=13.2.1",
"@modelcontextprotocol/sdk@<1.24.0": ">=1.24.0",
"jws@=4.0.0": ">=4.0.1",
"qs@<6.14.1": ">=6.14.1"
}
},
"engines": {
"node": "22.x",
"pnpm": "10.x"
},
"packageManager": "pnpm@10.5.2"
}