mirror of
https://github.com/Dvorinka/Bookra.git
synced 2026-06-03 20:13:00 +00:00
first commit
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "bookra",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"workspaces": [
|
||||
"apps/frontend",
|
||||
"packages/api-client",
|
||||
"packages/shared-types"
|
||||
],
|
||||
"scripts": {
|
||||
"dev:frontend": "npm run dev --workspace @bookra/frontend",
|
||||
"dev:backend": "cd apps/backend && go run ./cmd/api",
|
||||
"build:frontend": "npm run build --workspace @bookra/frontend",
|
||||
"build:backend": "cd apps/backend && go build ./...",
|
||||
"db:generate": "cd apps/backend && go run github.com/sqlc-dev/sqlc/cmd/sqlc@v1.30.0 generate -f sqlc.yaml",
|
||||
"db:migrate:up": "cd apps/backend && go run github.com/pressly/goose/v3/cmd/goose@v3.24.1 -dir migrations postgres \"$BOOKRA_DATABASE_DIRECT_URL\" up",
|
||||
"db:migrate:status": "cd apps/backend && go run github.com/pressly/goose/v3/cmd/goose@v3.24.1 -dir migrations postgres \"$BOOKRA_DATABASE_DIRECT_URL\" status",
|
||||
"lint:frontend": "npm run lint --workspace @bookra/frontend",
|
||||
"generate:api-client": "npm run generate --workspace @bookra/api-client",
|
||||
"verify": "npm run generate:api-client && npm run build:frontend && npm run build:backend"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=20.0.0"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user