-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.07 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
{
"name": "discord-bot",
"private": true,
"scripts": {
"clean:branch": "git fetch --prune && git branch | grep -v '^*' | xargs git branch -D",
"clean:cache": "turbo run clean",
"build": "turbo run build",
"dev:basic-bot": "turbo run dev --filter=basic-bot",
"dev:music-bot": "turbo run dev --filter=music-bot",
"lint": "turbo run lint",
"format": "turbo run format",
"prepare": "husky install",
"preinstall": "corepack enable"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"nano-staged": "^0.8.0",
"prettier": "^3.3.2",
"turbo": "^2.0.9",
"typescript": "5.5.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.10.0"
},
"lint-staged": {
"*.{js,ts,tsx,json,css,md}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"ts-node": "^10.9.2"
}
}