mirror of
https://github.com/different-ai/openwork
synced 2026-04-25 17:15:34 +02:00
* Allow one free cloud worker without billing * Add desktop and mobile PR screenshots * Add worker limit request action --------- Co-authored-by: jcllobet <jcllobet@users.noreply.github.com>
32 lines
899 B
JSON
32 lines
899 B
JSON
{
|
|
"name": "@openwork/den",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "OPENWORK_DEV_MODE=1 tsx watch src/index.ts",
|
|
"build": "tsc -p tsconfig.json",
|
|
"start": "node dist/index.js",
|
|
"test:e2e:worker-limit": "node scripts/e2e-worker-limit.mjs",
|
|
"db:generate": "drizzle-kit generate",
|
|
"db:migrate": "drizzle-kit migrate",
|
|
"auth:generate": "npx @better-auth/cli@latest generate --config src/auth.ts --output src/db/better-auth.schema.ts --yes"
|
|
},
|
|
"dependencies": {
|
|
"better-auth": "^1.4.18",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.5",
|
|
"drizzle-orm": "^0.45.1",
|
|
"express": "^4.19.2",
|
|
"mysql2": "^3.11.3",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^4.17.21",
|
|
"@types/node": "^20.11.30",
|
|
"drizzle-kit": "^0.31.9",
|
|
"tsx": "^4.15.7",
|
|
"typescript": "^5.5.4"
|
|
}
|
|
}
|