-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 812 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 812 Bytes
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
{
"name": "beach-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"start:dev": "nodemon index.js --ignore '*.json'",
"lint": "npx prettier --write ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/opus": "^0.8.0",
"discord-ytdl-core": "^5.0.2",
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"ffmpeg-static": "^4.2.8",
"lowdb": "^1.0.0",
"prettier": "^2.2.1",
"ytdl-core": "^4.5.0"
},
"devDependencies": {
"husky": "^5.1.3",
"nodemon": "^2.0.7",
"pretty-quick": "^3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"engines": {
"node": ">=14.15.5"
}
}