Files
lstV2/package.json

81 lines
2.6 KiB
JSON

{
"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,ocme,frontend' -c '#007755,#2f6da3,#c61cb8' 'cd apps/server && bun run dev' 'cd apps/ocme && bun run dev' 'cd apps/frontend && bun run dev'",
"dev:server": "bun --watch apps/server/index.ts",
"dev:ocme": "bun --watch apps/ocme/index.ts",
"dev:frontend": "cd apps/frontend && bunx --bun vite",
"build:server": "nx exec -- rimraf dist/server && cd apps/server && bun build index.js --outdir ../../dist/server",
"build:ocme": "nx exec -- rimraf dist/ocme && cd apps/ocme && bun build index.js --outdir ../../dist/ocme",
"build:front": "nx exec -- rimraf dist/frontend && cd apps/frontend && bun run build",
"start": "cd dist/server && bun run ./index.js",
"commit": "cz",
"clean": "rimraf dist/server"
},
"workspaces": [
"apps/*",
"packages/*"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@auth/core": "^0.37.4",
"@dotenvx/dotenvx": "^1.35.0",
"@hono/zod-openapi": "^0.18.4",
"@shared/lib": "*",
"@types/bun": "^1.2.2",
"axios": "^1.7.9",
"bcrypt": "^5.1.1",
"compression": "^1.8.0",
"concurrently": "^9.1.2",
"cookie": "^1.0.2",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"dotenv-expand": "^12.0.1",
"hono": "^4.7.1",
"http-proxy-middleware": "^3.0.3",
"jsonwebtoken": "^9.0.2",
"lst-auth": "*",
"zod": "^3.24.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"devDependencies": {
"cz-conventional-changelog": "^3.3.0",
"nx": "^20.4.4",
"rimraf": "^6.0.1",
"standard-version": "^9.5.0",
"typescript": "~5.7.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nx": {
"targets": {
"build": {
"cache": true,
"inputs": [
"{projectRoot}/**/*.ts",
"{projectRoot}/tsconfig.json",
{
"externalDependencies": [
"typescript"
]
}
],
"outputs": [
"{projectRoot}/dist"
]
}
}
}
}