-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.47 KB
/
package.json
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": "carneloot-bot",
"version": "1.0.0",
"description": "A telegram bot to do general stuff for my likings",
"main": "src/index.ts",
"author": "Matheus Carnelutt ([email protected])",
"license": "MIT",
"type": "module",
"scripts": {
"db:migrate": "bun run scripts/migrate.mjs",
"build:dev": "tsc",
"dev": "nodemon",
"start": "bun run src/index.ts",
"set-webhook": "curl $BOT_URL/api/set-webhook",
"test": "bun test"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@total-typescript/ts-reset": "^0.5.1",
"@types/js-quantities": "^1.6.6",
"@types/ms": "^0.7.34",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"bun-types": "^1.1.0",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.20.14",
"nodemon": "^3.1.0",
"typescript": "^5.4.3"
},
"dependencies": {
"@grammyjs/conversations": "^1.2.0",
"@grammyjs/emoji": "^1.2.0",
"@grammyjs/menu": "^1.2.1",
"@hono/zod-validator": "^0.2.2",
"@libsql/client": "^0.5.2",
"@paralleldrive/cuid2": "^2.2.2",
"@trigger.dev/hono": "^2.3.19",
"@trigger.dev/sdk": "^2.3.19",
"@vvo/tzdb": "^6.125.0",
"axios": "^1.6.7",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"drizzle-orm": "^0.29.4",
"grammy": "^1.21.1",
"hono": "^4.5.0",
"js-quantities": "^1.8.0",
"ms": "^2.1.3",
"neverthrow": "^6.1.0",
"table": "^6.8.1",
"tiny-invariant": "^1.3.3",
"tinyduration": "^3.3.0",
"zod": "^3.22.4"
},
"trigger.dev": {
"endpointId": "carneloot-bot"
}
}