-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
{
"name": "joi",
"version": "1.0.0",
"description": "Discord bot set to be deployed via GCP",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "concurrently \"tsc -w\" \"nodemon build/index.js\"",
"deploy": "npm run build && npm run start",
"create-env": "printenv > .env"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nerooc/joi.git"
},
"author": "nerooc",
"license": "ISC",
"bugs": {
"url": "https://github.com/nerooc/joi/issues"
},
"homepage": "https://github.com/nerooc/joi#readme",
"dependencies": {
"@discordjs/builders": "^1.4.0",
"@discordjs/opus": "^0.8.0",
"@discordjs/rest": "^1.4.0",
"@discordjs/voice": "^0.14.0",
"@google-cloud/firestore": "^6.4.1",
"concurrently": "^7.6.0",
"discord-api-types": "^0.37.20",
"discord-player": "^5.3.2",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"ffmpeg-static": "^5.1.0",
"nodemon": "^2.0.20",
"openai": "^3.1.0"
},
"devDependencies": {
"@types/node": "^18.11.10",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}