This repository has been archived by the owner on May 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.13 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
78
79
{
"name": "phibi-bot",
"version": "1.0.0",
"description": "Phibi 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": [
"Phibi Bot"
],
"author": "tnfAngel",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"canvas": "^2.9.1",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"mongoose": "^6.3.2",
"winston": "^3.7.2"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@types/eslint": "^8.4.1",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"git-cz": "^4.8.0",
"husky": "^7.0.4",
"lint-staged": "^12.4.1",
"nodemon": "^2.0.16",
"npm-check-updates": "^12.5.11",
"prettier": "2.6.2",
"ts-node": "^10.7.0",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
},
"resolutions": {
"erlpack": "patch:erlpack@*#./.yarn/patches/erlpack-node16-support.patch"
},
"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": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/tnfAngel-Development/Phibi-bot.git"
},
"bugs": {
"url": "https://github.com/tnfAngel-Development/Phibi-bot/issues"
},
"homepage": "https://github.com/tnfAngel-Development/Phibi-bot#readme"
}