This repository has been archived by the owner on Dec 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.76 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
{
"name": "brawl-stats",
"version": "1.0.0",
"description": "BrawlStats Bot",
"main": "src/index.ts",
"scripts": {
"start": "NODE_ENV=production ts-node src/index.ts",
"start:dev": "NODE_ENV=development yarn nodemon src/index.ts",
"lint": "yarn eslint .",
"fix": "yarn eslint --fix .",
"pretty": "yarn prettier --write .",
"postinstall": "yarn run husky install",
"commit": "lint-staged && yarn git-cz",
"check": "yarn run ncu -p yarn --color",
"update": "yarn run ncu -i -p yarn --color"
},
"keywords": [
"BrawlStats Bot"
],
"author": "tnfAngel",
"license": "ISC",
"dependencies": {
"brawlstats": "^2.1.1",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"table": "^6.8.0",
"winston": "^3.6.0"
},
"devDependencies": {
"@types/eslint": "^8.4.1",
"@types/node": "^17.0.23",
"@types/prettier": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"git-cz": "^4.8.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"nodemon": "^2.0.15",
"npm-check-updates": "^12.5.5",
"prettier": "2.6.1",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts,tsx}": [
"prettier --config .prettierrc --write",
"eslint --fix \"src/**/*.{ts,tsx}\"",
"eslint \"src/**/*.{ts,tsx}\""
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"packageManager": "yarn@3.1.0"
}