Skip to content
This repository was archived by the owner on Dec 6, 2025. It is now read-only.

Commit cc4d747

Browse files
committed
Update version
1 parent 9ce801f commit cc4d747

File tree

3 files changed

+29
-28
lines changed

3 files changed

+29
-28
lines changed

bun.lockb

14.7 KB
Binary file not shown.

package.json

Lines changed: 28 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -21,60 +21,61 @@
2121
"db:migrate": "drizzle-kit migrate"
2222
},
2323
"dependencies": {
24-
"@auth/drizzle-adapter": "^1.3.0",
25-
"@epic-web/totp": "^1.1.2",
24+
"@auth/drizzle-adapter": "^1.4.2",
25+
"@epic-web/totp": "^1.1.3",
2626
"@libsql/client": "^0.6.2",
2727
"@radix-ui/react-avatar": "^1.1.0",
28-
"@radix-ui/react-checkbox": "^1.1.0",
29-
"@radix-ui/react-dialog": "^1.1.0",
30-
"@radix-ui/react-dropdown-menu": "^2.1.0",
28+
"@radix-ui/react-checkbox": "^1.1.1",
29+
"@radix-ui/react-dialog": "^1.1.1",
30+
"@radix-ui/react-dropdown-menu": "^2.1.1",
3131
"@radix-ui/react-icons": "^1.3.0",
3232
"@radix-ui/react-label": "^2.1.0",
33-
"@radix-ui/react-select": "^2.1.0",
33+
"@radix-ui/react-select": "^2.1.1",
3434
"@radix-ui/react-slot": "^1.1.0",
3535
"@react-email/components": "^0.0.19",
3636
"@simplewebauthn/browser": "9.0.1",
3737
"@simplewebauthn/server": "9.0.3",
38-
"@tanstack/react-table": "^8.17.3",
38+
"@tanstack/react-table": "^8.20.5",
3939
"bcryptjs": "^2.4.3",
4040
"class-variance-authority": "^0.7.0",
4141
"clsx": "^2.1.1",
4242
"dotenv": "^16.4.5",
43-
"drizzle-orm": "^0.31.2",
44-
"framer-motion": "^11.2.11",
43+
"drizzle-orm": "^0.33.0",
44+
"framer-motion": "^11.4.0",
4545
"input-otp": "^1.2.4",
4646
"libsql": "^0.3.19",
4747
"lucide-react": "^0.395.0",
48-
"next": "14.2.4",
49-
"next-auth": "5.0.0-beta.18",
48+
"next": "14.2.7",
49+
"next-auth": "^5.0.0-beta.20",
5050
"next-themes": "^0.3.0",
51-
"qrcode": "^1.5.3",
51+
"qrcode": "^1.5.4",
5252
"react": "^18.3.1",
5353
"react-dom": "^18.3.1",
5454
"react-hot-toast": "^2.4.1",
55-
"resend": "^3.3.0",
56-
"tailwind-merge": "^2.3.0",
55+
"resend": "^3.5.0",
56+
"sharp": "^0.33.5",
57+
"tailwind-merge": "^2.5.2",
5758
"tailwindcss-animate": "^1.0.7",
5859
"zod": "^3.23.8"
5960
},
6061
"devDependencies": {
6162
"@types/bcryptjs": "^2.4.6",
62-
"@types/node": "^20.14.6",
63+
"@types/node": "^20.16.4",
6364
"@types/qrcode": "^1.5.5",
64-
"@types/react": "^18.3.3",
65+
"@types/react": "^18.3.5",
6566
"@types/react-dom": "^18.3.0",
66-
"autoprefixer": "^10.4.19",
67-
"drizzle-kit": "^0.22.7",
67+
"autoprefixer": "^10.4.20",
68+
"drizzle-kit": "^0.24.2",
6869
"eslint": "^8.57.0",
69-
"eslint-config-next": "14.2.4",
70+
"eslint-config-next": "14.2.7",
7071
"eslint-config-prettier": "^9.1.0",
71-
"eslint-plugin-prettier": "^5.1.3",
72-
"husky": "^9.0.11",
73-
"lint-staged": "^15.2.7",
74-
"postcss": "^8.4.38",
75-
"prettier": "^3.3.2",
76-
"prettier-plugin-tailwindcss": "^0.6.5",
77-
"tailwindcss": "^3.4.4",
78-
"typescript": "^5.4.5"
72+
"eslint-plugin-prettier": "^5.2.1",
73+
"husky": "^9.1.5",
74+
"lint-staged": "^15.2.10",
75+
"postcss": "^8.4.44",
76+
"prettier": "^3.3.3",
77+
"prettier-plugin-tailwindcss": "^0.6.6",
78+
"tailwindcss": "^3.4.10",
79+
"typescript": "^5.5.4"
7980
}
8081
}

src/db/schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const users = sqliteTable('user', {
1212
.primaryKey()
1313
.$defaultFn(() => crypto.randomUUID()),
1414
name: text('name'),
15-
email: text('email').notNull(),
15+
email: text('email').unique().notNull(),
1616
username: text('username'),
1717
password: text('password'),
1818
emailVerified: integer('emailVerified', { mode: 'timestamp_ms' }),

0 commit comments

Comments
 (0)