-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.59 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.59 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
51
52
53
54
55
56
57
{
"name": "rss-skull-bot",
"version": "0.5.0",
"description": "Modern RSS to Telegram Bot with Reddit support and bilingual commands",
"main": "dist/main.js",
"type": "module",
"author": {
"name": "Pablo Murad",
"email": "runawaydevil@pm.me",
"url": "https://github.com/runawaydevil"
},
"license": "MIT",
"scripts": {
"dev": "tsx watch src/main.ts",
"build": "tsc",
"start": "node dist/main.js",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:deploy": "prisma migrate deploy",
"db:reset": "prisma migrate reset --force",
"lint": "biome check .",
"lint:ci": "biome check . || exit 0",
"lint:fix": "biome check --apply .",
"test": "vitest --run --passWithNoTests",
"test:watch": "vitest",
"test:coverage": "vitest --coverage",
"docker:build": "docker build -t rss-skull-bot:0.5.0 .",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"setup": "npm install && npm run db:generate"
},
"dependencies": {
"@grammyjs/runner": "^2.0.3",
"@paralleldrive/cuid2": "^2.2.2",
"@prisma/client": "^6.17.0",
"bullmq": "^5.13.2",
"dotenv": "^17.2.3",
"fastify": "^4.28.1",
"grammy": "^1.29.0",
"ioredis": "^5.4.1",
"prisma": "^6.17.0",
"rss-parser": "^3.13.0",
"sqlite3": "^5.1.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@types/node": "^20.16.10",
"@types/sqlite3": "^3.1.11",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"vitest": "^4.0.4"
},
"engines": {
"node": ">=20.0.0"
}
}