-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.08 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.08 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "github-bot",
"type": "module",
"private": true,
"packageManager": "pnpm@10.26.0",
"imports": {
"#config": [
"./src/config/index.ts"
],
"#db": [
"./src/db/index.ts"
],
"#bot": [
"./src/bot/bot.ts"
],
"#github": [
"./src/lib/github/index.ts"
],
"#webhooks": [
"./src/lib/github/webhooks/index.ts"
],
"#telegram": [
"./src/lib/telegram/index.ts"
]
},
"scripts": {
"dev": "node --watch --env-file-if-exists=.env src/index.ts",
"start": "node --env-file-if-exists=.env src/index.ts",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"typecheck": "tsc",
"smee": "smee",
"db:studio": "drizzle-kit studio",
"db:migrate": "drizzle-kit migrate",
"db:generate": "drizzle-kit generate",
"gh:discover": "node --env-file-if-exists=.env scripts/gh-discover.ts",
"prepare": "simple-git-hooks && git config --local commit.template '.gitmessage'"
},
"dependencies": {
"@fullstacksjs/config": "1.1.0",
"@fullstacksjs/toolbox": "4.21.0",
"@grammyjs/auto-retry": "2.0.2",
"@grammyjs/commands": "1.2.0",
"@grammyjs/i18n": "1.1.2",
"@grammyjs/ratelimiter": "1.2.1",
"@hono/node-server": "1.19.6",
"@libsql/client": "0.15.15",
"@octokit/openapi-webhooks-types": "12.0.3",
"@octokit/webhooks": "14.1.3",
"drizzle-orm": "0.44.7",
"grammy": "1.38.3",
"hono": "4.10.6",
"octokit": "5.0.5",
"zod": "4.1.12"
},
"devDependencies": {
"@commitlint/cli": "20.1.0",
"@commitlint/config-conventional": "20.0.0",
"@commitlint/types": "20.0.0",
"@cspell/dict-fa-ir": "4.0.5",
"@fullstacksjs/eslint-config": "13.10.0",
"@fullstacksjs/tsconfig": "2.0.0",
"@types/node": "24.10.1",
"cspell": "9.3.2",
"drizzle-kit": "0.31.7",
"eslint": "9.39.1",
"lint-staged": "16.2.7",
"prettier": "3.6.2",
"simple-git-hooks": "2.13.1",
"smee-client": "5.0.0",
"typescript": "5.9.3",
"vitest": "4.0.16"
},
"volta": {
"node": "24.12.0"
},
"version": "1.1.1"
}