-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 851 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 851 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
{
"name": "vanish-now",
"version": "0.1.0",
"description": "Vanish Now - Telegram Visa Appointment Assistant (skeleton)",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"start": "node dist/index.js",
"lint": "eslint . --ext .ts",
"migrate": "node ./scripts/run_migrations.js"
},
"dependencies": {
"grammy": "^1.12.0",
"dotenv": "^16.0.0",
"pg": "^8.10.0",
"ioredis": "^5.3.2",
"bullmq": "^5.65.1",
"axios": "^1.4.0",
"playwright": "^1.40.0",
"express": "^4.18.2",
"fastify": "^4.20.0",
"jsonwebtoken": "^9.0.0",
"winston": "^3.8.2"
},
"devDependencies": {
"typescript": "^5.5.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"@types/node": "^20.3.1",
"@types/pg": "^8.6.6"
}
}