-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.34 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
{
"name": "bot4lads",
"author": "Guilherme Esdras",
"description": "A Discord BOT written in TypeScript for LADS (Laboratio de Analise e Desenvolvimento de Sistemas) of IFPB Campus Campina Grande.",
"repository": "www.github.com/GuilhermeEsdras/bot4LADS",
"license": "MIT",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "ts-node-dev --respawn --transpile-only --poll ./src/index.ts",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix"
},
"dependencies": {
"@discordjs/opus": "0.6.0",
"axios": "^0.21.4",
"discord.js": "12.5.1",
"discordjs-ytdl-advanced": "0.1.6",
"dotenv": "^10.0.0",
"express": "4.17.1",
"ffmpeg": "0.0.4",
"fluent-ffmpeg": "2.1.2",
"glob": "^7.2.0",
"moment": "^2.29.1",
"prism-media": "1.3.2",
"yarn": "^1.22.11",
"ytdl-core": "4.9.1",
"ytdl-core-discord": "^1.3.1"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.0",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.3"
}
}