autoloop / apps /server /package.json
shubhjn's picture
Deploy AutoLoop Server to Hugging Face
a6b6c66
raw
history blame contribute delete
778 Bytes
{
"name": "@autoloop/server",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"build": "tsc",
"lint": "eslint .",
"test:e2e": "playwright test"
},
"dependencies": {
"@autoloop/db": "workspace:*",
"@autoloop/shared": "workspace:*",
"@autoloop/types": "workspace:*",
"@hono/node-server": "^1.13.8",
"bullmq": "^5.41.6",
"dotenv": "^17.4.2",
"hono": "^4.7.4",
"ioredis": "^5.6.0",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"socket.io": "^4.8.3",
"zod": "^3.24.2"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/node": "^20.17.24",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
}
}