-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.29 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.29 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
{
"name": "apexscholar",
"private": true,
"version": "1.3.0",
"type": "module",
"scripts": {
"dev": "tsx src/server/index.ts",
"start": "node src/server/index.ts",
"build": "vite build && tsup src/server/index.ts --format esm --out-dir api/_built",
"preview": "vite preview",
"clean": "rm -rf dist",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css,json}\"",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@codemirror/theme-one-dark": "^6.1.3",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@google/genai": "^1.29.0",
"@hookform/resolvers": "^5.2.2",
"@supabase/supabase-js": "^2.45.0",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.14",
"@tanstack/react-query": "^5.95.2",
"@tiptap/extension-bullet-list": "^3.20.0",
"@tiptap/extension-heading": "^3.20.0",
"@tiptap/extension-link": "^3.20.0",
"@tiptap/extension-ordered-list": "^3.20.0",
"@tiptap/extension-placeholder": "^3.20.0",
"@tiptap/extension-underline": "^3.20.0",
"@tiptap/react": "^3.20.0",
"@tiptap/starter-kit": "^3.20.0",
"@uiw/react-codemirror": "^4.25.7",
"@vitejs/plugin-react": "^5.0.4",
"adm-zip": "^0.5.16",
"clsx": "^2.1.1",
"codemirror-lang-latex": "^0.2.0",
"cors": "^2.8.6",
"crypto-js": "^4.2.0",
"d3-force": "^3.0.0",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"express": "^4.21.2",
"html2pdf.js": "^0.14.0",
"katex": "^0.16.34",
"lucide-react": "^0.546.0",
"motion": "^12.23.24",
"oauth-1.0a": "^2.2.6",
"pdfjs-dist": "^5.4.624",
"query-string": "^9.3.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-force-graph-2d": "^1.29.1",
"react-hook-form": "^7.72.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.13.1",
"recharts": "^3.7.0",
"remark-gfm": "^4.0.1",
"simple-oauth2": "^5.1.0",
"tailwind-merge": "^3.5.0",
"vite": "^6.2.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/adm-zip": "^0.5.7",
"@types/cheerio": "^0.22.35",
"@types/d3-force": "^3.0.10",
"@types/express": "^4.17.21",
"@types/katex": "^0.16.8",
"@types/node": "^22.14.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"autoprefixer": "^10.4.21",
"cheerio": "^1.2.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.4.0",
"jsdom": "^27.0.1",
"prettier": "^3.8.1",
"tailwindcss": "^4.1.14",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}