refactor(lst): register added in

This commit is contained in:
2025-02-21 15:26:56 -06:00
parent 9719451580
commit 026583815c
31 changed files with 529 additions and 385 deletions

View File

@@ -4,10 +4,10 @@
"description": "",
"main": "index.ts",
"scripts": {
"dev": "concurrently -n 'server,frontend' -c '#007755,#2f6da3' 'cd server && bun run dev' 'cd frontend && bun run dev'",
"dev:server": "bun --env-file .env --watch server/index.ts",
"dev:ocme": "bun --env-file .env --watch ocme/index.ts",
"dev:frontend": "cd frontend && bunx --bun vite",
"dev": "concurrently -n 'server,frontend' -c '#007755,#2f6da3' 'bun --watch server/index.ts' 'cd frontend && bunx --bun vite'",
"dev:server": "bun --watch server/index.ts",
"dev:ocme": "bun --watch ocme/index.ts",
"dev:front": "cd frontend && bunx --bun vite",
"build:server": "cd apps/server && bun build index.js --outdir ../../dist/server",
"build:ocme": "rimraf dist/ocme && cd apps/ocme && bun build index.js --outdir ../../dist/ocme",
"build:front": "cd frontend && rimraf frontend/dist && bun run build",
@@ -15,7 +15,8 @@
"commit": "cz",
"clean": "rimraf dist/server",
"deploy": "standard-version --conventional-commits",
"ui:add": "cd frontend && bun shadcn add "
"ui:add": "cd frontend && bun shadcn add ",
"db:dev": "bun drizzle-kit generate && bun drizzle-kit migrate"
},
"keywords": [],
"author": "",
@@ -23,7 +24,7 @@
"dependencies": {
"@dotenvx/dotenvx": "^1.35.0",
"@hono/zod-openapi": "^0.18.4",
"@scalar/hono-api-reference": "^0.5.174",
"@scalar/hono-api-reference": "^0.5.175",
"@types/bun": "^1.2.2",
"axios": "^1.7.9",
"bcrypt": "^5.1.1",
@@ -35,12 +36,17 @@
"hono": "^4.7.1",
"http-proxy-middleware": "^3.0.3",
"jsonwebtoken": "^9.0.2",
"pg": "^8.13.3",
"postgres": "^3.4.5",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/js-cookie": "^3.0.6",
"@types/pg": "^8.11.11",
"concurrently": "^9.1.2",
"cz-conventional-changelog": "^3.3.0",
"drizzle-kit": "^0.30.4",
"rimraf": "^6.0.1",
"standard-version": "^9.5.0",
"typescript": "~5.7.3"