main Initial commit
This commit is contained in:
commit
ac7df91600
65 changed files with 8957 additions and 0 deletions
67
package.json
Normal file
67
package.json
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
{
|
||||
"name": "reverse-proxy",
|
||||
"version": "1.0.0",
|
||||
"description": "Custom NGINX Proxy Manager Backend",
|
||||
"main": "index.ts",
|
||||
"type": "module",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "bun --watch index.ts",
|
||||
"start": "bun index.ts",
|
||||
"build": "bun build index.ts --outdir ./dist",
|
||||
"build:frontend": "vite build",
|
||||
"build:all": "bun run build:frontend && bun run build",
|
||||
"preview": "vite preview",
|
||||
"db:init": "bun src/database/init.ts",
|
||||
"test": "bun test-api.ts",
|
||||
"manage": "bun manage.ts",
|
||||
"backup": "bun manage.ts db backup",
|
||||
"status": "bun manage.ts status",
|
||||
"nginx:test": "bun manage.ts nginx test",
|
||||
"nginx:reload": "bun manage.ts nginx reload",
|
||||
"cert:renew": "bun manage.ts cert renew"
|
||||
},
|
||||
"dependencies": {
|
||||
"@radix-ui/react-dialog": "^1.1.14",
|
||||
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
||||
"@radix-ui/react-slot": "^1.2.3",
|
||||
"@types/bcryptjs": "^3.0.0",
|
||||
"bcryptjs": "^3.0.2",
|
||||
"class-variance-authority": "^0.7.1",
|
||||
"cloudflare": "^4.3.0",
|
||||
"clsx": "^2.1.1",
|
||||
"commander": "^14.0.0",
|
||||
"cors": "^2.8.5",
|
||||
"dotenv": "^16.3.1",
|
||||
"express": "^4.18.2",
|
||||
"helmet": "^7.1.0",
|
||||
"joi": "^17.11.0",
|
||||
"jsonwebtoken": "^9.0.2",
|
||||
"lucide-react": "^0.514.0",
|
||||
"multer": "^1.4.5-lts.1",
|
||||
"node-cron": "^3.0.3",
|
||||
"react-router": "^7.6.2",
|
||||
"tailwind-merge": "^3.3.1",
|
||||
"winston": "^3.11.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tailwindcss/vite": "^4.1.9",
|
||||
"@types/bun": "latest",
|
||||
"@types/cors": "^2.8.17",
|
||||
"@types/express": "^4.17.21",
|
||||
"@types/jsonwebtoken": "^9.0.5",
|
||||
"@types/multer": "^1.4.11",
|
||||
"@types/node-cron": "^3.0.11",
|
||||
"@types/react": "^19.1.8",
|
||||
"@types/react-dom": "^19.1.6",
|
||||
"@vitejs/plugin-react": "^4.5.2",
|
||||
"react": "^19.1.0",
|
||||
"react-dom": "^19.1.0",
|
||||
"tailwindcss": "^4.1.9",
|
||||
"tw-animate-css": "^1.3.4",
|
||||
"vite": "^6.3.5"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"typescript": "^5"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue