-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
58 lines (58 loc) · 1.76 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
{
"name": "grammy-vercel-boilerplate",
"version": "1.0.0",
"description": "Grammy boilerplate to develop and host telegram bots on Vercel",
"main": "dist/boy.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon --exec npx ts-node ./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/conversations": "^1.1.1",
"axios": "^1.5.0",
"base64url": "^3.0.1",
"bcrypt": "^5.1.0",
"dotenv": "^10.0.0",
"express": "^4.18.2",
"grammy": "^1.6.1",
"ps-node": "^0.1.6",
"telegram": "^2.16.4",
"validator": "^13.9.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.17",
"@types/node": "^17.0.5",
"@types/ps-node": "^0.1.1",
"@types/validator": "^13.7.17",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"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"
}
}