Some checks failed
Build and Push Image / docker-build-and-push (push) Failing after 2m13s
Summary:\n- replace scaffold README with project-specific setup, testing, Docker, and CI docs\n- add PR workflow to run lint, unit tests, app build, and Docker build\n- add main-branch workflow to build and push Docker images to Gitea registry\n\nNotes:\n- publish workflow expects REGISTRY_USERNAME and REGISTRY_PASSWORD repository secrets\n- image tags pushed: latest and short commit SHA\n\nTesting:\n- not run locally (workflows execute in Gitea Actions) Reviewed-on: CampbellWireless/trips#1 Co-authored-by: Shaun Campbell <shaun@campbellwireless.net> Co-committed-by: Shaun Campbell <shaun@campbellwireless.net>
46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"name": "trips",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "bunx --bun vite dev",
|
|
"build": "bunx --bun vite build",
|
|
"preview": "bunx --bun vite preview",
|
|
"prepare": "bunx --bun svelte-kit sync || echo ''",
|
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
"lint": "biome lint .",
|
|
"format": "prettier --write .",
|
|
"test": "bunx --bun svelte-kit sync && bunx --bun vitest run",
|
|
"test:watch": "bunx --bun svelte-kit sync && bunx --bun vitest",
|
|
"test:coverage": "vitest run --coverage"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.4.4",
|
|
"@eslint/js": "^10.0.1",
|
|
"@sveltejs/adapter-node": "^5.5.3",
|
|
"@sveltejs/kit": "^2.50.2",
|
|
"@sveltejs/vite-plugin-svelte": "^6.2.4",
|
|
"@tailwindcss/vite": "^4.2.0",
|
|
"@vitest/coverage-v8": "^4.0.18",
|
|
"bun-types": "^1.3.9",
|
|
"eslint": "^10.0.0",
|
|
"eslint-plugin-svelte": "^3.15.0",
|
|
"globals": "^17.3.0",
|
|
"prettier": "^3.8.1",
|
|
"prettier-plugin-svelte": "^3.4.1",
|
|
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
"svelte": "^5.49.2",
|
|
"svelte-check": "^4.3.6",
|
|
"tailwindcss": "^4.2.0",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.56.0",
|
|
"vite": "^7.3.1",
|
|
"vitest": "^4.0.18"
|
|
},
|
|
"dependencies": {
|
|
"@auth/sveltekit": "^1.11.1"
|
|
}
|
|
}
|