-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.24 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
44
45
46
47
48
49
50
{
"name": "gptitor",
"version": "1.4.0",
"description": "",
"main": "src/index.ts",
"type": "module",
"scripts": {
"dev": "ts-node src/index.ts",
"dev:watch": "nodemon --exec ts-node src/index.ts",
"build": "tsc",
"lint": "tsc -noEmit && eslint src/**",
"test": "jest",
"start": "node --loader ts-node/esm ./src/index.ts"
},
"engines": {
"node": "18.x"
},
"author": "",
"license": "ISC",
"dependencies": {
"@telegraf/session": "^2.0.0-beta.6",
"debug": "^4.3.4",
"dotenv": "^16.2.0",
"express": "^4.18.2",
"fluent-ffmpeg": "^2.1.2",
"midjourney": "^4.0.98",
"node-fetch": "^2.6.11",
"openai": "^4.24.1",
"redis": "^4.6.7",
"sharp": "^0.32.1",
"telegraf": "^4.12.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"winston": "^3.11.0"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.17",
"@types/fluent-ffmpeg": "^2.1.21",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.3",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.1"
}
}