-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
34 lines (34 loc) · 951 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
{
"name": "betternews",
"scripts": {
"dev": "bun run --hot server/index.ts",
"format:write": "prettier . --write",
"format:check": "prettier . --check",
"lint:server": "cd server && eslint .",
"lint:frontend": "cd frontend && eslint .",
"start": "bun server/index.ts"
},
"dependencies": {
"@hono/zod-validator": "^0.4.1",
"@lucia-auth/adapter-drizzle": "^1.1.0",
"drizzle-orm": "^0.34.1",
"drizzle-zod": "^0.5.1",
"hono": "^4.6.3",
"lucia": "^3.2.1",
"postgres": "^3.4.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/compat": "^1.2.0",
"@eslint/js": "^9.12.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@types/bun": "latest",
"drizzle-kit": "^0.25.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-drizzle": "^0.2.3",
"globals": "^15.10.0",
"prettier": "^3.3.3",
"typescript-eslint": "^8.8.1"
}
}