-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.41 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "next-13-lucia-auth-drizzle-turso-sqlite-magic-link",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:push": "drizzle-kit push:sqlite --config drizzle.config.ts",
"db:generate": "drizzle-kit generate:sqlite --config drizzle.config.ts",
"clean": "rimraf .next",
"turso:create": "turso db create magic-link",
"turso:delete": "turso db destroy magic-link",
"turso:url": "turso db show magic-link --url",
"turso:token": "turso db tokens create magic-link",
"turso:shell": "turso db shell magic-link"
},
"dependencies": {
"@libsql/client": "^0.3.0",
"@lucia-auth/adapter-sqlite": "2.0.0-beta.6",
"@react-email/components": "^0.0.7",
"@types/node": "20.4.1",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@vinejs/vine": "^1.5.0",
"autoprefixer": "10.4.14",
"clsx": "^1.2.1",
"dotenv": "^16.3.1",
"drizzle-orm": "^0.27.1",
"eslint": "8.44.0",
"eslint-config-next": "13.4.9",
"ky": "^0.33.3",
"lucia": "2.0.0-beta.5",
"next": "13.4.9",
"postcss": "8.4.25",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"resend": "^0.16.0",
"tailwindcss": "3.3.2",
"typescript": "5.1.6"
},
"devDependencies": {
"drizzle-kit": "0.19.3",
"rimraf": "^5.0.1"
}
}