-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.48 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.48 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
{
"name": "dc-backup-bot",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"conc": "concurrently \"bun run src/bot/deploy-commands.ts && bun run src/bot/index.ts\" \"next dev\"",
"build": "bun run prisma generate && next build",
"start": "next start",
"lint": "next lint",
"bot": "bun run src/bot/deploy-commands.ts && bun run src/bot/index.ts",
"deploy": "bun run src/bot/deploy-commands.ts",
"db:push": "bunx prisma db push",
"db:generate": "bunx prisma generate",
"docker": "bun run prisma migrate deploy && bun run bot & bun run dev",
"tunnel": "bun run src/tunnel.ts"
},
"dependencies": {
"@auth/core": "^0.18.6",
"@prisma/client": "^6.8.2",
"discord.js": "^14.19.3",
"dotenv": "^16.5.0",
"next": "15.1.7",
"next-auth": "^4.24.11",
"ngrok": "^5.0.0-beta.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-icons": "^5.5.0",
"swr": "^2.3.3",
"zustand": "^5.0.4"
},
"devDependencies": {
"typescript": "^5.8.3",
"@types/node": "^20.17.47",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.5",
"prisma": "^6.8.2",
"concurrently": "^8.2.2",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"eslint": "^8.57.1",
"eslint-config-next": "15.1.7",
"@typescript-eslint/parser": "^7.18.0",
"@typescript-eslint/eslint-plugin": "^7.18.0"
},
"eslintConfig": {
"extends": "next/core-web-vitals"
}
}