diff --git a/README.md b/README.md index e215bc4..63bab5e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,12 @@ This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app). +## Dev to-do list + +[x] deploy to Coolify instance https://new-site.inzight.co.nz +[] set-up supabase local instance (docker compose) +[] set-up supabase on coolify +[] get basic config working + ## Getting Started First, run the development server: diff --git a/package.json b/package.json index 8b9b806..5d48190 100644 --- a/package.json +++ b/package.json @@ -9,16 +9,21 @@ "lint": "next lint" }, "dependencies": { + "next": "15.2.4", "react": "^19.0.0", - "react-dom": "^19.0.0", - "next": "15.2.4" + "react-dom": "^19.0.0" }, "devDependencies": { - "typescript": "^5", + "@tailwindcss/postcss": "^4", "@types/node": "^20", "@types/react": "^19", "@types/react-dom": "^19", - "@tailwindcss/postcss": "^4", - "tailwindcss": "^4" + "tailwindcss": "^4", + "typescript": "^5" + }, + "pnpm": { + "onlyBuiltDependencies": [ + "sharp" + ] } }