-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.5 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
{
"name": "ballebot",
"version": "2.0.1",
"main": "src/index.js",
"type": "module",
"repository": "https://github.com/Ballerini-Server/BalleBot.git",
"author": "Tauz tauasantops@gmail.com",
"license": "MIT",
"scripts": {
"dev": "nodemon src/index.js",
"commit": "git add . && cz && git push",
"commit:partial": "cz"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"prettier --check",
"prettier --write",
"eslint --fix",
"git add"
]
},
"dependencies": {
"axios": "^0.25.0",
"discord.js": "^13.4.0",
"dotenv": "^10.0.0",
"imgur": "^1.0.2",
"imgur-upload": "^0.1.2",
"jimp": "^0.16.0",
"moment": "^2.29.4",
"quick.db": "^7.1.3"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"commitizen": "^1.0.4",
"cz-conventional-changelog": "^3.0.1",
"eslint": "^7.28.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"init": "0.1.2",
"lint-staged": "^11.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.1"
},
"peerDependencies": {
"eslint-config-airbnb-base": "^14.2.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}