-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.71 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.71 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
{
"name": "codegraph",
"version": "0.1.0",
"private": true,
"description": "Visual Codebase Knowledge Graph",
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --concurrency 22",
"lint": "turbo run lint",
"test": "turbo run test",
"test:e2e": "playwright test",
"test:scripts": "vitest run --config vitest.config.ts",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:db": "docker-compose up -d falkordb",
"docker:logs": "docker-compose logs -f",
"docker:reset": "docker-compose down -v && docker-compose up -d falkordb",
"start": "docker-compose up -d falkordb && turbo run dev --concurrency 15",
"stop": "docker-compose down",
"typecheck": "turbo run build --filter=@codegraph/types",
"build:mcpb": "turbo run build && node packages/mcpb/build.mjs && cd packages/mcpb/dist && mcpb pack",
"build:npm": "turbo run build && node packages/mcpb/build.mjs && node packages/npm-package/build.mjs"
},
"devDependencies": {
"@huggingface/transformers": "^3.8.1",
"@playwright/test": "^1.57.0",
"@types/node": "^22.0.0",
"kuzu": "0.11.3",
"prettier": "^3.4.2",
"tsx": "^4.19.0",
"turbo": "^2.8.17",
"typescript": "^5.7.3",
"vitest": "^3.0.0"
},
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0",
"engines": {
"node": ">=20.0.0"
}
}