Skip to content

Commit

Permalink
Merge pull request #1 from miicolas/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
miicolas authored Aug 14, 2024
2 parents db1b61b + 1f0e6d9 commit 61d8b24
Show file tree
Hide file tree
Showing 39 changed files with 2,573 additions and 29 deletions.
1 change: 0 additions & 1 deletion .env

This file was deleted.

9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
/.pnp
.pnp.js
.yarn/install-state.gz
.npmrc

# testing
/coverage
Expand All @@ -28,9 +29,17 @@ yarn-error.log*
# local env files
.env*.local

# env
.env



# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts



5 changes: 5 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
images: {
remotePatterns: [
{ hostname: "avatars.githubusercontent.com" },
],
},
};

export default nextConfig;
29 changes: 26 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,49 @@
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build": "npx prisma generate && next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@auth/prisma-adapter": "^2.4.2",
"@hookform/resolvers": "^3.9.0",
"@prisma/client": "5.16.2",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@tiptap/extension-character-count": "^2.5.8",
"@tiptap/extension-code-block": "^2.5.8",
"@tiptap/extension-code-block-lowlight": "^2.5.8",
"@tiptap/extension-hard-break": "^2.5.7",
"@tiptap/extension-image": "^2.5.8",
"@tiptap/extension-link": "^2.5.7",
"@tiptap/pm": "^2.5.7",
"@tiptap/react": "^2.5.7",
"@tiptap/starter-kit": "^2.5.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "12.0.0-alpha.0",
"lowlight": "^3.1.0",
"lucide-react": "^0.400.0",
"next": "14.2.4",
"prisma": "^5.16.2",
"next-auth": "5.0.0-beta.20",
"next-themes": "^0.3.0",
"npm": "^10.8.2",
"quill": "2.0.2",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.52.1",
"sonner": "^1.5.0",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7"
"tailwindcss-animate": "^1.0.7",
"yjs": "^13.6.18",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20",
Expand All @@ -33,6 +55,7 @@
"eslint": "^8",
"eslint-config-next": "14.2.4",
"postcss": "^8",
"prisma": "^5.16.2",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
Expand Down
Loading

0 comments on commit 61d8b24

Please sign in to comment.