-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.07 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.07 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
{
"private": true,
"type": "module",
"license": "AGPL-3.0-or-later",
"scripts": {
"start": "tsc-watch --onSuccess \"tsx ./src/bin/run.ts\"",
"build": "npx tsc",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.ts\""
},
"dependencies": {
"@grammyjs/conversations": "^1.2.0",
"@grammyjs/i18n": "^1.1.2",
"@grammyjs/parse-mode": "^1.11.1",
"@grammyjs/storage-prisma": "^2.4.2",
"@prisma/client": "^6.2.1",
"base-x": "^4.0.0",
"commander": "^12.1.0",
"dayjs": "^1.11.12",
"grammy": "^1.41.0",
"grammy-edit-or-reply": "^1.2.0",
"grammy-tg-components": "^0.0.2",
"pino": "^9.3.2",
"pino-pretty": "^11.2.2",
"tsx": "^4.19.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.10.10",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^9.18.0",
"prettier": "^3.3.3",
"prisma": "^6.2.1",
"tsc-watch": "^6.2.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.21.0"
}
}