-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
40 lines (40 loc) · 1.22 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
{
"name": "ts-chat-gpt-telegram-bot",
"description": "ChatGpt Telegram Bot",
"version": "1.0.0",
"author": "Nikoleta Menyhartova",
"license": "MIT",
"main": "index.js",
"dependencies": {
"axios": "^1.6.8",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"express": "^4.18.3",
"inquirer": "^9.2.16",
"node-telegram-bot-api": "^0.65.1",
"openai": "^4.28.4",
"redis": "^4.6.13",
"winston": "^3.12.0"
},
"scripts": {
"start": "node dist/index.js",
"build": "esbuild src/index.ts --platform=node --bundle --minify --outfile=dist/index.js",
"local": "esbuild scripts/local-chat-app.ts --platform=node --bundle --minify --outfile=dist/local-chat-app.ts && node dist/local-chat-app.ts",
"test": "jest"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.25",
"@types/node-telegram-bot-api": "^0.64.3",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2"
}
}