-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.37 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.37 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
51
52
53
54
55
{
"name": "engraph-worker",
"version": "1.0.0",
"description": "Asynchronous worker to generate dependency and context graphs for a codebase",
"main": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon",
"start": "node dist/index.js",
"build": "npx tsc && npx resolve-tspaths",
"prepare": "husky && husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Engraph-dev/engraph-worker.git"
},
"keywords": [
"dependency",
"tree",
"engraph"
],
"author": "Engraph.dev",
"license": "MIT",
"bugs": {
"url": "https://github.com/Engraph-dev/engraph-worker/issues"
},
"homepage": "https://github.com/Engraph-dev/engraph-worker#readme",
"dependencies": {
"@aws-sdk/client-sqs": "^3.726.1",
"@prisma/client": "^6.2.1",
"dotenv": "^16.4.5",
"neo4j-driver": "^5.27.0",
"octokit": "^4.1.0",
"openai": "^4.73.1",
"prisma": "^6.2.1",
"resolve-tspaths": "^0.8.22",
"simple-git": "^3.27.0",
"tree-sitter": "^0.21.1",
"ts-morph": "^24.0.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.2"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^22.10.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.9",
"prettier": "^3.3.3"
},
"lint-staged": {
"*.{ts,json}": "prettier --write"
}
}