-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.5 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
{
"name": "openhosting",
"version": "0.5.1",
"private": true,
"description": "Open-source billing and client management platform for hosting providers. Next.js + PostgreSQL.",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate deploy",
"db:push": "prisma db push",
"db:seed": "tsx prisma/seed.ts",
"db:reset-admin": "tsx prisma/reset-admin.ts",
"import:paymenter": "tsx scripts/import-paymenter.ts",
"import:whmcs": "tsx scripts/import-whmcs.ts",
"cli": "node cli/oh.mjs",
"mcp": "node mcp/server.mjs"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.115.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"bcryptjs": "^3.0.3",
"mysql2": "^3.23.1",
"next": "^16.2.10",
"nodemailer": "^9.0.3",
"qrcode": "^1.5.4",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"server-only": "^0.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.3",
"@types/node": "^26.1.1",
"@types/nodemailer": "^8.0.1",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"playwright": "^1.61.1",
"prisma": "^7.8.0",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.1",
"typescript": "^5.9.3"
},
"bin": {
"oh": "cli/oh.mjs",
"openhosting-mcp": "mcp/server.mjs"
}
}