-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.31 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.31 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
{
"name": "task-manager",
"version": "1.0.0",
"description": "Telegram bot for task management with AI-powered parsing",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "tsx src/index.ts",
"build": "tsc",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"format": "biome format --write src/",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:push": "prisma db push",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.4.1",
"dependencies": {
"@grammyjs/conversations": "^2.1.1",
"@prisma/adapter-pg": "^7.4.2",
"@prisma/client": "^7.4.2",
"dotenv": "^17.3.1",
"geo-tz": "^8.1.5",
"grammy": "^1.41.1",
"node-cron": "^4.2.1",
"openai": "^6.25.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.5",
"@types/node": "^25.3.3",
"@types/node-cron": "^3.0.11",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"prisma": "^7.4.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.ts": [
"biome check --write --no-errors-on-unmatched"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"@prisma/engines",
"esbuild",
"prisma",
"@biomejs/biome"
]
}
}