-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.47 KB
/
package.json
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
{
"name": "discord-bot",
"module": "index.ts",
"type": "module",
"scripts": {
"build": "rm -rf dist && bun build --target=bun --root . backend/index.ts --outdir=dist",
"dev": "bun run backend/index.ts",
"lint": "eslint \"./backend/**/*.ts\"",
"typecheck": "tsc --noEmit --pretty",
"db:push": "bun run drizzle-kit push:mysql --config backend/db/drizzle.config.ts",
"db:generate": "bun run drizzle-kit generate:mysql --config backend/db/drizzle.config.ts",
"db:migrate": "bun run backend/db/migrate.ts"
},
"devDependencies": {
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.0.0",
"@types/bun": "latest",
"@types/qrcode": "^1.5.5",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"drizzle-kit": "^0.20.13",
"eslint": "^9.0.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0",
"eslint-plugin-promise": "^6.0.0",
"globals": "^15.0.0",
"typescript": "*",
"typescript-eslint": "^7.6.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@napi-rs/canvas": "^0.1.44",
"@polkadot/api": "^10.11.2",
"@polkadot/util": "^12.6.2",
"@polkadot/util-crypto": "^12.6.2",
"@walletconnect/sign-client": "^2.13.0",
"cron": "^3.1.6",
"discord.js": "^14.14.1",
"drizzle-orm": "^0.30.8",
"mysql2": "^3.9.1",
"qrcode": "^1.5.3",
"remeda": "^1.40.1",
"zod": "^3.22.4"
}
}