Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
patelvivekdev committed Sep 4, 2024
1 parent 9ce801f commit cc4d747
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 28 deletions.
Binary file modified bun.lockb
Binary file not shown.
55 changes: 28 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,60 +21,61 @@
"db:migrate": "drizzle-kit migrate"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.3.0",
"@epic-web/totp": "^1.1.2",
"@auth/drizzle-adapter": "^1.4.2",
"@epic-web/totp": "^1.1.3",
"@libsql/client": "^0.6.2",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.0",
"@radix-ui/react-dropdown-menu": "^2.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@react-email/components": "^0.0.19",
"@simplewebauthn/browser": "9.0.1",
"@simplewebauthn/server": "9.0.3",
"@tanstack/react-table": "^8.17.3",
"@tanstack/react-table": "^8.20.5",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.31.2",
"framer-motion": "^11.2.11",
"drizzle-orm": "^0.33.0",
"framer-motion": "^11.4.0",
"input-otp": "^1.2.4",
"libsql": "^0.3.19",
"lucide-react": "^0.395.0",
"next": "14.2.4",
"next-auth": "5.0.0-beta.18",
"next": "14.2.7",
"next-auth": "^5.0.0-beta.20",
"next-themes": "^0.3.0",
"qrcode": "^1.5.3",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"resend": "^3.3.0",
"tailwind-merge": "^2.3.0",
"resend": "^3.5.0",
"sharp": "^0.33.5",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.14.6",
"@types/node": "^20.16.4",
"@types/qrcode": "^1.5.5",
"@types/react": "^18.3.3",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"drizzle-kit": "^0.22.7",
"autoprefixer": "^10.4.20",
"drizzle-kit": "^0.24.2",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.4",
"eslint-config-next": "14.2.7",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.5"
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"postcss": "^8.4.44",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4"
}
}
2 changes: 1 addition & 1 deletion src/db/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const users = sqliteTable('user', {
.primaryKey()
.$defaultFn(() => crypto.randomUUID()),
name: text('name'),
email: text('email').notNull(),
email: text('email').unique().notNull(),
username: text('username'),
password: text('password'),
emailVerified: integer('emailVerified', { mode: 'timestamp_ms' }),
Expand Down

0 comments on commit cc4d747

Please sign in to comment.