-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
82 lines (82 loc) · 2.52 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@viet-aus-it/discord-bot",
"version": "2.12.1",
"description": "Chat bot for VAIT Discord Server",
"main": "build/index.js",
"engines": {
"node": "^22.0.0",
"pnpm": "^9.0.0"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/viet-aus-it/vait-discord-bot.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/viet-aus-it/vait-discord-bot"
},
"homepage": "https://github.com/viet-aus-it/vait-discord-bot#readme",
"scripts": {
"prepare": "husky",
"typecheck": "tsc",
"build": "tsup",
"build:typecheck": "pnpm typecheck && pnpm build",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"lint:fix:unsafe": "biome check --write --unsafe .",
"format:biome": "biome format --write .",
"ci": "biome ci .",
"format": "pnpm format:biome && prisma format",
"test": "vitest",
"test:silent": "vitest --silent",
"prisma:migrate": "prisma migrate dev --skip-generate",
"prisma:gen": "prisma generate",
"prisma:studio": "prisma studio",
"deploy:command": "tsx scripts/deploy-guild-commands.ts",
"delete:command": "tsx scripts/delete-guild-commands.ts",
"delete:command-global": "tsx scripts/delete-global-commands.ts",
"start:only": "tsx --watch ./bin/main.ts",
"start": "pnpm prisma:migrate && pnpm prisma:gen && pnpm start:only",
"build:referrals": "tsx scripts/build-referral-list.ts"
},
"dependencies": {
"@axiomhq/pino": "^1.3.0",
"@discordjs/rest": "2.0.0",
"@prisma/client": "^6.0.1",
"cowsay": "^1.6.0",
"date-fns": "^4.1.0",
"discord-api-types": "^0.37.111",
"discord.js": "^14.16.2",
"dotenv": "^16.4.7",
"dotenv-expand": "^12.0.1",
"node-html-parser": "^6.1.13",
"oxide.ts": "^1.1.0",
"parse-duration": "^1.1.1",
"pino": "^9.5.0",
"wretch": "^2.11.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@faker-js/faker": "^9.3.0",
"@types/node": "^22.10.2",
"@types/node-fetch": "^2.6.12",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"esbuild": "^0.24.0",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-plugin-pino": "^2.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"msw": "^2.6.8",
"pino-pretty": "^13.0.0",
"prisma": "^6.0.1",
"prisma-json-types-generator": "^3.2.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"vitest-mock-extended": "^2.0.2"
}
}