-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.27 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
{
"name": "cats-cli",
"version": "0.0.2",
"description": "CLI to create and manage clean architecture projects in typescript server-side",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test:unit": "jest -i ",
"test:unit:watch": "yarn test:unit --watch",
"test:unit:coverage": "yarn test:unit --coverage",
"start": "nodemon --watch 'src/**/*.ts' --exec ts-node src/index.ts",
"create": "yarn build && yarn test",
"type:check": "tsc --noEmit",
"build": "rm -rf dist && tsc ",
"run:local": "npm i -g && cats",
"lint": "eslint --fix 'src/**/*.ts'",
"commit": "git-cz"
},
"release": {
"branches": [
"master",
"next"
]
},
"bin": {
"cats": "./dist/index.js"
},
"keywords": [
"typescript",
"clean architecture"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn type:check"
}
},
"lint-staged": {
"**/*.ts": [
"prettier --write",
"eslint --fix"
]
},
"author": "Chupsy",
"license": "GPL-3.0-or-later",
"dependencies": {
"chalk": "^3.0.0",
"clear": "^0.1.0",
"commander": "^4.1.0",
"figlet": "^1.2.4",
"inquirer": "^7.0.4",
"path": "^0.12.7"
},
"devDependencies": {
"@types/clear": "0.1.0",
"@types/figlet": "1.2.0",
"@types/inquirer": "6.5.0",
"@types/jest": "25.1.3",
"@types/node": "13.7.6",
"@typescript-eslint/eslint-plugin": "2.21.0",
"@typescript-eslint/parser": "2.21.0",
"cz-conventional-changelog": "3.1.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-jest": "23.8.0",
"eslint-plugin-node": "11.0.0",
"husky": "4.2.3",
"jest": "25.1.0",
"lint-staged": "10.0.8",
"nodemon": "2.0.2",
"semantic-release": "17.0.4",
"ts-jest": "25.2.1",
"ts-node": "8.6.2",
"typescript": "3.8.2"
},
"engines": {
"node": ">=10.19.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}