-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.07 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.07 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
{
"name": "discord-moderation-tool",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build:ci": "rm -rf dist && NODE_ENV=production tsc --outDir dist",
"start:ci": "NODE_ENV=production node dist/index.js ",
"dev": "NODE_ENV=development tsx --watch src/index.ts",
"test": "tsx --test **/*.test.ts",
"lint": "biome lint .",
"lint:fix": "biome lint --fix .",
"format": "biome format --write .",
"check": "biome check .",
"check:fix": "biome check --write .",
"prepare": "husky",
"pre-commit": "lint-staged",
"typecheck": "tsc --noEmit"
},
"license": "MIT",
"packageManager": "pnpm@10.17.1",
"dependencies": {
"@prisma/adapter-better-sqlite3": "^6.18.0",
"@prisma/client": "^6.18.0",
"discord.js": "^14.22.1"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@types/node": "^24.5.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.1",
"prisma": "^6.18.0",
"tsx": "^4.20.6",
"typescript": "^5.9.2"
},
"lint-staged": {
"*.{ts,js}": [
"biome format --write",
"biome lint --fix"
]
}
}