-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.45 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
{
"name": "voice-ai-helper",
"description": "Telegram Bot which listens your voice and sends you a voice response from YandexGPT",
"license": "UNLICENSED",
"dependencies": {
"@grammyjs/storage-free": "^2.4.1",
"@grammyjs/storage-typeorm": "^2.4.2",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"grammy": "^1.20.3",
"https-proxy-agent": "^7.0.2",
"openai": "^4.26.0",
"prettier": "^3.2.4",
"reflect-metadata": "^0.2.2",
"remove-markdown": "^0.5.0",
"sqlite3": "^5.1.7",
"telegraf-middleware-console-time": "^2.1.0",
"typeorm": "^0.3.20",
"typescript": "^5.3.3",
"yandex-speech-promise": "^1.3.3"
},
"devDependencies": {
"@types/remove-markdown": "^0.3.4",
"nodemon": "^3.0.3",
"ts-node": "^10.9.2"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"start:dev": "nodemon src/main.ts",
"typeorm": "typeorm-ts-node-commonjs -d src/data-source.migrations.ts",
"migration:create": "yarn run typeorm migration:create",
"migration:generate": "yarn run typeorm migration:generate",
"migration:run": "yarn run typeorm migration:run",
"migration:revert": "yarn run typeorm migration:revert",
"lint:fix": "eslint --ext ts --fix ."
}
}