Initial working state: CL3.5 complete (Plesk sync + suspend/unsuspend)

This commit is contained in:
2026-03-05 06:47:43 +00:00
commit a36d55eae5
53 changed files with 9925 additions and 0 deletions

33
package.json Normal file
View File

@@ -0,0 +1,33 @@
{
"name": "plesk-agency-portal",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/supabase-js": "^2.49.8",
"clsx": "^2.1.1",
"next": "^14.2.30",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"stripe": "^18.3.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^20.17.28",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.5",
"autoprefixer": "^10.4.21",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.30",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.2"
}
}