-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
87 lines (87 loc) · 2.38 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
{
"name": "@grammyjs/nestjs",
"version": "2.0.0",
"license": "MIT",
"scripts": {
"lint:fix": "nx affected:lint --fix",
"lint": "nx run-many --all --target=lint",
"prepare": "husky install",
"test": "nx test",
"sample-echo-bot:serve": "nx run sample-echo-bot:serve",
"publish:version": "nx run grammy-nestjs:version",
"publish:npm": "nx run grammy-nestjs:deploy --no-build"
},
"bugs": "https://github.com/grammyjs/nestjs/issues",
"dependencies": {
"@nestjs/common": "^10.0.2",
"@nestjs/core": "^10.0.2",
"@nestjs/platform-express": "^10.0.2",
"axios": "^1.0.0",
"firebase": "^9.9.3",
"firebase-admin": "latest",
"firebase-functions": "latest",
"grammy": "^1.19.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"tslib": "^2.3.0",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@nestjs/schematics": "^10.0.1",
"@nestjs/testing": "^10.0.2",
"@nx/eslint-plugin": "16.9.1",
"@nx/jest": "16.9.1",
"@nx/js": "16.9.1",
"@nx/linter": "16.9.1",
"@nx/nest": "16.9.1",
"@nx/node": "16.9.1",
"@nx/webpack": "16.9.1",
"@nx/workspace": "16.9.1",
"@types/jest": "^29.4.0",
"@types/node": "~18.7.1",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "~8.46.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-canonical": "^4.12.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sonarjs": "^0.21.0",
"eslint-plugin-unicorn": "^48.0.1",
"husky": "^8.0.3",
"jest": "^29.4.1",
"jest-environment-node": "^29.4.1",
"lint-staged": "^14.0.1",
"nx": "16.9.1",
"prettier": "^3.0.3",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"typescript": "^5.2.2",
"verdaccio": "^5.0.4"
},
"nx": {
"includedScripts": []
},
"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"
],
"lint-staged": {
"*.{js,css,scss,md,ts,html,graphql}": [
"nx affected:lint --fix --files"
]
},
"repository": "grammyjs/nestjs"
}