forked from MahyarGdz/configs-hell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.26 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "configs-hell",
"version": "0.0.1",
"description": "Easily initialize starting configuaration for your nodejs project.",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/MahyarGdz/configs-hell"
},
"bin": {
"configs-hell": "./bin/configs-hell.js"
},
"bugs": {
"url": "https://github.com/MahyarGdz/configs-hell/issues"
},
"contributors": [
{
"name": "Mahyar Goudarzi",
"githubUsername": "MahyarGdz",
"url": "https://github.com/MahyarGdz"
},
{
"name": "Abolfazl Ghaderi",
"githubUsername": "AbolfazlGhaderi",
"url": "https://github.com/AbolfazlGhaderi"
}
],
"publishConfig": {
"access": "public"
},
"keywords": [
"configs",
"api",
"documentation",
"express",
"express.js",
"integration",
"nestjs",
"nodejs",
"typescript",
"eslint"
],
"scripts": {
"prebuild": "rimraf lib/",
"build": "tsc -p tsconfig.build.json && cp -R ./src/template/ ./lib",
"build:types": "tsc -p tsconfig.types.json",
"start": "./bin/configs-hell.js",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"lint": "eslint . --ext .ts --fix",
"publish": "np",
"release": "standard-version",
"prepare": "husky || true"
},
"lint-staged": {
"**/*.ts": [
"npm run format",
"npm run lint",
"git add ."
]
},
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "^20.14.10",
"@types/shelljs": "^0.8.15",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"np": "^10.0.6",
"prettier": "^3.3.2",
"rimraf": "^5.0.8",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"bin",
"lib/"
],
"dependencies": {
"@inquirer/prompts": "^5.2.1",
"ansi-colors": "^4.1.3",
"commander": "^12.1.0",
"execa": "^9.3.0",
"shelljs": "^0.8.5"
}
}