-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 807 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 807 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
36
37
38
39
{
"name": "telegram-plaid-bot",
"version": "1.0.0",
"description": "Telegram bot integrated with Plaid banking API",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"init-db": "node src/database/init.js"
},
"keywords": [
"telegram",
"bot",
"plaid",
"banking",
"finance"
],
"author": "",
"license": "MIT",
"dependencies": {
"telegraf": "^4.15.0",
"express": "^5.2.1",
"plaid": "^18.0.0",
"pg": "^8.22.0",
"dotenv": "^17.4.2",
"express-rate-limit": "^8.5.2",
"helmet": "^7.1.0",
"cors": "^2.8.6",
"winston": "^3.11.0",
"axios": "^1.18.1",
"stripe": "^22.3.0"
},
"devDependencies": {
"nodemon": "^3.1.14"
},
"engines": {
"node": ">=18.0.0"
}
}