mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-02-25 20:35:10 +00:00
- Updated .nvmrc and Dockerfiles to use Node.js 24.4.0. - Modified package.json files across multiple applications to reflect the new Node.js version and updated @types/node dependency. - Updated better-auth and @better-auth/sso dependencies to version v1.5.0-beta.16 in relevant package.json files. - Removed outdated .nvmrc file from apps/dokploy.
38 lines
819 B
JSON
38 lines
819 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",
|
|
"dotenv": "^16.4.5",
|
|
"hono": "^4.11.7",
|
|
"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.76"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.4.0",
|
|
"@types/react": "^18.2.37",
|
|
"@types/react-dom": "^18.2.15",
|
|
"tsx": "^4.16.2",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"packageManager": "pnpm@9.12.0",
|
|
"engines": {
|
|
"node": "^24.4.0",
|
|
"pnpm": ">=9.12.0"
|
|
}
|
|
}
|