-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.52 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.52 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "dropbox-integration",
"version": "0.1.0",
"scripts": {
"trigger:dev": "npx trigger.dev@4.0.6 dev",
"dev": "next dev --turbopack",
"concurrent:dev": "npx concurrently --kill-others --names \"next,trigger\" --prefix-colors \"yellow,blue\" \"next dev --turbopack\" \"npm run trigger:dev\"",
"build": "next build --turbopack",
"build:all": "sh scripts/build/build.sh",
"start": "next start",
"clean-start": "next build --turbopack && next start",
"typecheck": "tsc --noEmit",
"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",
"supabase:dev": "supabase start --ignore-health-check"
},
"dependencies": {
"@sentry/nextjs": "^10",
"@trigger.dev/sdk": "4.0.6",
"bottleneck": "^2.19.5",
"camelcase-keys": "^10.0.1",
"clsx": "^2.1.1",
"copilot-design-system": "^2.2.6",
"copilot-node-sdk": "^3.16.0",
"dayjs": "^1.11.19",
"dotenv": "^17.2.1",
"drizzle-orm": "^0.44.5",
"drizzle-zod": "^0.8.3",
"dropbox": "^10.34.0",
"html-react-parser": "^5.2.14",
"http-status": "^2.1.0",
"import-in-the-middle": "1.15.0",
"javascript-time-ago": "^2.5.12",
"js-convert-case": "^4.2.0",
"next": "15.5.9",
"node-fetch": "^3.3.2",
"p-retry": "^7.0.0",
"postgres": "^3.4.7",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-linkify": "1.0.0-alpha",
"react-time-ago": "^7.3.5",
"require-in-the-middle": "7.5.2",
"tailwind-merge": "^3.3.1",
"unorm": "^1.6.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",
"@sentry/esbuild-plugin": "^4.6.0",
"@supabase/supabase-js": "^2.56.1",
"@tailwindcss/postcss": "^4",
"@trigger.dev/build": "4.0.6",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-linkify": "^1.0.4",
"@types/unorm": "^1.3.31",
"drizzle-kit": "^0.31.4",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"server-only": "^0.0.1",
"supabase": "^2.39.2",
"tailwindcss": "^4",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.20.5",
"typescript": "^5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css}": [
"pnpm format",
"pnpm lint"
]
}
}