-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.57 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
{
"name": "pickforge-platform",
"version": "0.2.1",
"private": true,
"type": "module",
"packageManager": "bun@1.3.12",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun run --cwd packages/tauri-release build && bun run --cwd packages/tauri-updater build && bun run --cwd packages/auth build && bun run --cwd packages/brand build && bun run --cwd packages/flags build && bun run --cwd packages/billing build && bun run --cwd packages/edge-shared build && bun run --cwd packages/sync build && bun run --cwd packages/review-tutor build && bun run --cwd packages/complexity-gate build",
"test": "vitest run",
"test:supabase": "supabase test db supabase/tests/database --local && bun run supabase/tests/welcome-credits-concurrency.ts && bun test packages/billing/test/checkout-lifecycle.contract.test.ts && bun test packages/sync/test/lww.contract.test.ts && bun test packages/edge-shared/test/router-attempt.contract.test.ts",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint packages vitest.config.ts",
"check": "bun run typecheck && bun run lint && bun run test && bun run test:coverage && bun run build"
},
"devDependencies": {
"@types/bun": "^1.3.5",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^4.0.14",
"eslint": "^10.7.0",
"happy-dom": "^20.8.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.65.0",
"vitest": "^4.0.14"
},
"overrides": {
"brace-expansion": "5.0.9",
"nanoid": "3.3.18",
"postcss": "8.5.23"
}
}