-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.6 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
{
"name": "bucket-hat-bot",
"version": "1.0.0",
"description": "A general purpose Discord Bot",
"main": "index.js",
"type": "module",
"scripts": {
"start": "cd build && node index.js",
"dev": "cd build && NODE_ENV=dev nodemon -e js index.js",
"test": "NODE_ENV=test mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justinmok/bucket-hat.git"
},
"author": "Justin Mok",
"license": "MIT",
"bugs": {
"url": "https://github.com/justinmok/bucket-hat/issues"
},
"homepage": "https://github.com/justinmok/bucket-hat#readme",
"nodemonConfig": {
"ignore": [
"*.json"
],
"delay": "1000"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true,
"semi": true,
"bracketSameLine": true
},
"dependencies": {
"@discordjs/builders": "^1.6.3",
"@discordjs/rest": "^1.7.1",
"@discordjs/voice": "^0.16.0",
"@google-cloud/firestore": "^4.15.1",
"@types/node": "^14.18.47",
"bufferutil": "^4.0.7",
"discord-api-types": "^0.37.42",
"discord.js": "^14.11.0",
"ffmpeg": "0.0.4",
"gaxios": "^4.3.3",
"libsodium-wrappers": "^0.7.11",
"node-cron": "^3.0.2",
"openai": "^3.2.1",
"spotify-url-info": "^2.2.9",
"typescript": "^4.9.5",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1",
"ytsr": "^3.8.2"
},
"devDependencies": {
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.8.0",
"mocha": "^8.4.0",
"nodemon": "^2.0.22",
"opusscript": "0.0.8",
"prettier": "^2.8.8",
"rewire": "^5.0.0"
}
}