-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.44 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.44 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": "expensesbot",
"version": "1.0.0",
"description": "Telegram expense tracker with receipt OCR, AI assistant, and analytics",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest",
"lint": "eslint src",
"format": "prettier --write src"
},
"keywords": [
"telegram",
"expense",
"tracker",
"ocr"
],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/multipart": "^9.4.0",
"@fastify/rate-limit": "^10.3.0",
"@google/generative-ai": "^0.11.5",
"axios": "^1.6.2",
"bcrypt": "^6.0.0",
"better-sqlite3": "^9.2.2",
"chart.js": "^4.4.1",
"city-timezones": "^1.3.3",
"dotenv": "^16.3.1",
"fastify": "^5.8.2",
"fastify-plugin": "^5.1.0",
"fastify-type-provider-zod": "^5.1.0",
"grammy": "^1.25.0",
"jose": "^6.2.1",
"papaparse": "^5.4.1",
"pdfkit": "^0.13.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/better-sqlite3": "^7.6.8",
"@types/node": "^20.10.6",
"@types/papaparse": "^5.3.14",
"@types/pdfkit": "^0.17.4",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@vitest/ui": "^1.1.0",
"eslint": "^8.56.0",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
}
}