-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 765 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 765 Bytes
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
{
"name": "codeforces",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"auth:generate": "bun x better-auth generate --output ./packages/db/prisma/schema.prisma --config ./apps/backend/src/lib/auth.ts "
},
"devDependencies": {
"@types/express": "^5.0.6",
"better-auth": "^1.4.15",
"prettier": "^3.7.4",
"turbo": "^2.7.3",
"typescript": "5.9.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.3.4",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@better-auth/cli": "^1.4.15",
"express": "^5.2.1"
}
}