-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.51 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.51 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
108
109
110
111
112
113
{
"name": "webapp",
"version": "2.31.5",
"private": true,
"scripts": {
"dev": "next dev",
"prebuild": "pnpm format && pnpm lint",
"build": "DISABLE_STATIC_GENERATION=true next build --webpack",
"start": "next start",
"lint": "oxlint --fix --fix-suggestions",
"format": "prettier --write --log-level warn './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"test": "vitest",
"test:run": "vitest run",
"worktree:exec": "tsx scripts/worktree-exec.ts",
"version:bump": "tsx scripts/version-bump.ts",
"analyze": "DISABLE_STATIC_GENERATION=true ANALYZE_BUNDLE=true next build --webpack"
},
"dependencies": {
"@ai-sdk/google": "^3.0.18",
"@ai-sdk/openai": "^3.0.23",
"@aws-sdk/client-s3": "^3.980.0",
"@aws-sdk/s3-request-presigner": "^3.980.0",
"@bprogress/next": "^3.2.12",
"@leeoniya/ufuzzy": "^1.0.19",
"@privy-io/react-auth": "^3.15.0",
"@privy-io/server-auth": "^1.32.5",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@sentry/nextjs": "^10.42.0",
"@tanstack/react-query": "^5.90.17",
"@tanstack/react-virtual": "^3.13.16",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.36.1",
"ai": "^6.0.64",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"input-otp": "^1.4.2",
"iron-session": "^8.0.4",
"lucide-react": "^0.562.0",
"mammoth": "^1.11.0",
"next": "16.1.1",
"nuqs": "^2.8.6",
"pdf-parse": "^2.4.5",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-error-boundary": "^6.0.2",
"slugify": "^1.6.6",
"tailwind-merge": "^3.4.0",
"transliteration": "^2.6.0",
"zod": "^4.3.5",
"zustand": "^5.0.10"
},
"devDependencies": {
"@commitlint/cli": "^20.3.0",
"@commitlint/config-conventional": "^20.3.0",
"@dotenvx/dotenvx": "^1.52.0",
"@inquirer/prompts": "^8.2.0",
"@next/bundle-analyzer": "^16.1.6",
"@prettier/plugin-oxc": "^0.1.3",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/pdf-parse": "^1.1.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/semver": "^7.7.1",
"@vitejs/plugin-react": "^5.1.2",
"babel-plugin-react-compiler": "1.0.0",
"jsdom": "^27.4.0",
"lint-staged": "^16.2.7",
"oxlint": "^1.36.0",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"semver": "^7.7.3",
"server-only": "^0.0.1",
"simple-git-hooks": "^2.13.1",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vitest": "^4.0.17"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"simple-git-hooks": {
"commit-msg": "pnpm dlx commitlint --edit $1",
"pre-commit": "pnpm lint-staged",
"pre-push": "pnpm build && pnpm test"
},
"lint-staged": {
"**/*.{ts,tsx,json,md}": [
"prettier --write",
"oxlint --fix --fix-suggestions"
]
}
}