-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.56 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.56 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
45
46
{
"name": "maybe-bot",
"version": "1.0.0",
"type": "module",
"description": "May be a bot to start perhaps a Minecaft server",
"main": "index.js",
"scripts": {
"build": "scripts/guard-no-bun.sh && tsc",
"db:migrate": "scripts/guard-no-bun.sh && tsx src/scripts/baseline-and-migrate.ts",
"start": "scripts/guard-no-bun.sh && node dist/index.js",
"preview:ui": "scripts/guard-no-bun.sh && nodemon --watch src --ext ts --exec \"tsx src/preview.ts\"",
"dev": "scripts/guard-no-bun.sh && (tsc -w & node --watch dist/index.js)",
"prepare": "scripts/guard-no-bun.sh && (husky || true)",
"lint": "scripts/guard-no-bun.sh && npx biome check --write --no-errors-on-unmatched .",
"type-check": "scripts/guard-no-bun.sh && tsc --noEmit",
"format": "scripts/guard-no-bun.sh && npx @biomejs/biome format --write ."
},
"author": "chev",
"license": "ISC",
"dependencies": {
"canvas": "^3.2.0",
"discord.js": "^14.18.0",
"dotenv": "^16.4.7",
"drizzle-kit": "^0.31.5",
"drizzle-orm": "^0.44.5",
"exaroton": "^1.11.3",
"nodemon": "^3.1.10",
"pm2": "^6.0.13",
"@types/twemoji-parser": "^13.1.4",
"@types/exaroton": "^1.11.1",
"postgres": "^3.4.7",
"twemoji-parser": "^14.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/express": "^5.0.3",
"express": "^5.1.0",
"@types/node": "^24.5.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"tsx": "^4.20.6",
"typescript": "^5.9.2"
}
}