-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.35 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
47
48
49
50
{
"name": "teleflow-backend",
"version": "0.1.0",
"description": "Open-source backend providing REST API, OpenAPI, Webhook, and Event Streaming to control Telegram User Account (UserBot) via MTProto",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"lint": "eslint src/",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@fastify/cors": "^10.0.2",
"@fastify/helmet": "^13.0.1",
"@fastify/jwt": "^9.0.2",
"@fastify/rate-limit": "^10.2.1",
"@fastify/swagger": "^9.4.2",
"@fastify/swagger-ui": "^5.2.2",
"@fastify/websocket": "^11.0.2",
"@prisma/client": "^6.9.0",
"dotenv": "^16.5.0",
"fastify": "^5.3.3",
"input": "^1.0.1",
"nanoid": "^5.1.5",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"telegram": "^2.26.16",
"zod": "^3.25.3"
},
"devDependencies": {
"@types/node": "^22.15.0",
"eslint": "^9.25.0",
"prisma": "^6.9.0",
"tsc-alias": "^1.8.11",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
}
}