mirror of
https://github.com/dokploy/dokploy.git
synced 2026-06-14 03:19:49 +00:00
9e89edf167
Update to latest stable versions: - pnpm: 9.12.0 → 10.26.0 - Docker: 28.5.0/28.5.2 → 29.1.3 - Nixpacks: 1.39.0 → 1.41.0 - Railpack: 0.2.2/0.15.0 → 0.15.1 - buildpacks/pack: 0.35.0 → 0.39.1 Files updated: - All Dockerfiles (main, schedule, cloud, server) - All package.json files (root, server, api, schedules, dokploy) - GitHub workflow (pull-request.yml) - Server setup script - Database schema and DBML files - Test fixtures - UI components
39 lines
858 B
JSON
39 lines
858 B
JSON
{
|
|
"name": "@dokploy/api",
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "PORT=4000 tsx watch src/index.ts",
|
|
"build": "tsc --project tsconfig.json",
|
|
"start": "node dist/index.js",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"inngest": "3.40.1",
|
|
"@dokploy/server": "workspace:*",
|
|
"@hono/node-server": "^1.14.3",
|
|
"@hono/zod-validator": "0.3.0",
|
|
"@nerimity/mimiqueue": "1.2.3",
|
|
"dotenv": "^16.4.5",
|
|
"hono": "^4.7.10",
|
|
"pino": "9.4.0",
|
|
"pino-pretty": "11.2.2",
|
|
"react": "18.2.0",
|
|
"react-dom": "18.2.0",
|
|
"redis": "4.7.0",
|
|
"zod": "^3.25.32"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.17.51",
|
|
"@types/react": "^18.2.37",
|
|
"@types/react-dom": "^18.2.15",
|
|
"tsx": "^4.16.2",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"packageManager": "pnpm@10.26.0",
|
|
"engines": {
|
|
"node": "^20.16.0",
|
|
"pnpm": ">=10.26.0"
|
|
}
|
|
}
|