-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 904 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 904 Bytes
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",
"version": "1.0.0",
"main": "src/index.ts",
"type": "module",
"scripts": {
"start": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"fix": "biome check --write --unsafe",
"check": "biome check",
"prepare": "husky",
"pre-commit": "lint-staged"
},
"dependencies": {
"@types/he": "^1.2.3",
"cron": "^4.1.0",
"discord.js": "14.25.1",
"dotenv": "^17.0.0",
"googleapis": "^169.0.0",
"he": "^1.2.0",
"mysql2": "^3.13.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@types/node": "^24.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"tsx": "^4.19.3",
"typescript": "^5.7.3"
},
"lint-staged": {
"*": [
"biome check --write --unsafe --no-errors-on-unmatched --files-ignore-unknown=true"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}