-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.84 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "avbot",
"version": "4.0.0",
"description": "AvBot",
"author": "Rahul Singh <[email protected]>",
"private": true,
"type": "module",
"main": "build/main.js",
"scripts": {
"build": "tsc",
"dev": "node --loader ts-node/esm/transpile-only src/main.ts",
"serve": "node build/main.js",
"lint": "eslint . --ext .ts --max-warnings 0",
"lint-fix": "eslint . --ext .ts --fix",
"prettier": "prettier . -w",
"start_js": "npm run build & node build/main.js",
"restart_p2": "pm2 restart ../ecosystem/ecosystem.config.js --only avbot",
"restart_p2_debug": "pm2 restart ../ecosystem/ecosystem.config.js --only avbot -- -debug",
"start_p2": "pm2 start ../ecosystem/ecosystem.config.js --only avbot",
"start_p2_debug": "pm2 start ../ecosystem/ecosystem.config.js --only avbot -- -debug",
"build_and_start": "npm run build & npm run restart_p2",
"build_and_start_debug": "npm run build & npm run restart_p2_debug"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drph4nt0m/avbot.git"
},
"bugs": {
"url": "https://github.com/drph4nt0m/avbot/issues"
},
"homepage": "https://github.com/drph4nt0m/avbot#readme",
"dependencies": {
"@discordjs/opus": "^0.8.0",
"@discordjs/voice": "^0.11.0",
"@discordx/importer": "^1.1.10",
"@discordx/pagination": "^3.0.0",
"@discordx/utilities": "^5.0.0",
"@overnightjs/core": "^1.7.6",
"@types/common-tags": "^1.8.1",
"axios": "^0.27.2",
"common-tags": "^1.8.2",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"dayjs": "^1.11.5",
"discord-api-types": "^0.37.9",
"discord.js": "^14.3.0",
"discordx": "^11.1.12",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"ffmpeg-static": "^5.1.0",
"http-status-codes": "^2.2.0",
"immutable": "^4.1.0",
"libsodium-wrappers": "^0.7.10",
"mongodb": "^4.9.1",
"node-gtts": "^2.0.2",
"opusscript": "0.0.8",
"reflect-metadata": "^0.1.13",
"remove-accents": "^0.4.2",
"tmp": "^0.2.1",
"toad-scheduler": "^1.6.1",
"tsyringe": "^4.7.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.7.16",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"prettier": "2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"engines": {
"node": ">=16.17.0",
"npm": ">=8.11.0"
}
}