-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.63 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.63 KB
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
{
"name": "totem-workspace",
"private": "true",
"packageManager": "bun@1.3.6",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"seed": "cd apps/backend && bun run seed",
"clean": "bun run clean:deps && bun run clean:sessions && bun run clean:logs",
"clean:deps": "bun x shx rm -rf apps/*/node_modules packages/*/node_modules node_modules",
"clean:sessions": "bun x shx rm -rf apps/notifier/data",
"clean:logs": "bun x shx rm -rf apps/*/data/**/logs",
"dev": "bun x concurrently -n backend,notifier,frontend -c green,cyan,blue \"bun run dev:backend\" \"bun run dev:notifier\" \"bun run dev:frontend\"",
"dev:backend": "cd apps/backend && bun run dev",
"dev:frontend": "cd apps/frontend && bun run dev",
"dev:notifier": "cd apps/notifier && bun run dev",
"dev:tunnel": "bun run scripts/tunnel.ts start",
"dev:tunnel:reset": "bun run scripts/tunnel.ts stop",
"build:frontend": "cd apps/frontend && bun run build",
"build": "bun run build:frontend",
"prod:soft": "pm2 start ecosystem.config.js",
"prod:soft:stop": "pm2 stop ecosystem.config.js",
"deploy": "bash deployment/deploy.sh",
"format": "biome format --write",
"format:md": "bun x prettier \"**/*.{md,yml,yaml}\" --write --print-width=80 --prose-wrap=always"
},
"devDependencies": {
"@totem/tsconfig": "workspace:*",
"@types/bun": "^1.3.6",
"@types/node": "^25.0.9",
"bun-types": "^1.3.6",
"pm2": "^6.0.14",
"shx": "^0.4.0",
"typescript": "^5.9.3"
}
}