-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.37 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
{
"name": "actuo",
"version": "0.0.1",
"private": true,
"description": "AI-native expense intelligence platform with a universal WebMCP Copilot",
"engines": {
"node": ">=22",
"pnpm": ">=9.0.0 <10.0.0"
},
"scripts": {
"dev": "pnpm run build:shared && concurrently -n backend,frontend -c blue,magenta \"pnpm run dev:backend\" \"pnpm run dev:frontend\"",
"dev:clean": "rm -rf frontend/.angular/cache && pnpm run dev",
"dev:backend": "pnpm --filter backend run start:dev",
"dev:frontend": "pnpm --filter frontend run start",
"build:shared": "pnpm --filter @actuo/shared run build",
"build": "pnpm run build:shared && pnpm --filter backend run build && pnpm --filter frontend run build && pnpm run build:seo",
"build:seo": "node scripts/stamp-seo.mjs",
"verify:deploy": "node scripts/verify-deploy.mjs",
"backfill:fx": "pnpm --filter backend exec node scripts/backfill-fx.mjs",
"start": "node server.mjs",
"test": "pnpm --filter @actuo/shared run test && pnpm --filter backend run test && pnpm --filter frontend run test",
"test:e2e": "pnpm --filter backend run test:e2e"
},
"devDependencies": {
"concurrently": "^10.0.5",
"supabase": "^2.116.0"
},
"packageManager": "pnpm@9.15.5+sha512.845196026aab1cc3f098a0474b64dfbab2afe7a1b4e91dd86895d8e4aa32a7a6d03049e2d0ad770bbe4de023a7122fb68c1a1d6e0d033c7076085f9d5d4800d4"
}