-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.01 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
{
"name": "project-starter-cli",
"version": "1.0.0",
"main": "dist/bin/index.js",
"bin": {
"project-starter": "./dist/bin/index.js"
},
"scripts": {
"test": "jest",
"test-cover": "jest --coverage",
"build": "tsc",
"start": "ts-node bin/index.ts create",
"watch": "tsc --watch",
"dev": "nodemon --exec ts-node bin/index.ts create",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"execa": "^9.3.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@inquirer/prompts": "^5.3.8",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"fs-extra": "^11.2.0",
"inquirer": "^10.1.8",
"ora": "^8.0.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}