-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.82 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "xero-integration",
"version": "0.1.0",
"scripts": {
"dev": "next dev --turbopack",
"trigger:dev": "npx trigger.dev@4.4.4 dev",
"trigger:deploy": "npx trigger.dev@4.4.4 deploy",
"build": "next build --turbopack",
"build:all": "sh scripts/build/build.sh",
"start": "next start",
"clean-start": "next build --turbopack && next start",
"typecheck": "tsc --noEmit && pnpm typecheck:test",
"typecheck:test": "tsc --noEmit -p test/tsconfig.json",
"lint": "biome check",
"format": "biome format --write",
"lint-staged": "lint-staged",
"prepare": "husky",
"ex": "tsx --tsconfig tsconfig.tsx.json --require dotenv/config --require tsconfig-paths/register",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@assembly-js/node-sdk": "^4.2.2",
"@sentry/esbuild-plugin": "^4.6.1",
"@sentry/nextjs": "^10.29.0",
"@trigger.dev/build": "4.4.4",
"@trigger.dev/sdk": "4.4.4",
"@types/deep-equal": "^1.0.4",
"@types/html-to-text": "^9.0.4",
"bottleneck": "^2.19.5",
"copilot-design-system": "^2.2.3",
"dayjs": "^1.11.19",
"deep-equal": "^2.2.3",
"dotenv": "^17.2.1",
"drizzle-orm": "^0.44.5",
"drizzle-zod": "^0.8.3",
"html-to-text": "^9.0.5",
"http-status": "^2.1.0",
"immer": "^10.1.3",
"import-in-the-middle": "2.0.0",
"json-2-csv": "^5.5.10",
"next": "16.2.6",
"p-retry": "^7.0.0",
"postgres": "^3.4.7",
"react": "19.2.6",
"react-dom": "19.2.6",
"react-linkify": "1.0.0-alpha",
"require-in-the-middle": "8.0.1",
"xero-node": "^13.0.0",
"zod": "^4.1.1"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/types": "^19.8.1",
"@supabase/supabase-js": "^2.56.1",
"@tailwindcss/postcss": "^4",
"@testcontainers/postgresql": "^11.14.0",
"@types/node": "^20",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@types/react-linkify": "^1.0.4",
"@vitest/coverage-v8": "^4.1.9",
"drizzle-kit": "^0.31.4",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"next-test-api-route-handler": "^5.0.5",
"server-only": "^0.0.1",
"supabase": "^2.39.2",
"tailwindcss": "^4",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.20.5",
"typescript": "^5",
"vitest": "^4.1.9"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css}": [
"pnpm format",
"pnpm lint"
]
},
"pnpm": {
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
},
"onlyBuiltDependencies": [
"@sentry/cli",
"@tailwindcss/oxide",
"esbuild",
"sharp",
"supabase"
]
}
}