diff --git a/web/.eslintrc.json b/.eslintrc.json similarity index 100% rename from web/.eslintrc.json rename to .eslintrc.json diff --git a/web/.gitignore b/.gitignore similarity index 84% rename from web/.gitignore rename to .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 similarity index 100% rename from web/.prettierignore rename to .prettierignore diff --git a/web/.prettierrc b/.prettierrc similarity index 100% rename from web/.prettierrc rename to .prettierrc diff --git a/bun.lockb b/bun.lockb new file mode 100755 index 00000000..4a85f011 Binary files /dev/null and b/bun.lockb differ 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",