-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.46 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "project-template-cli",
"version": "1.0.0",
"description": "Create projects easier 🪄",
"main": "build/index.js",
"scripts": {
"start": "pnpm clean && pnpm build && pnpm execute",
"clean": "rimraf build",
"build": "tsc && tsc-alias",
"execute": "node build/index.js",
"dev": "node-dev -r tsconfig-paths/register src/index.ts",
"lint": "eslint . --cache",
"prettier": "prettier -c . --cache",
"format": "prettier -w .",
"prepare": "husky install"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"repository": {
"type": "git",
"url": "git@github.com:MohamadKh75/project-template.git"
},
"author": "MohamadKh75",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@types/node": "^18.17.3",
"@types/shelljs": "^0.8.12",
"@types/validate-npm-package-name": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"husky": "^8.0.3",
"node-dev": "^8.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.1",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.7",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@types/inquirer": "^8.2.6",
"inquirer": "^8.2.6",
"inquirer-select-directory": "^1.2.0",
"shelljs": "^0.8.5",
"validate-npm-package-name": "^5.0.0"
}
}