This repository has been archived by the owner on Apr 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.62 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
{
"name": "typescript-cli-boilerplate",
"version": "1.0.1",
"description": "A Typescript CLI Boilerplate",
"engines": {
"node": "10",
"yarn": ">=1.9.0 <2.0.0"
},
"main": "ts-node src/main.ts",
"scripts": {
"setup": "yarn global add typescript && prettier && npx && jest && @commitlint/cli && husky",
"clear": "rm -r ./dist && rm -r .tmp || true",
"purge": "yarn clear && rm -rf node_modules",
"reset": "yarn purge && yarn",
"build": "npx tsc --p tsconfig.json",
"tsc": "npx tsc",
"lint": "npx tslint --project tsconfig.json src/**/*.ts",
"test": "npx jest",
"start": "ts-node src/lib/main.ts",
"commit": "commit",
"semantic-release": "semantic-release",
"semantic-release:dry-run": "export $(cat .env | xargs) && npx semantic-release --dry-run --no-ci --debug"
},
"keywords": [
"typescript",
"cli",
"boilerplate"
],
"author": "@roalcantara",
"url": "https://github.com/roalcantara/typescript-cli-boilerplate/issues",
"email": "rogerio.alcantara@gmail.com",
"license": "MIT",
"private": true,
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.5",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/chalk": "^2.2.0",
"@types/cheerio": "^0.22.17",
"@types/faker": "^4.1.11",
"@types/inquirer": "^6.5.0",
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.149",
"@types/node": "^13.11.1",
"@types/ora": "^3.2.0",
"factory-bot-ts": "^0.1.5",
"faker": "^4.1.0",
"html-loader-jest": "^0.2.1",
"husky": "^4.2.5",
"jest": "^25.3.0",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"semantic-release": "^17.0.4",
"ts-jest": "^25.3.1",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"dependencies": {
"chalk": "^4.0.0",
"cheerio": "^1.0.0-rc.3",
"inquirer": "^7.1.0",
"lodash": "^4.17.15",
"ora": "^4.0.3",
"pokedex-promise-v2": "^3.2.0",
"puppeteer": "^2.1.1",
"rxjs": "^6.5.5",
"tslib": "^1.11.1",
"yargs": "^15.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/roalcantara/typescript-cli-boilerplate.git"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npx pretty-quick --staged",
"postcommit": "git update-index -g"
}
}
}