{ "name": "@horux/database", "version": "0.1.0", "private": true, "description": "Database schemas and migrations for Horux Strategy", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "dev": "tsc --watch", "migrate": "node dist/migrate.js", "migrate:dev": "tsx src/migrate.ts", "seed": "tsx src/seed.ts", "studio": "echo 'DB Studio not configured'", "lint": "eslint src --ext .ts", "typecheck": "tsc --noEmit", "clean": "rm -rf dist node_modules" }, "dependencies": { "@horux/shared": "workspace:*", "pg": "^8.11.3", "dotenv": "^16.4.0" }, "devDependencies": { "@types/node": "^20.11.0", "@types/pg": "^8.10.9", "eslint": "^8.56.0", "tsx": "^4.7.0", "typescript": "^5.3.3" } }