-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 955 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 955 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
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "node-project-auditor-cli",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"all": "tsc && ts-node src/index.ts",
"lint": "npx eslint",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/danlb-dev/node-project-auditor-cli.git"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^14.0.0",
"fs-extra": "^11.3.0",
"inquirer": "^12.6.3",
"simple-git": "^3.28.0"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/chalk": "^0.4.31",
"@types/commander": "^2.12.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.0.7",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.36.0"
}
}