-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.22 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "the-forge",
"version": "0.1.0",
"private": true,
"description": "Lightweight automation boilerplate for Claude Code - build async functions with resilience patterns",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "next dev --turbopack -p 3456",
"dev:full": "concurrently \"npm run dev\" \"npm run worker\"",
"worker": "tsx watch worker.ts",
"worker:prod": "node dist/worker.js",
"build": "next build",
"start": "next start -p 3456",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"db:generate": "dotenv -e .env.local -- drizzle-kit generate",
"db:migrate": "dotenv -e .env.local -- drizzle-kit migrate",
"db:push": "dotenv -e .env.local -- drizzle-kit push",
"db:studio": "dotenv -e .env.local -- drizzle-kit studio",
"docker:start": "docker compose up -d",
"docker:stop": "docker compose down",
"docker:logs": "docker compose logs -f"
},
"dependencies": {
"@ai-sdk/anthropic": "^1.0.0",
"@ai-sdk/openai": "^1.0.0",
"@anthropic-ai/sdk": "^0.71.2",
"@aws-sdk/client-s3": "^3.680.0",
"@aws-sdk/s3-request-presigner": "^3.947.0",
"@eslint/eslintrc": "^3.3.3",
"@notionhq/client": "^2.2.0",
"@octokit/rest": "^21.0.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.3",
"@sendgrid/mail": "^8.1.0",
"@slack/web-api": "^7.7.0",
"ai": "^4.0.0",
"airtable": "^0.12.2",
"axios": "^1.13.2",
"axios-retry": "^4.5.0",
"bcryptjs": "^2.4.3",
"bottleneck": "^2.19.5",
"bullmq": "^5.30.0",
"class-variance-authority": "^0.7.0",
"cloudinary": "^2.5.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"discord.js": "^14.16.0",
"drizzle-orm": "^0.44.0",
"framer-motion": "^12.23.25",
"google-spreadsheet": "^4.1.0",
"googleapis": "^140.0.0",
"ioredis": "^5.4.0",
"lucide-react": "^0.460.0",
"mongodb": "^6.10.0",
"nanoid": "^5.0.8",
"next": "^15.5.7",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.0",
"openai": "^4.70.0",
"opossum": "^9.0.0",
"pg": "^8.13.0",
"pino": "^9.5.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"resend": "^4.0.0",
"sonner": "^1.7.0",
"stripe": "^17.0.0",
"tailwind-merge": "^2.5.0",
"telegraf": "^4.16.0",
"twilio": "^5.3.0",
"twitter-api-v2": "^1.18.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.15",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.16",
"@types/opossum": "^8.1.7",
"@types/pg": "^8.11.10",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.1.0",
"dotenv-cli": "^11.0.0",
"drizzle-kit": "^0.30.0",
"eslint": "^9",
"eslint-config-next": "15.3.3",
"tailwindcss": "^4",
"tsx": "^4.19.0",
"typescript": "^5"
}
}