-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.66 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.66 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
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"scrape:kb": "tsx scripts/scrape/index.ts",
"kb:upload:umsu": "tsx scripts/kb/upload-umsu-vector-store.ts",
"kb:upload": "tsx scripts/kb/upload-kb-vs.ts",
"chunk:sync": "tsx scripts/kb/sync-kb-vector-store-chunks.ts",
"rechunk": "tsx scripts/kb/rechunk-from-pages.ts",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"@base-ui/react": "^1.2.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@fingerprintjs/fingerprintjs": "^5.0.1",
"@google-cloud/secret-manager": "^6.1.1",
"@mozilla/readability": "^0.6.0",
"@next/third-parties": "^16.1.6",
"@openai/agents": "^0.4.6",
"@radix-ui/react-checkbox": "^1.3.1",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.14",
"@radix-ui/react-label": "^2.1.6",
"@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.2",
"@radix-ui/react-tooltip": "^1.2.8",
"@splidejs/react-splide": "^0.7.12",
"@splidejs/splide": "^4.1.4",
"@supabase/ssr": "latest",
"@supabase/supabase-js": "^2.56.1",
"@tanstack/react-table": "^8.21.3",
"avvvatars-react": "^0.4.2",
"axios": "^1.13.2",
"botid": "^1.5.10",
"cheerio": "^1.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"fast-average-color": "^9.5.0",
"framer-motion": "^12.23.12",
"gpt-tokenizer": "^3.4.0",
"html-react-parser": "^5.2.11",
"html-to-image": "^1.11.13",
"install": "^0.13.0",
"jsonwebtoken": "^9.0.2",
"jsqr": "^1.4.0",
"lucide-react": "^0.511.0",
"mammoth": "^1.10.0",
"next": "15.5.11",
"next-themes": "^0.4.6",
"npm": "^11.5.2",
"openai": "^6.16.0",
"p-limit": "^7.2.0",
"passkit-generator": "^3.1.11",
"radix-ui": "^1.4.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-easy-crop": "^5.5.6",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-qr-code": "^2.0.18",
"react-textarea-autosize": "^8.5.9",
"rehype-external-links": "^3.0.0",
"remark-gfm": "^4.0.1",
"resend": "^6.9.2",
"robots-parser": "^3.0.1",
"sharp": "^0.34.4",
"sonner": "^2.0.7",
"swr": "^2.3.8",
"tailwind-merge": "^3.3.0",
"turndown": "^7.2.2",
"zod": "^4.3.6",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/eslintrc": "^2.1.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jsdom": "^27.0.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/next": "^8.0.7",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/turndown": "^5.0.6",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"autoprefixer": "^10.4.20",
"dotenv": "^17.2.3",
"eslint": "^9.39.3",
"eslint-config-next": "^15.5.12",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"husky": "^8.0.0",
"jsdom": "^28.1.0",
"knip": "^5.77.1",
"lint-staged": "^16.2.7",
"lodash": "^4.17.23",
"postcss": "^8",
"prettier": "^3.8.1",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.21.0",
"typescript": "^5"
},
"overrides": {
"sucrase": {
"glob": "13.0.0"
}
}
}