-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.05 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
{
"name": "brain-platform",
"version": "0.1.0",
"private": true,
"description": "Persistent, queryable, evolving knowledge layer for AI-assisted coding. MCP server + webapp.",
"license": "MIT",
"packageManager": "pnpm@9.15.0",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean && rm -rf node_modules",
"db:migrate": "pnpm --filter @brain/db prisma migrate dev",
"db:generate": "pnpm --filter @brain/db prisma generate",
"db:studio": "pnpm --filter @brain/db prisma studio",
"hash-admin-password": "pnpm --filter @brain/worker exec tsx ../../scripts/hash-admin-password.ts"
},
"devDependencies": {
"turbo": "^2.3.0",
"typescript": "^6.0.0",
"@types/node": "^22.0.0",
"prettier": "^3.3.0",
"eslint": "^10.0.0"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"pnpm": {
"overrides": {
"postcss": "^8.5.10",
"vite": "^7.0.0"
}
}
}