-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 934 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 934 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start": "bun run build && bun --cwd=packages/app run start",
"build": "bun --cwd=packages/shared run build && bun --cwd=packages/system run build && bun --cwd=packages/system-react run build && bun --cwd=packages/wallet run build && bun --cwd=packages/worker-relay run build && bun --cwd=packages/bun-sqlite-relay run build && bun --cwd=packages/app run build",
"push-prod": "git switch snort-prod && git merge --ff-only main && git push && git checkout main",
"pre:commit": "bun --cwd=packages/app run intl-extract && bun --cwd=packages/app run intl-compile && bunx --bun biome lint --write"
},
"dependencies": {
"@cloudflare/workers-types": "^4.20251011.0",
"jiti": "^2.6.1",
"typescript": "^5.9.3"
},
"devDependencies": {
"@biomejs/biome": "2.3.9",
"@tauri-apps/cli": "^2.8.4",
"vitepress": "^1.6.4"
}
}