59 lines
2.0 KiB
JSON
59 lines
2.0 KiB
JSON
{
|
|
"name": "heygermany",
|
|
"version": "0.0.0",
|
|
"description": "A repo containing all the different deployment options available for pikku",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"repository": "git@github.com:pikkujs/yarn-workspace-starter.git",
|
|
"author": "Yasser Fadl <yasser.fadl@gmail.com>",
|
|
"type": "module",
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*",
|
|
"backends/*",
|
|
"e2e"
|
|
],
|
|
"scripts": {
|
|
"dbmigrate": "pikku db migrate",
|
|
"build:website": "cd apps/website && bun run build",
|
|
"dev:backend": "pikku dev --hostname 127.0.0.1 --port 3000",
|
|
"dev:frontend": "bun --filter @heygermany/website dev --host 127.0.0.1 --port 3001",
|
|
"e2e": "bun --filter @heygermany/e2e test",
|
|
"e2e:headed": "bun --filter @heygermany/e2e test:headed",
|
|
"pikku": "pikku all",
|
|
"pikku:watch": "pikku all --watch",
|
|
"institutions:populate": "cd backends/database-scraper && bun run start",
|
|
"i18n": "node -e \"console.error('Blocked: legacy Google Sheets i18n generator is disabled. Frontend locales are now expected to be checked in, and backend result translations are DB-backed. Re-enable this only if you intentionally restore a source-of-truth export flow.'); process.exit(1)\"",
|
|
"prebuild": "bun run pikku && bun run dbmigrate && bun run pikku",
|
|
"verify": "bun run tsc",
|
|
"lint": "npx oxlint@latest",
|
|
"prettier": "npx prettier . --write",
|
|
"tsc": "bun run --filter '*' tsc",
|
|
"test": "bun --filter '*' run test",
|
|
"ncu": "bun --filter '*' run ncu -u",
|
|
"ncu:pikku": "ncu -f '/@pikku/.*/' -u && bun install"
|
|
},
|
|
"devDependencies": {
|
|
"@heygermany/functions": "workspace:0.0.0",
|
|
"@pikku/cli": "^0.12.76",
|
|
"kysely": "^0.29.0",
|
|
"prettier": "^3.3.3",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.6"
|
|
},
|
|
"lint-staged": {},
|
|
"packageManager": "bun@1.3.14",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"dependencies": {
|
|
"@pikku/cloudflare": "^0.12.13",
|
|
"@pikku/core": "^0.12.57",
|
|
"@pikku/schema-cfworker": "^0.12.4",
|
|
"remark-gfm": "^4.0.1"
|
|
},
|
|
"overrides": {
|
|
"@pikku/core": "0.12.57"
|
|
}
|
|
}
|