-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.18 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
{
"name": "learn-ai",
"private": false,
"version": "1.0.0",
"type": "module",
"packageManager": "pnpm@10.32.1",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"test": "vitest run",
"test:watch": "vitest",
"e2e": "playwright test"
},
"dependencies": {
"@codemirror/lang-python": "^6.2.1",
"@fontsource/ibm-plex-sans": "^5.2.8",
"@fontsource/source-serif-4": "^5.2.9",
"@hookform/resolvers": "^5.2.2",
"@huggingface/transformers": "^3.8.1",
"@mdx-js/react": "^3.1.1",
"@mdx-js/rollup": "^3.1.1",
"@tailwindcss/typography": "^0.5.19",
"@types/mdx": "^2.0.13",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@uiw/react-codemirror": "^4.25.8",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.4.27",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"gpt-tokenizer": "^3.4.0",
"katex": "^0.16.38",
"lucide-react": "^0.546.0",
"postcss": "^8.5.8",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.62.0",
"react-router-dom": "^7.13.1",
"rehype-katex": "^7.0.1",
"rehype-pretty-code": "^0.14.3",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-mdx-frontmatter": "^5.2.0",
"shiki": "^4.0.2",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^3.4.19",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.3",
"vite": "^8.0.1",
"zod": "^4.1.11"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@playwright/test": "^1.56.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.5.0",
"eslint": "^9.38.0",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.4.0",
"jsdom": "^27.0.1",
"prettier": "^3.6.2",
"shadcn": "^4.1.0",
"typescript-eslint": "^8.46.1",
"vitest": "^3.2.4"
}
}