-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 791 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 791 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
{
"name": "HeyFun",
"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",
"prisma:generate": "cd apps/app && bunx prisma generate",
"postinstall": "bun prisma:generate",
"generate-keys": "node scripts/gen-certificate.js",
"db:push": "cd apps/app && bunx prisma db push",
"qstash": "npx @upstash/qstash-cli@latest dev"
},
"devDependencies": {
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"turbo": "^2.5.5",
"typescript": "5.8.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.2.18",
"workspaces": [
"apps/*",
"packages/*"
]
}