-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.95 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.95 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
{
"name": "custom-app-base",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"trigger:dev": "npx trigger.dev@4.3.0 dev",
"dev:embedded": "node scripts/dev.js",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:check": "eslint \"{src,test}/**/*.{ts,tsx}\"",
"prettier:check": "prettier --check \"{src,test}/**/*.{ts,tsx}\"",
"lint:fix": "npm run lint:check -- --fix",
"prettier:fix": "prettier --write .",
"lint-staged": "npx lint-staged",
"prepare": "husky",
"supabase:dev": "supabase start --ignore-health-check",
"cmd:rename-qb-accounts": "tsx src/cmd/renameQbAccount/index.ts",
"patch-assembly-node-sdk": "cp ./lib-patches/assembly-js-node-sdk.js ./node_modules/@assembly-js/node-sdk/dist/api/init.js",
"cmd:backfill-product-info": "tsx src/cmd/backfillProductInfo/index.ts",
"cmd:sync-missed-invoices": "tsx src/cmd/syncMissedInvoices/index.ts",
"cmd:sync-missed-products": "tsx src/cmd/syncMissedProducts/index.ts"
},
"dependencies": {
"@sentry/nextjs": "^9.13.0",
"@supabase/supabase-js": "^2.49.4",
"@trigger.dev/sdk": "4.3.0",
"bottleneck": "^2.19.5",
"copilot-design-system": "^2.0.10",
"copilot-node-sdk": "~3.16.0",
"dayjs": "^1.11.13",
"deep-equal": "^2.2.3",
"drizzle-orm": "^0.42.0",
"drizzle-zod": "^0.7.1",
"html-to-text": "^9.0.5",
"http-status": "^2.1.0",
"intuit-oauth": "^4.2.2",
"javascript-time-ago": "^2.5.11",
"json-2-csv": "^5.5.9",
"next": "15.4.10",
"open": "^10.1.0",
"p-retry": "^6.2.1",
"postgres": "^3.4.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"react": "^18",
"react-code-blocks": "^0.1.6",
"react-dom": "^18",
"react-error-boundary": "^6.0.0",
"react-linkify": "^1.0.0-alpha",
"react-time-ago": "^7.3.3",
"supabase": "2.84.4",
"swr": "^2.3.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.24.0",
"@ngrok/ngrok": "^1.4.1",
"@sentry/esbuild-plugin": "^4.6.1",
"@tailwindcss/postcss": "^4.1.5",
"@trigger.dev/build": "4.3.0",
"@types/deep-equal": "^1.0.4",
"@types/html-to-text": "^9",
"@types/node": "^22.14.1",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-linkify": "^1",
"autoprefixer": "^10.4.0",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.31.0",
"eslint": "^9.24.0",
"eslint-config-next": "15.3.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"tailwindcss": "^4.1.5",
"tsx": "^4.21.0",
"typescript": "^5.8.3"
},
"packageManager": "yarn@4.9.1",
"resolutions": {
"@types/react": "19.1.2",
"@types/react-dom": "19.1.2"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"yarn lint:fix",
"yarn prettier:fix"
]
}
}