-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.67 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "discord-raid-bot",
"version": "1.3.0",
"description": "Discord event management bot with raid scheduling capabilities",
"main": "dist/bot/index.js",
"type": "module",
"scripts": {
"dev": "tsx watch src/bot/index.ts",
"dev:web": "vite --config vite.frontend.config.ts",
"build": "npm run build:backend && npm run build:frontend",
"build:backend": "tsc",
"build:frontend": "vite build --config vite.frontend.config.ts",
"start": "node dist/bot/index.js",
"preview": "vite preview --config vite.frontend.config.ts",
"migrate": "prisma migrate deploy",
"migrate:dev": "prisma migrate dev",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"generate": "prisma generate",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"docker:build": "docker build -t discord-raid-bot .",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f"
},
"keywords": [
"discord",
"bot",
"raid",
"events",
"scheduler"
],
"author": "Murr (https://github.com/vtstv)",
"license": "MIT",
"dependencies": {
"@discordjs/rest": "^2.2.0",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fastify/cookie": "^9.3.1",
"@fastify/cors": "^9.0.1",
"@fastify/session": "^10.7.0",
"@fastify/static": "^6.12.0",
"@prisma/adapter-pg": "^7.0.1",
"@prisma/client": "^7.0.1",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"envalid": "^8.0.0",
"fastify": "^4.25.2",
"luxon": "^3.4.4",
"node-cron": "^3.0.3",
"pg": "^8.16.3",
"pino": "^8.17.2",
"pino-pretty": "^10.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.1",
"redis": "^5.10.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/luxon": "^3.3.7",
"@types/node": "^20.10.6",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.15.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.1.1",
"autoprefixer": "^10.4.16",
"discord-api-types": "^0.37.70",
"eslint": "^8.56.0",
"playwright": "^1.40.1",
"postcss": "^8.4.32",
"prisma": "7.0.1",
"tailwindcss": "^3.4.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vitest": "^1.1.1"
},
"engines": {
"node": ">=18.0.0"
}
}