generated from neumanf/grammy-vercel-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.43 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
{
"name": "grammy-vercel-boilerplate",
"version": "1.0.0",
"description": "Grammy boilerplate to develop and host telegram bots on Vercel",
"main": "api/index.ts",
"scripts": {
"build": "tsc",
"dev": "nodemon src/index.ts",
"lint": "eslint . --cache --ext .ts,.js",
"format": "prettier --write 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neumanf/grammy-vercel-boilerplate.git"
},
"keywords": [
"boilerplate",
"telegram-bot",
"vercel",
"vercel-now",
"grammy"
],
"author": "neumanf",
"license": "MIT",
"bugs": {
"url": "https://github.com/neumanf/grammy-vercel-boilerplate/issues"
},
"homepage": "https://github.com/neumanf/grammy-vercel-boilerplate#readme",
"dependencies": {
"@grammyjs/ratelimiter": "^1.1.4",
"@types/google-spreadsheet": "^3.1.5",
"google-spreadsheet": "^3.2.0",
"grammy": "^1.6.1"
},
"devDependencies": {
"@types/node": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"dotenv": "^10.0.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}