-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.71 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.71 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
{
"name": "k12beast",
"version": "0.11.0",
"private": true,
"scripts": {
"dev": "node scripts/generate-search-index.js && node scripts/migrate.js && next dev",
"build": "node scripts/generate-search-index.js && node scripts/migrate.js && next build && next-sitemap",
"start": "next start",
"lint": "next lint",
"postinstall": "echo 'Please set up your environment variables in .env.local. See README.md for instructions.'",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:server": "npm run sitemap && jest --config jest.config.ts",
"test": "npm run test:e2e && npm run test:server",
"sitemap": "next-sitemap"
},
"dependencies": {
"@applitools/eyes-playwright": "^1.37.1",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.3.2",
"@radix-ui/react-collapsible": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@supabase/supabase-js": "^2.49.4",
"@tailwindcss/typography": "^0.5.16",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"@xyflow/react": "^12.6.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dagre": "^0.8.5",
"dompurify": "^3.2.5",
"dotenv": "^16.4.5",
"flexsearch": "^0.8.161",
"framer-motion": "^11.18.2",
"gray-matter": "^4.0.3",
"immer": "^10.1.1",
"lucide-react": "^0.441.0",
"mathjax-full": "^3.2.2",
"next": "15.2.4",
"next-intl": "^4.1.0",
"next-mdx-remote": "^5.0.0",
"next-themes": "^0.4.6",
"openai": "^4.90.0",
"plotly.js-dist": "^3.0.1",
"react": "^19.0.0",
"react-device-detect": "^2.2.3",
"react-dom": "^19.0.0",
"react-dropzone": "^14.3.8",
"react-markdown": "^10.1.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-remove-comments": "^1.1.1",
"remeda": "^2.21.2",
"shiki": "^1.29.2",
"sonner": "^2.0.3",
"tailwind-merge": "^2.5.2",
"unist-util-remove": "^4.0.0",
"uuid": "^11.1.0",
"zustand": "^4.5.5",
"next-sitemap": "^4.2.3"
},
"devDependencies": {
"@playwright/test": "^1.51.1",
"@tailwindcss/postcss": "^4",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/supertest": "^6.0.3",
"autoprefixer": "^10.4.20",
"eslint": "^9.0.0",
"eslint-config-next": "15.2.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"playwright": "^1.51.1",
"postcss": "^8.4.47",
"supertest": "^7.1.0",
"tailwindcss": "^4",
"ts-jest": "^29.3.1",
"ts-node": "^10.9.2",
"typescript": "^5",
"xml2js": "^0.6.2"
}
}