-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.9 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "repotrace",
"version": "1.3.2",
"description": "RepoTrace — Interactive AST-powered codebase architecture explorer, dependency graph, and execution flow visualizer.",
"license": "MIT",
"keywords": [
"ast",
"ts-morph",
"dependency-graph",
"codebase-intelligence",
"dagre",
"react-flow",
"topological-sort",
"circular-dependencies"
],
"private": false,
"bin": {
"repotrace": "bin/repotrace.js"
},
"files": [
"dist",
"server",
"bin",
"Gallery",
"LICENSE",
"README.md"
],
"type": "module",
"scripts": {
"dev": "concurrently -k -n \"SERVER,CLIENT\" -c \"cyan,magenta\" \"npm run dev:server\" \"npm run dev:client\"",
"dev:client": "vite",
"dev:server": "tsx watch server/index.ts",
"build": "tsc && vite build",
"prestart": "npm run build",
"start": "node bin/repotrace.js",
"test:analyzer": "tsx server/test-analyzer.ts",
"test:topo": "tsx server/test-topo.ts",
"test:js": "tsx server/test-js-analyzer.ts",
"test:py": "tsx server/test-python-analyzer.ts",
"test:dart": "tsx server/test-dart-analyzer.ts"
},
"dependencies": {
"@dagrejs/dagre": "^1.1.4",
"@xyflow/react": "^12.4.2",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"express": "^4.21.2",
"fast-glob": "^3.3.3",
"lucide-react": "^1.16.0",
"open": "^11.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^3.0.2",
"ts-morph": "^25.0.1",
"tsx": "^4.19.3"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/dagre": "^0.7.52",
"@types/express": "^5.0.0",
"@types/node": "^22.13.5",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.2",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"vite": "^6.2.0"
}
}