-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.17 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": "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",
"db:migrate": "prisma migrate deploy",
"db:generate": "prisma generate"
},
"dependencies": {
"@prisma/client": "6.19.3",
"@sentry/node": "^9.0.0",
"@types/safe-regex": "^1.1.6",
"cron": "^4.0.0",
"discord.js": "^14.19.1",
"ms": "^2.1.3",
"prisma": "6.19.3",
"safe-regex": "^2.1.1",
"typed-regex": "^0.0.8",
"yaml": "^2.3.4",
"zod": "^3.22.5",
"zod-validation-error": "^3.1.0"
},
"devDependencies": {
"@dword-design/eslint-plugin-import-alias": "5.1.2",
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "9.39.4",
"@types/lodash": "4.17.24",
"@types/ms": "2.1.0",
"@typescript-eslint/eslint-plugin": "8.58.2",
"@typescript-eslint/parser": "8.58.2",
"bun-types": "1.3.12",
"eslint": "9.39.4",
"globals": "16.5.0"
}
}