-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.6 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.6 KB
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
{
"name": "phoenix-bot",
"version": "1.1.0",
"description": "Bot for Discord app",
"main": "index.js",
"type": "module",
"scripts": {
"test": "jest --verbose",
"build": "tsc",
"dev": "concurrently \"tsc\" \"nodemon --watch 'src/**/*' --exec 'node --experimental-specifier-resolution=node ./dist/index.js'\"",
"start": "tsc && node --experimental-specifier-resolution=node ./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GabRayz/Phoenix-Bot.git"
},
"author": "GabRay",
"license": "ISC",
"bugs": {
"url": "https://github.com/GabRayz/Phoenix-Bot/issues"
},
"homepage": "https://github.com/GabRayz/Phoenix-Bot#readme",
"dependencies": {
"@discordjs/opus": "^0.8.0",
"@discordjs/voice": "^0.10.0",
"@sentry/node": "^7.4.1",
"@sentry/tracing": "^7.4.1",
"discord.js": "^13.8.1",
"express": "^4.18.1",
"ffmpeg": "^0.0.4",
"ffmpeg-static": "^4.4.1",
"fluent-ffmpeg": "^2.1.2",
"google-auth-library": "^8.0.3",
"googleapis": "^104.0.0",
"libsodium-wrappers": "^0.7.10",
"m3u8stream": "^0.8.6",
"node-fetch": "^3.2.6",
"opusscript": "^0.0.8",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1",
"winston": "^3.8.1",
"youtube-search-api": "^1.1.0",
"ytdl-core": "^4.11.0"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/node": "^18.0.0",
"concurrently": "^7.2.2",
"jest": "^28.1.0",
"nodemon": "^2.0.18",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
}
}