-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.44 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.44 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
{
"type": "module",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"test": "NODE_OPTIONS=--experimental-vm-modules jest -c jest.config.ts"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^24.7.1",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"tree-sitter": "^0.21.1",
"tree-sitter-c": "^0.21.4",
"tree-sitter-cpp": "^0.22.3",
"tree-sitter-css": "^0.21.1",
"tree-sitter-html": "^0.23.2",
"tree-sitter-java": "^0.23.5",
"tree-sitter-javascript": "^0.21.4",
"tree-sitter-kotlin": "^0.3.8",
"tree-sitter-python": "^0.21.0",
"tree-sitter-typescript": "^0.23.2",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"zod": "^3.25.76"
},
"dependencies": {
"@langchain/core": "^0.3.78",
"@langchain/langgraph": "^0.4.9",
"@langchain/openai": "^0.6.14",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"openai": "6.2.0",
"tree-sitter": "^0.21.1",
"tree-sitter-c": "^0.21.4",
"tree-sitter-cpp": "^0.22.3",
"tree-sitter-css": "^0.21.1",
"tree-sitter-html": "^0.23.2",
"tree-sitter-java": "^0.23.5",
"tree-sitter-javascript": "^0.21.4",
"tree-sitter-kotlin": "^0.3.8",
"tree-sitter-python": "^0.21.0",
"tree-sitter-typescript": "^0.23.2"
}
}