-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 956 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 956 Bytes
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
{
"name": "flowweave-telegram-bot",
"version": "1.0.0",
"description": "FlowWeave Telegram Bot Interface",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"watch": "nodemon src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.12.1",
"dependencies": {
"@prisma/client": "6.10.1",
"axios": "^1.6.7",
"dotenv": "^16.4.1",
"express": "^5.1.0",
"google-auth-library": "^10.1.0",
"googleapis": "^144.0.0",
"node-cron": "^3.0.3",
"posthog-node": "^5.1.1",
"telegraf": "^4.15.3"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^20.11.16",
"nodemon": "^3.0.3",
"prisma": "6.10.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}