-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.46 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
39
40
41
{
"name": "exeora",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"engines": {
"node": ">=22"
},
"scripts": {
"check": "biome check .",
"check:fix": "biome check --write .",
"check:file-length": "bun run scripts/check-file-length.ts",
"typecheck": "tsc --build && tsc -p apps/web/dashboard/tsconfig.json",
"test": "vitest run",
"test:e2e": "bun run --cwd apps/web build && playwright test",
"ci": "bun run check && bun run check:file-length && bun run typecheck && bun run --cwd apps/web build && bun run test",
"brand": "bun run scripts/brand-assets.ts",
"dev": "bun run --cwd apps/web build && bun run --cwd apps/gateway dev",
"deploy": "bun run --cwd apps/web build && bun run --cwd apps/gateway deploy",
"db:generate": "bun run --cwd apps/gateway db:generate",
"db:migrate:local": "bun run --cwd apps/gateway db:migrate:local",
"db:migrate": "bun run --cwd apps/gateway db:migrate",
"types": "bun run --cwd apps/gateway types",
"secret": "bun run --cwd apps/gateway secret",
"protocol:rust": "bun run scripts/generate-rust-contract.ts && cargo run -p exeora-protocol-gen"
},
"devDependencies": {
"@biomejs/biome": "2.5.9",
"@exeora/design": "workspace:*",
"@playwright/test": "1.62.1",
"@resvg/resvg-js": "^2.6.2",
"@types/node": "latest",
"fflate": "^0.8.3",
"typescript": "7.0.2",
"vitest": "4.1.11",
"zod": "4.4.3"
}
}