nestjs-telegraf/package.json

38 lines
913 B
JSON
Raw Normal View History

2019-02-28 11:29:26 +03:00
{
"name": "nest-telegram",
2019-03-03 19:37:37 +03:00
"version": "0.2.2",
2019-02-28 11:29:26 +03:00
"main": "dist/index.js",
"repository": "git@github.com:igorkamyshev/nest-telegram.git",
"author": "Igor Kamyshev <igor@kamyshev.me>",
"license": "MIT",
"devDependencies": {
"@solid-soda/scripts": "^1.2.4",
"@team-griffin/install-self-peers": "^1.1.1",
"@types/lodash": "^4.14.121"
},
"husky": {
"hooks": {
"pre-commit": "yarn soda lint-staged",
"commit-msg": "yarn soda commitlint"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rimraf dist && tsc",
"prepare": "install-self-peers -- --ignore-scripts && yarn build",
"ci": "yarn soda lint",
"s": "yarn soda"
},
"peerDependencies": {
"@nestjs/common": "^5.7.3",
"@nestjs/core": "^5.7.3",
"reflect-metadata": "^0.1.13"
},
"dependencies": {
"lodash": "^4.17.11",
"telegraf": "^3.27.1"
}
}