-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.05 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.05 KB
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
{
"name": "telegram-issue-bot",
"version": "1.0.0",
"description": "Telegram bot for collecting issues and complaints from AI creators with Asana integration",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"vercel-build": "tsc",
"deploy": "./vercel-deploy.sh",
"lint": "eslint src --ext .ts",
"format": "prettier --write 'src/**/*.ts'"
},
"keywords": [
"telegram",
"bot",
"asana",
"issue-tracking"
],
"author": "",
"license": "MIT",
"dependencies": {
"telegraf": "^4.15.0",
"express": "^4.18.2",
"asana": "^3.0.7",
"dotenv": "^16.3.1",
"axios": "^1.6.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"@vercel/node": "^3.0.11",
"typescript": "^5.3.2",
"tsx": "^4.7.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"prettier": "^3.1.0"
},
"engines": {
"node": ">=18.0.0"
}
}