-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.57 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
{
"name": "holo",
"private": true,
"version": "0.0.0",
"engines": {
"node": ">=20.18.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.12.0",
"scripts": {
"prepare": "git config core.hooksPath .githooks 2>/dev/null || true",
"bootstrap": "node scripts/setup.mjs",
"check:env": "node scripts/check-env.mjs",
"verify:gateway": "node scripts/verify-mcp-sse.mjs",
"build": "turbo run build",
"dev": "node scripts/check-env.mjs && turbo run dev",
"lint": "eslint . && node eslint-plugin-local/test/no-bare-throw-error.test.js",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"db:migrate": "pnpm -F @holo/db migrate",
"db:generate": "pnpm -F @holo/db generate",
"db:studio": "pnpm -F @holo/db studio",
"db:check": "pnpm -F @holo/db check",
"db:new-data-migration": "pnpm -F @holo/db new-data-migration",
"chat:verify-bot-access": "pnpm -F @holo/db exec tsx ../../scripts/google-chat-diagnostics/verify-bot-access.ts",
"chat:inspect-token-scopes": "pnpm -F @holo/db exec tsx ../../scripts/google-chat-diagnostics/inspect-token-scopes.ts",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@types/node": "20.16.11",
"@typescript-eslint/eslint-plugin": "^8.59.1",
"@typescript-eslint/parser": "^8.59.1",
"eslint": "^9.39.4",
"eslint-plugin-import-x": "^4.16.2",
"prettier": "3.3.3",
"turbo": "2.9.8",
"typescript": "5.6.3",
"typescript-eslint": "^8.59.1"
},
"pnpm": {
"overrides": {
"zod": "4.4.2"
}
}
}