forked from grammyjs/nestjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.86 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
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@grammyjs/nestjs",
"description": "grammY module for NestJS",
"version": "1.0.1",
"author": {
"name": "Mike Crowe",
"email": "drmikecrowe@gmail.com"
},
"bugs": "https://github.com/grammyjs/nestjs/issues",
"contributors": [
{
"name": "Arthur Asimov",
"email": "arthur.asimov.z0@gmail.com"
}
],
"dependencies": {
"@nestjs/common": "^9.0.11",
"@nestjs/core": "^9.0.11",
"@nestjs/platform-express": "^9.0.11",
"debug": "^4.3.4",
"firebase": "^9.9.3",
"firebase-admin": "latest",
"firebase-functions": "latest",
"grammy": "^1.11.0",
"lodash": "^4.17.21",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.6",
"source-map-support": "^0.5.21",
"tslib": "^2.4.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@drmikecrowe/eslint-config-prettier-typescript": "^0.3.11",
"@drmikecrowe/prettier-config": "*",
"@jscutlery/semver": "^2.26.0",
"@nestjs/schematics": "^9.0.1",
"@nestjs/testing": "^9.0.11",
"@nrwl/cli": "14.5.10",
"@nrwl/devkit": "^14.5.10",
"@nrwl/eslint-plugin-nx": "14.5.10",
"@nrwl/jest": "14.5.10",
"@nrwl/js": "14.5.10",
"@nrwl/linter": "14.5.10",
"@nrwl/nest": "^14.5.10",
"@nrwl/node": "14.5.10",
"@nrwl/workspace": "14.5.10",
"@simondotm/nx-firebase": "^0.3.3",
"@types/jest": "^29.0.0",
"@types/node": "18.7.14",
"@typescript-eslint/eslint-plugin": "~5.36.1",
"@typescript-eslint/parser": "~5.36.1",
"eslint": "~8.23.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "^27.0.1",
"husky": "^8.0.1",
"jest": "^29.0.1",
"kill-port": "^2.0.1",
"lint-staged": "^13.0.3",
"ngrok": "^4.3.3",
"ngx-deploy-npm": "^4.2.2",
"nx": "14.5.10",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.7.1",
"syncpack": "^8.2.4",
"ts-jest": "^29.0.3",
"typescript": "~4.8.2"
},
"homepage": "https://github.com/grammyjs/nestjs#README.md",
"keywords": [
"bot",
"bot api",
"bot framework",
"grammy",
"nest",
"nestjs",
"nestjs-module",
"telegram",
"telegram bot",
"telegram bot api"
],
"license": "MIT",
"lint-staged": {
"*.{js,json,css,scss,md,ts,html,graphql}": [
"nx format:write --uncommitted"
]
},
"prettier": "@drmikecrowe/prettier-config",
"repository": "grammyjs/nestjs",
"scripts": {
"format": "nx format:write",
"lint": "nx run-many --all --target=lint",
"posttest": "yarn format",
"prepare": "husky install && sed -i 's@#!/bin/sh@#!/usr/bin/env bash@g' .husky/_/husky.sh && sed -i 's@sh -e@bash -e@g' .husky/_/husky.sh",
"test": "nx test",
"pretest": "yarn lint",
"publish:version": "nx run grammy-nestjs:version",
"publish:npm": "nx run grammy-nestjs:deploy --no-build"
}
}