{ "name": "lstv2", "version": "1.0.0", "description": "", "main": "index.ts", "scripts": { "dev": "dotenvx run -- bun run -r --parallel --aggregate-output dev", "dev:all": "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", "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", "start": "bun --env-file .env run ./server/index.js", "commit": "cz", "clean": "rimraf dist/server", "deploy": "standard-version --conventional-commits" }, "keywords": [], "author": "", "license": "ISC", "dependencies": { "@dotenvx/dotenvx": "^1.35.0", "@hono/zod-openapi": "^0.18.4", "@scalar/hono-api-reference": "^0.5.174", "@types/bun": "^1.2.2", "axios": "^1.7.9", "bcrypt": "^5.1.1", "compression": "^1.8.0", "cookie": "^1.0.2", "date-fns": "^4.1.0", "hono": "^4.7.1", "http-proxy-middleware": "^3.0.3", "jsonwebtoken": "^9.0.2", "zod": "^3.24.2" }, "devDependencies": { "cz-conventional-changelog": "^3.3.0", "rimraf": "^6.0.1", "standard-version": "^9.5.0", "typescript": "~5.7.3", "concurrently": "^9.1.2" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } } }