-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.33 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.33 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "azalea",
"description": "A Discord moderation and utility bot",
"homepage": "https://github.com/archasion/azalea#readme",
"version": "1.0.0",
"type": "module",
"module": "src/index.ts",
"repository": "github:archasion/azalea",
"author": {
"name": "Archasion",
"url": "https://github.com/archasion"
},
"scripts": {
"start": "bun ./src/index.ts",
"setup": "bun install && bun run db:generate",
"reset": "bun run clean && bun run setup",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"test": "bun test",
"verify": "bun run db:generate && bun run lint && bun run typecheck && bun run db:validate && bun run db:format:check && bun run db:check && bun run test",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate deploy",
"db:validate": "prisma validate",
"db:format": "prisma format",
"db:format:check": "prisma format && git diff --exit-code prisma/schema.prisma",
"db:check": "rm -f .shadow.db .shadow.db-journal && prisma migrate diff --from-migrations ./prisma/migrations --to-schema-datamodel ./prisma/schema.prisma --shadow-database-url file:./.shadow.db --exit-code",
"db:studio": "prisma studio",
"db": "bun run db:migrate && bun run db:generate",
"docker:build": "docker compose build",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f bot",
"clean": "rm -rf node_modules"
},
"dependencies": {
"@prisma/client": "6.19.3",
"@sentry/node": "^10.52.0",
"cron": "^4.4.0",
"discord.js": "^14.26.4",
"lodash": "^4.18.1",
"ms": "^2.1.3",
"prisma": "6.19.3",
"safe-regex": "^2.1.1",
"typed-regex": "^0.0.8",
"yaml": "^2.8.4",
"zod": "^3.25.76",
"zod-validation-error": "^5.0.0"
},
"devDependencies": {
"@dword-design/eslint-plugin-import-alias": "8.1.8",
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "10.0.1",
"@types/lodash": "4.17.24",
"@types/ms": "2.1.0",
"@types/safe-regex": "1.1.6",
"@typescript-eslint/eslint-plugin": "8.60.0",
"@typescript-eslint/parser": "8.60.0",
"bun-types": "1.3.14",
"eslint": "10.4.0",
"globals": "17.6.0"
},
"overrides": {
"defu": "^6.1.5",
"flatted": "^3.4.0",
"picomatch": "^4.0.4",
"ws": "^8.17.1"
}
}