Initial commit: Horux Strategy project setup

- Add project design document with complete specifications
- Configure Turborepo monorepo structure
- Add README with project overview and setup instructions
- Configure .gitignore for Node.js/TypeScript project
- Set up pnpm workspace configuration

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-31 09:50:44 +00:00
commit c1321c3f0c
6 changed files with 967 additions and 0 deletions

48
package.json Normal file
View File

@@ -0,0 +1,48 @@
{
"name": "horux-strategy",
"version": "0.1.0",
"private": true,
"description": "CFO Digital para Empresas Mexicanas - Plataforma de inteligencia financiera",
"author": "HORUX360",
"license": "UNLICENSED",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.15.0",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"start": "turbo run start",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"clean": "turbo run clean && rm -rf node_modules",
"db:migrate": "pnpm --filter @horux/database migrate",
"db:migrate:dev": "pnpm --filter @horux/database migrate:dev",
"db:seed": "pnpm --filter @horux/database seed",
"db:studio": "pnpm --filter @horux/database studio",
"typecheck": "turbo run typecheck",
"prepare": "husky install"
},
"devDependencies": {
"@types/node": "^20.11.0",
"eslint": "^8.56.0",
"husky": "^9.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.0",
"turbo": "^2.0.0",
"typescript": "^5.3.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}