-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.08 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.08 KB
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
{
"name": "antifed",
"private": true,
"type": "module",
"scripts": {
"start": "bun src/index.ts",
"check": "oxlint && oxfmt --check",
"format": "oxlint --fix && oxfmt --write",
"typecheck": "tsc --noEmit",
"test": "bun test",
"db:push": "drizzle-kit push",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"prepare": "husky"
},
"dependencies": {
"@libsql/client": "^0.15.5",
"@t3-oss/env-core": "^0.12.0",
"discord.js": "^14.18.0",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.45.1",
"evlog": "^2.10.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@types/bun": "^1.3.11",
"drizzle-kit": "^0.31.5",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"oxfmt": "0.41.0",
"oxlint": "^1.56.0",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs,json}": [
"oxlint --fix",
"oxfmt --write"
]
},
"packageManager": "bun@1.3.10"
}