-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
78 lines (78 loc) · 1.99 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
{
"name": "nest-telegram",
"version": "0.6.10",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "git@github.com:igorkamyshev/nest-telegram.git",
"author": "Igor Kamyshev <igor@kamyshev.me>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/lodash": "^4.14.151",
"@types/node": "12",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"@yarnpkg/pnpify": "^2.0.0-rc.22",
"commitizen": "^4.0.4",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-node": "latest",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-import-helpers": "^1.0.2",
"eslint-plugin-unicorn": "^18.0.1",
"husky": "^4.2.5",
"lint-staged": "^10.1.3",
"prettier": "^2.0.4",
"standard-version": "^7.1.0",
"typescript": "^3.9.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged",
"commit-msg": "yarn commitlint -E HUSKY_GIT_PARAMS"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "yarn tsc",
"prepare": "yarn build",
"pretty": "yarn prettier --write .",
"commit": "yarn git-cz",
"types": "yarn tsc --noEmit",
"lint:code": "yarn eslint \"./**/*.{ts,tsx}\"",
"release": "yarn standard-version"
},
"peerDependencies": {
"reflect-metadata": "^0.1.13"
},
"dependencies": {
"@nestjs/common": "^7.0",
"lodash": "^4.17.15",
"rxjs": "^6.0",
"telegraf": "^3.38.0"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{tsx,ts,js,jsx,scss,css,js,json,md}": [
"yarn prettier --write"
]
}
}