forked from viet-aus-it/vait-discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.6 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
{
"name": "@viet-aus-it/discord-bot",
"version": "2.7.0",
"description": "Chat bot for VAIT Discord Server",
"main": "build/index.js",
"engines": {
"node": "^18.0.0",
"pnpm": "^8.1.0"
},
"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 install",
"typecheck": "tsc",
"build": "rimraf build && tsx esbuild.config.ts",
"build:typecheck": "pnpm typecheck && pnpm build",
"lint": "esw --cache src/**/*.ts",
"lint:fix": "pnpm lint --fix",
"lint:watch": "pnpm lint --watch",
"prettier": "prettier --cache -w src/**/*",
"format": "pnpm lint:fix && pnpm prettier",
"test": "vitest run",
"test:silent": "vitest run --silent",
"test:typecheck": "concurrently pnpm:test:silent pnpm:typecheck",
"test:watch": "vitest watch",
"prisma:migrate": "prisma migrate dev",
"prisma:gen": "prisma generate",
"prisma:studio": "prisma studio",
"deploy:command": "tsx src/scripts/deploy-guild-commands.ts",
"delete:command": "tsx src/scripts/delete-guild-commands.ts",
"delete:command-global": "tsx src/scripts/delete-global-commands.ts",
"start:only": "tsx watch --clear-screen=false ./src/index.ts",
"start": "pnpm prisma:migrate && pnpm prisma:gen && pnpm start:only"
},
"dependencies": {
"@discordjs/rest": "1.6.0",
"@prisma/client": "^4.11.0",
"cowsay": "^1.5.0",
"discord-api-types": "^0.37.37",
"discord.js": "^14.8.0",
"dotenv": "^16.0.3",
"dotenv-expand": "^10.0.0",
"node-fetch": "^3.3.1",
"zod": "^3.21.4"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/node": "^18.15.8",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@vitest/coverage-c8": "^0.29.7",
"@vitest/ui": "^0.29.7",
"concurrently": "^7.6.0",
"esbuild": "^0.17.13",
"esbuild-plugin-copy": "^2.1.0",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-watch": "^8.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"msw": "^1.2.1",
"prettier": "^2.8.7",
"prisma": "^4.11.0",
"rimraf": "^4.4.1",
"tree-kill": "^1.2.2",
"tsx": "^3.12.6",
"typescript": "^5.0.2",
"vitest": "^0.29.7"
}
}