-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.54 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.54 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
45
46
{
"name": "agentic-backend",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"db:clean": "ts-node src/migrations/clean.ts",
"db:truncate": "ts-node src/migrations/clean.ts truncate",
"db:reset": "ts-node src/migrations/clean.ts reset",
"migrate:up": "npm run build && node dist/migrations/run.js up",
"migrate:down": "npm run build && node dist/migrations/run.js down",
"worker": "node dist/services/workers/index.js",
"telegram:setup": "export $(grep -v '^#' .env | xargs) && curl -s -X POST \"https://api.telegram.org/bot$TELEGRAM_BOT_TOKEN/setWebhook?url=$TELEGRAM_WEBHOOK_BASE_URL/api/v1/integrations/telegram/webhook/$TELEGRAM_WEBHOOK_SECRET\""
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "Workflow automation backend supporting Web2 and Web3",
"dependencies": {
"@privy-io/server-auth": "^1.16.0",
"axios": "^1.6.0",
"bullmq": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"ethers": "^6.14.4",
"express": "^5.2.1",
"helmet": "^8.1.0",
"joi": "^18.0.2",
"nodemailer": "^7.0.12",
"pg": "^8.16.3",
"pino": "^10.1.0",
"pino-pretty": "^13.1.3",
"redis": "^5.10.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.0.3",
"@types/nodemailer": "^6.4.14",
"@types/pg": "^8.16.0"
}
}