forked from TinyHippoLabs/jukebot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.1 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
{
"name": "jukebot",
"description": "Simple Discord music bot.",
"main": "dist/app.js",
"version": "0.0.1",
"private": true,
"license": "",
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/Desocode/jukebot.git"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"start": "node dist/app.js",
"test": "mocha --exit test/*.test.js",
"gcp-build": "tsc -p .",
"deploy": "gcloud app deploy",
"create-env": "printenv > .env"
},
"dependencies": {
"@google-cloud/storage": "^4.1.3",
"discord.js": "^11.5.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"ffbinaries": "^1.1.4",
"ffmpeg": "0.0.4",
"node-opus": "^0.3.3",
"tslint": "^5.20.0",
"typescript": "^3.6.4",
"youtube-search": "^1.1.4",
"ytdl": "^0.13.1",
"ytdl-core-discord": "github:amishshah/ytdl-core-discord"
},
"devDependencies": {
"@types/express": "^4.17.1",
"mocha": "^6.1.4",
"supertest": "^4.0.2"
}
}