-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.06 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "bee7",
"version": "1.0.0",
"description": "A multipurpose Discord bot filled with everything you could ever need",
"main": "dist/Bot.js",
"scripts": {
"dev": "nodemon dist/Bot.js",
"build": "tsc",
"start": "node dist/Bot.js",
"watch": "tsc -w"
},
"dependencies": {
"@discordjs/opus": "^0.5.0",
"axios": "^0.21.1",
"dayjs": "^1.10.4",
"discord-akairo": "1Computer1/discord-akairo",
"discord-paginationembed": "^2.1.0",
"discord-player": "^4.0.6",
"discord-uno": "^2.0.21",
"discord.js": "discordjs/discord.js",
"mongoose": "^5.12.7",
"ms": "^2.1.3",
"ts-node": "^10.0.0",
"vacefron": "^3.4.0",
"winston": "^3.3.3",
"ytdl-core": "latest"
},
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-angular": "12.1.4",
"@types/common-tags": "^1.8.0",
"@types/ms": "^0.7.31",
"@types/node": "^15.0.2",
"@types/node-fetch": "^2.5.10",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*{.js,.ts,.json,.d.ts,.md,.yml,.yaml}": "prettier --write"
},
"commitlint": {
"extends": [
"@commitlint/config-angular"
],
"rules": {
"scope-case": [
2,
"always",
"pascal-case"
],
"type-enum": [
2,
"always",
[
"chore",
"feat",
"fix",
"revert",
"style",
"test",
"deps",
"docs",
"ci",
"test"
]
]
}
}
}