-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 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
{
"name": "lucia-auth-server",
"type": "module",
"scripts": {
"dev": "nodemon",
"db:generate": "drizzle-kit generate:pg",
"db:drop": "drizzle-kit drop",
"lint": "eslint ./src/**/*.ts",
"lint:fix": "eslint --fix ./src/**/*.ts"
},
"devDependencies": {
"@types/express": "^4.17.20",
"@types/node": "^20.8.10",
"@types/nodemailer": "^6.4.14",
"@types/ws": "^8.5.9",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"drizzle-kit": "^0.19.13",
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"nodemon": "^3.0.1",
"tsx": "^3.14.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@badrap/result": "^0.2.13",
"@lucia-auth/adapter-postgresql": "^2.0.2",
"@neondatabase/serverless": "^0.6.0",
"dotenv": "^16.3.1",
"drizzle-orm": "^0.28.6",
"drizzle-zod": "^0.5.1",
"express": "^4.18.2",
"lucia": "^2.7.3",
"nodemailer": "^6.9.7",
"ts-results": "^3.3.0",
"typescript": "^5.2.2",
"ws": "^8.14.2",
"zod": "^3.22.4"
}
}