How big is your personal project?

I have a personal project that I've been working on for the past few years and when I ran npx cloc on my frontend and backend codebases, I realized the project has just crossed 50k LOC.

This made me wonder, for a personal project (ie. one where you are the sole contributor), would this be considered a large projects or are these rookie numbers? Interested to hear how big some of your personal projects are.

BTW to check LOC, I ran this:

npx cloc --exclude-dir=node_modules --exclude-ext=json .

Cloc NPM Package

My Backend

```

Language files blank comment code

TypeScript 369 3233 994 27051 SQL 38 98 272 816 Dockerfile 6 9 12 74 JavaScript 7 0 10 62 YAML 1 8 0 23

Bourne Shell 2 5 1 16

SUM: 423 3353 1289 28042

```

My Frontend

```

Language files blank comment code

JavaScript 426 13558 29434 395250 TypeScript 668 3556 465 37608 Markdown 6 85 0 149 HTML 2 0 0 27 Bourne Shell 3 8 1 24

CSS 1 0 0 1

SUM: 1106 17207 29900 433059

```