-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 1.85 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "next-13-lucia-auth-drizzle-turso-sqlite-magic-link",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"turbo": "next dev --turbo",
"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",
"db:studio": "drizzle-kit studio --host localhost --port 3002 --verbose --config drizzle.config.ts",
"db:seed": "node --import tsx --env-file .env ./seed/insert.ts",
"db:delete": "node --import tsx --env-file .env ./seed/delete.ts",
"ratelimit:signup": "tsx ./rate-limit/signup.ts",
"ratelimit:login": "tsx ./rate-limit/login.ts",
"clean": "rimraf .next",
"knip": "knip"
},
"dependencies": {
"@conform-to/react": "1.0.0",
"@conform-to/zod": "1.0.0",
"@lucia-auth/adapter-drizzle": "1.0.0",
"@types/node": "20.11.16",
"@types/react": "18.2.52",
"@types/react-dom": "18.2.18",
"autoprefixer": "10.4.17",
"better-sqlite3": "^9.4.0",
"clsx": "^2.1.0",
"dotenv": "^16.4.1",
"drizzle-orm": "^0.29.3",
"eslint": "8.56.0",
"eslint-config-next": "14.1.0",
"ioredis": "^5.3.2",
"lucia": "3.0.1",
"next": "^14.1.0",
"next-client-cookies": "^1.1.0",
"oslo": "^1.0.4",
"postcss": "8.4.33",
"rate-limiter-flexible": "^4.0.1",
"react": "^18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.4.1",
"thumbmarkjs": "^0.12.1",
"typescript": "5.3.3",
"ulidx": "^2.2.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.9",
"axios": "^1.6.7",
"drizzle-kit": "^0.20.14",
"knip": "^4.3.0",
"node-html-parser": "^6.1.12",
"playwright": "^1.41.2",
"puppeteer": "^21.11.0",
"rimraf": "^5.0.5",
"tsx": "^4.7.0"
}
}