-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.85 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
{
"name": "ledgerloop",
"version": "0.1.0",
"private": true,
"license": "MIT",
"packageManager": "pnpm@10.24.0",
"prettier": "@dylanmerigaud/config/prettier",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "SKIP_ENV_VALIDATION=1 tsx --test \"**/*.test.ts\"",
"knip": "knip",
"format": "prettier --write \"**/*.{ts,tsx,css,mjs}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,css,mjs}\"",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:seed": "tsx db/seed.ts",
"fixture:build": "tsx scripts/build-recorded-fixture.ts",
"hris:capture": "tsx scripts/capture-bamboo.ts",
"erp:capture": "tsx scripts/capture-quickbooks.ts",
"erp:seed": "tsx scripts/seed-quickbooks.ts seed",
"erp:reset": "tsx scripts/seed-quickbooks.ts reset",
"hris:seed": "tsx scripts/seed-bamboo.ts seed",
"hris:reset": "tsx scripts/seed-bamboo.ts reset",
"sanity": "tsx src/mastra/sanity.ts",
"eval": "tsx eval/run.ts",
"eval:edit": "tsx eval/edit-run.ts",
"eval:edit-agent": "tsx eval/edit-agent-run.ts",
"e2e": "playwright test",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css,mjs}": [
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"@anthropic-ai/sdk": "0.104.1",
"@mastra/core": "1.42.0",
"@orpc/client": "^1.14.6",
"@orpc/server": "^1.14.6",
"@orpc/tanstack-query": "^1.14.6",
"@radix-ui/react-tooltip": "1.2.10",
"@tanstack/react-query": "^5.101.1",
"@upstash/ratelimit": "2.0.8",
"@upstash/redis": "1.38.0",
"@xyflow/react": "^12.11.1",
"clsx": "2.1.1",
"dagre": "^0.8.5",
"drizzle-orm": "0.45.2",
"geist": "1.7.2",
"next": "15.5.19",
"pdf-lib": "1.17.1",
"pdfjs-dist": "4.10.38",
"postgres": "3.4.9",
"react": "19.2.7",
"react-dom": "19.2.7",
"sonner": "^2.0.7",
"tailwind-merge": "3.6.0",
"zod": "3.25.76",
"zod-to-json-schema": "3.25.2"
},
"devDependencies": {
"@dylanmerigaud/config": "^0.3.0",
"@playwright/test": "1.60.0",
"@t3-oss/env-nextjs": "^0.13.8",
"@types/dagre": "^0.7.54",
"@types/node": "22.19.21",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@typescript-eslint/utils": "^8.46.1",
"autoprefixer": "10.5.0",
"drizzle-kit": "0.31.10",
"eslint": "^10.7.0",
"husky": "^9.1.7",
"jiti": "^2.7.0",
"knip": "6.16.1",
"lint-staged": "^17.0.8",
"postcss": "8.5.15",
"prettier": "3.8.4",
"tailwindcss": "3.4.17",
"tsx": "4.22.4",
"typescript": "5.9.3"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"eslint-plugin-jsx-a11y>eslint": "10"
}
}
}
}