-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.73 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.73 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "ledgr",
"version": "0.3.1",
"private": true,
"scripts": {
"dev": "next dev --turbopack --port 4200",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:setup": "pnpm db:generate && pnpm db:migrate",
"db:studio": "drizzle-kit studio",
"rotate-keys": "node --env-file-if-exists=.env --import tsx scripts/rotate-keys.ts",
"reset-password": "node --env-file-if-exists=.env --import tsx scripts/reset-password.ts",
"backfill-clean-names": "node --env-file-if-exists=.env --import tsx scripts/backfill-clean-names.ts",
"backfill-transfers": "node --env-file-if-exists=.env --import tsx scripts/backfill-transfers.ts",
"backfill-investment-activity": "node --env-file-if-exists=.env --import tsx scripts/backfill-investment-activity.ts",
"backfill-balances": "node --env-file-if-exists=.env --import tsx scripts/backfill-balances.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:mutate": "stryker run",
"test:mutate:incremental": "stryker run --incremental",
"test:mutate:diff": "bash scripts/mutate-diff.sh",
"test:changed": "vitest related --run $(git diff --name-only HEAD)",
"prepare": "simple-git-hooks",
"build:mcp-widgets": "tsx src/lib/mcp/apps/build.ts",
"dev:db": "docker compose up db -d",
"dev:setup": "pnpm dev:db && until pg_isready -h localhost -p ${DB_PORT:-5433} 2>/dev/null; do sleep 1; done && pnpm db:migrate && pnpm dev"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix"
},
"dependencies": {
"@ai-sdk/anthropic": "^4.0.42",
"@ai-sdk/google": "^4.0.51",
"@ai-sdk/openai": "^4.0.47",
"@ai-sdk/openai-compatible": "^3.0.37",
"@ai-sdk/react": "^4.0.82",
"@base-ui/react": "^1.7.0",
"@better-auth/passkey": "^1.7.1",
"@modelcontextprotocol/server": "2.0.0",
"ai": "^7.0.79",
"better-auth": "^1.7.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"d3-sankey": "^0.12.3",
"drizzle-orm": "^0.45.2",
"jose": "^6.2.10",
"lucide-react": "^1.34.0",
"next": "16.3.3",
"node-cron": "^4.6.0",
"papaparse": "^5.7.0",
"pg": "^8.23.0",
"plaid": "^43.0.0",
"react": "19.2.8",
"react-dom": "19.2.8",
"react-grid-layout": "^2.2.4",
"react-plaid-link": "^4.1.1",
"recharts": "^3.10.1",
"shadcn": "^4.19.0",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"uuid": "^14.0.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@fast-check/vitest": "^0.4.1",
"@playwright/test": "^1.62.1",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/typescript-checker": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@tailwindcss/postcss": "^4.3.3",
"@testcontainers/postgresql": "^12.1.0",
"@testing-library/react": "^16.3.2",
"@types/d3-sankey": "^0.12.5",
"@types/jsdom": "^28.0.3",
"@types/node": "^26.3.0",
"@types/node-cron": "^3.0.11",
"@types/papaparse": "^5.5.2",
"@types/pg": "^8.23.1",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@vitest/coverage-v8": "^4.1.11",
"drizzle-kit": "^0.31.10",
"esbuild": "^0.28.2",
"eslint": "^9",
"eslint-config-next": "16.3.3",
"fast-check": "^4.9.0",
"jsdom": "^29.1.1",
"lint-staged": "^17.3.0",
"msw": "^2.15.0",
"simple-git-hooks": "^2.13.1",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.12",
"typescript": "^6.0.3",
"vitest": "^4.1.11"
}
}