-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.72 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.72 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "dj-pendrive-2",
"version": "1.0.0",
"description": "Bot de música inteligente em Portugues para Discord",
"main": "index.ts",
"scripts": {
"start": "node dist/index.js",
"build": "babel src --out-dir dist --no-copy-ignored",
"dev": "nodemon --watch 'src/' --exec 'ts-node src/index.ts' -e ts",
"test": "jest"
},
"repository": "https://github.com/wellingtonsilverio/dj-pendrive-2",
"keywords": [
"bot",
"discord",
"discord.js",
"inteligente",
"ia",
"portugues",
"musica",
"playlist",
"music"
],
"author": "Wellington Silverio",
"license": "MIT",
"bugs": {
"url": "https://github.com/wellingtonsilverio/dj-pendrive-2/issues"
},
"homepage": "https://github.com/wellingtonsilverio/dj-pendrive-2#readme",
"private": false,
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.14",
"@babel/node": "^7.13.13",
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"dotenv": "^8.2.0",
"eslint": "^7.23.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "2.2.1",
"pretty-quick": "^3.1.0",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@discordjs/opus": "^0.5.0",
"discord.js": "^12.5.2",
"ffmpeg": "^0.0.4",
"fluent-ffmpeg": "^2.1.2",
"ytdl-core": "^4.5.0"
}
}