prasi-bun/package.json

27 lines
928 B
JSON

{
"name": "prasi-deploy",
"module": "src/index.ts",
"type": "module",
"scripts": {
"dev": "bun run --no-clear-screen --hot ./pkgs/core/index.ts dev",
"clean": "rm -rf data/lmdb && rm -rf app/static && rm -rf app/web/.parcel-cache",
"build": "bun run --silent ./pkgs/core/build.ts",
"db-pull": "bun run ./pkgs/core/db-pull.ts",
"parcel": "bun clean && bun run ./pkgs/core/parcel.ts",
"prod": "bun run --silent ./pkgs/core/index.ts prod",
"local-prod": "bun run build && bun run db-pull && bun run ./pkgs/core/index.ts",
"pull": "cd app/db && bun prisma db pull && bun prisma generate",
"pkgs-upgrade": "bun run --silent ./pkgs/core/upgrade.ts",
"prep": "bun run --silent ./pkgs/docker-prep.ts"
},
"workspaces": [
"app/*",
"pkgs/*"
],
"dependencies": {
"brotli-wasm": "^3.0.1",
"fdir": "^6.1.0",
"react-select": "^5.8.0",
"typescript": "^5.2.2"
}
}