diff options
| author | MohamedBassem <me@mbassem.com> | 2024-02-06 13:22:39 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-02-06 13:22:39 +0000 |
| commit | 2f59dbf31c4f1ed24def0368d946378a4b57ad12 (patch) | |
| tree | 08178a285332d4c9ad29429985cd9f0b60e851dd | |
| parent | 4c901d073376ab9fd37284801011a12261d5963d (diff) | |
| download | karakeep-2f59dbf31c4f1ed24def0368d946378a4b57ad12.tar.zst | |
Structure the repo into workspaces
| -rw-r--r-- | .eslintrc.json (renamed from web/.eslintrc.json) | 0 | ||||
| -rw-r--r-- | .gitignore (renamed from web/.gitignore) | 14 | ||||
| -rw-r--r-- | .prettierignore (renamed from web/.prettierignore) | 0 | ||||
| -rw-r--r-- | .prettierrc (renamed from web/.prettierrc) | 0 | ||||
| -rwxr-xr-x | bun.lockb | bin | 0 -> 158344 bytes | |||
| -rw-r--r-- | package.json | 17 | ||||
| -rw-r--r-- | web/package.json | 5 |
7 files changed, 24 insertions, 12 deletions
diff --git a/web/.eslintrc.json b/.eslintrc.json index c580ca7e..c580ca7e 100644 --- a/web/.eslintrc.json +++ b/.eslintrc.json diff --git a/web/.gitignore b/.gitignore index 5bcde103..bd3396c4 100644 --- a/web/.gitignore +++ b/.gitignore @@ -1,20 +1,20 @@ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # dependencies -/node_modules -/.pnp +node_modules +.pnp .pnp.js .yarn/install-state.gz # testing -/coverage +coverage # next.js -/.next/ -/out/ +.next/ +out/ # production -/build +build # misc .DS_Store @@ -36,4 +36,4 @@ yarn-error.log* next-env.d.ts # The sqlite database -prisma/*dev.db* +**/prisma/*dev.db* diff --git a/web/.prettierignore b/.prettierignore index 22345d29..22345d29 100644 --- a/web/.prettierignore +++ b/.prettierignore diff --git a/web/.prettierrc b/.prettierrc index 0967ef42..0967ef42 100644 --- a/web/.prettierrc +++ b/.prettierrc diff --git a/bun.lockb b/bun.lockb Binary files differnew file mode 100755 index 00000000..4a85f011 --- /dev/null +++ b/bun.lockb diff --git a/package.json b/package.json new file mode 100644 index 00000000..bc4fa98a --- /dev/null +++ b/package.json @@ -0,0 +1,17 @@ +{ + "name": "remember", + "version": "0.1.0", + "private": true, + "workspaces": [ + "web" + ], + "dependencies": { + "@next/eslint-plugin-next": "^14.1.0", + "@typescript-eslint/eslint-plugin": "^6.21.0", + "@typescript-eslint/parser": "^6.21.0", + "class-variance-authority": "^0.7.0", + "eslint-config-prettier": "^9.1.0", + "eslint-plugin-react": "^7.33.2", + "eslint-plugin-react-hooks": "^4.6.0" + } +} diff --git a/web/package.json b/web/package.json index 3ff0d2f8..e5c99db7 100644 --- a/web/package.json +++ b/web/package.json @@ -11,13 +11,8 @@ "dependencies": { "@next-auth/prisma-adapter": "^1.0.7", "@next/eslint-plugin-next": "^14.1.0", - "@typescript-eslint/eslint-plugin": "^6.21.0", - "@typescript-eslint/parser": "^6.21.0", "class-variance-authority": "^0.7.0", "clsx": "^2.1.0", - "eslint-config-prettier": "^9.1.0", - "eslint-plugin-react": "^7.33.2", - "eslint-plugin-react-hooks": "^4.6.0", "install": "^0.13.0", "lucide-react": "^0.322.0", "next": "14.1.0", |
