-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 783 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 783 Bytes
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
{
"name": "angular-codebase-analyzer",
"version": "1.0.0",
"description": "Analyzes Angular codebase structure and relationships",
"main": "scripts/run-analysis.ts",
"scripts": {
"analyze": "ts-node scripts/run-analysis.ts",
"generate-docs": "compodoc -p tsconfig.json -e json --includes source-code",
"start": "npm run generate-docs && npm run analyze",
"format": "prettier --write \"**/*.{ts,json}\"",
"format:check": "prettier --check \"**/*.{ts,json}\""
},
"dependencies": {
"axios": "^1.9.0",
"htmlparser2": "^9.1.0"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.23",
"@types/htmlparser2": "^3.10.7",
"@types/node": "^20.11.24",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}