-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.11 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.11 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
{
"name": "context8",
"version": "0.1.0",
"private": true,
"description": "Private codebase context platform for AI coding assistants",
"author": "Context8 Team",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.14.2",
"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:generate": "pnpm --filter @context8/database db:generate",
"db:migrate": "pnpm --filter @context8/database db:migrate",
"db:push": "pnpm --filter @context8/database db:push",
"docker:up": "docker compose -f deploy/docker-compose.yml up -d",
"docker:down": "docker compose -f deploy/docker-compose.yml down",
"docker:logs": "docker compose -f deploy/docker-compose.yml logs -f"
},
"devDependencies": {
"@types/node": "^20.10.0",
"turbo": "^2.3.0",
"typescript": "^5.3.0",
"vitest": "^2.1.0",
"prettier": "^3.2.0",
"eslint": "^9.15.0"
}
}