-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1003 Bytes
/
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
{
"name": "lucia-drizzle-neon-example",
"version": "1.0.0",
"type": "module",
"description": "An example of using Lucia with Drizzle and Neon",
"keywords": [],
"author": "Murad Buyukasik",
"license": "MIT",
"tags": [
"lucia",
"drizzle",
"neon",
"postgresql",
"serverless",
"edge",
"authentication"
],
"scripts": {
"test:unit": "vitest",
"db:generate": "drizzle-kit generate:pg --config drizzle.config.ts",
"db:drop": "drizzle-kit drop --config drizzle.config.ts"
},
"dependencies": {
"@lucia-auth/adapter-postgresql": "2.0.0-beta.6",
"@neondatabase/serverless": "^0.4.26",
"drizzle-orm": "^0.27.2",
"lucia": "2.0.0-beta.5",
"pg": "^8.11.1",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/node": "^20.4.2",
"@types/ws": "^8.5.5",
"@vercel/edge": "^0.3.4",
"@vercel/node": "^2.15.4",
"dotenv": "^16.3.1",
"drizzle-kit": "^0.19.4",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
}
}