-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.74 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"type": "module",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "1.1.0",
"@sentry/node": "^7.110.0",
"@sentry/profiling-node": "^7.110.0",
"axios": "^1.6.8",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dotenv": "^16.3.1",
"express": "^4.19.2",
"fluent-ffmpeg": "2.1.2",
"freezer-midjourney-api": "^4.0.6",
"groupdocs-conversion-cloud": "^24.4.0",
"jsonwebtoken": "^9.0.2",
"midjourney": "^4.3.17",
"mysql2": "^3.9.3",
"nanoid": "^5.0.7",
"node-fetch": "^3.3.2",
"node-telegram-bot-api": "^0.61.0",
"openai": "4.33.0",
"path": "^0.12.7",
"payok": "^2.0.0",
"request": "^2.88.2",
"sequelize": "^6.37.1",
"sqlite3": "^5.1.7",
"stripe": "^15.5.0",
"tiktoken": "^1.0.14",
"timestamp-conv": "^3.0.0",
"translate.js": "^1.3.2"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.0.1",
"prettier": "^3.2.5"
},
"name": "backend-bot-ai",
"version": "1.1.2",
"main": "app.js",
"scripts": {
"start": "CI=false && node app.js",
"dev": "nodemon app.js",
"lint": "eslint . --ext .js --fix",
"format": "prettier --write .",
"server:up": "pm2 start app.js --name node-mj --watch",
"server:restart": "pm2 restart app.js",
"server:down": "pm2 delete app.js"
},
"keywords": [
"midjourney",
"node",
"telegram",
"bot"
],
"author": "aronbergman | pirajoke",
"license": "MIT",
"description": "A Telegram bot created in Node.js using the unofficial Midjourney Node.js client."
}