forked from elliotBraem/efizzybot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 947 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": "curatedotfun",
"version": "1.0.0",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"dev": "bunx turbo run dev",
"build": "bunx turbo run build",
"start": "cd backend && NODE_ENV=production bun run dist/index.js",
"db:up": "cd backend && bun run db:up",
"db:push": "cd backend && bun run db:push",
"db:migrate": "cd backend && bun run db:migrate",
"lint": "bunx turbo run lint",
"deploy:init": "fly launch && fly consul attach",
"deploy": "fly deploy",
"fmt": "prettier --write '**/*.{js,jsx,ts,tsx,json}'",
"fmt:check": "prettier --check '**/*.{js,jsx,ts,tsx,json}'",
"docs": "bunx turbo run docs"
},
"workspaces": [
"frontend",
"backend",
"docs"
],
"devDependencies": {
"turbo": "latest",
"prettier": "^3.3.3"
},
"dependencies": {
"@curatedotfun/supabase": "^0.0.5",
"elysia-rate-limit": "^4.1.0"
}
}