-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 872 Bytes
/
package.json
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
{
"name": "dependency-analyzer",
"version": "0.0.1",
"description": "NestJS project structure analyzer",
"main": "dist/main.js",
"bin": {
"nestjs-analyzer": "./dist/main.js"
},
"scripts": {
"build": "tsc",
"start": "ts-node src/main.ts",
"analyze": "ts-node src/main.ts analyze",
"dev": "ts-node-dev --respawn src/main.ts",
"format": "git diff --cached --name-only --diff-filter=ACM \"*.ts\" | xargs -I % prettier --write %",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^18.0.0",
"commander": "^11.0.0",
"typescript": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0"
}
}