2019-02-28 11:29:26 +03:00
|
|
|
{
|
2020-01-12 00:57:46 +03:00
|
|
|
"name": "nestjs-telegraf",
|
2019-07-26 10:50:49 +03:00
|
|
|
"version": "0.5.1",
|
2019-02-28 11:29:26 +03:00
|
|
|
"repository": "git@github.com:igorkamyshev/nest-telegram.git",
|
|
|
|
"author": "Igor Kamyshev <igor@kamyshev.me>",
|
|
|
|
"license": "MIT",
|
2020-01-12 14:18:48 +03:00
|
|
|
"dependencies": {
|
|
|
|
"lodash": "^4.17.13"
|
2019-02-28 11:29:26 +03:00
|
|
|
},
|
2020-01-12 14:18:48 +03:00
|
|
|
"peerDependencies": {
|
|
|
|
"@nestjs/common": "^6.7.0",
|
|
|
|
"@nestjs/core": "^6.7.0",
|
|
|
|
"reflect-metadata": "^0.1.13",
|
|
|
|
"telegraf": "^3.35.0"
|
2019-02-28 11:29:26 +03:00
|
|
|
},
|
2020-01-12 14:18:48 +03:00
|
|
|
"devDependencies": {
|
|
|
|
"@nestjs/common": "^6.7.0",
|
|
|
|
"@nestjs/core": "^6.7.0",
|
|
|
|
"@types/lodash": "^4.14.121",
|
|
|
|
"husky": "^4.0.7",
|
|
|
|
"lint-staged": "^9.5.0",
|
|
|
|
"prettier": "^1.19.1",
|
|
|
|
"reflect-metadata": "^0.1.13",
|
|
|
|
"telegraf": "^3.35.0",
|
|
|
|
"typescript": "^3.7.4"
|
2019-02-28 11:29:26 +03:00
|
|
|
},
|
|
|
|
"scripts": {
|
2020-01-12 14:18:48 +03:00
|
|
|
"build": "rm -rf dist && tsc -p tsconfig.json",
|
|
|
|
"precommit": "lint-staged",
|
|
|
|
"prepublish:npm": "npm run build",
|
|
|
|
"publish:npm": "npm publish --access public"
|
2019-02-28 11:29:26 +03:00
|
|
|
},
|
2020-01-12 14:18:48 +03:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
2019-02-28 11:29:26 +03:00
|
|
|
},
|
2020-01-12 14:18:48 +03:00
|
|
|
"lint-staged": {
|
|
|
|
"*.ts": [
|
|
|
|
"prettier --write",
|
|
|
|
"git add"
|
|
|
|
]
|
2019-02-28 11:29:26 +03:00
|
|
|
}
|
|
|
|
}
|