-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.5 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.5 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint '**/*.{js,ts,jsx,tsx}'",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier '**/*.{js,ts,jsx,tsx,mdx,md}' --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"clean": "rm -rf .next node_modules"
},
"dependencies": {
"@tailwindcss/postcss": "4.0.0-alpha.13",
"@types/node": "20.11.17",
"@types/react": "18.3.28",
"@types/react-dom": "18.3.7",
"@vercel/analytics": "^1.1.3",
"@vercel/speed-insights": "^1.0.9",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"katex": "^0.16.19",
"next": "14.2.35",
"next-mdx-remote": "^6.0.0",
"openai": "^4.77.0",
"postcss": "^8.4.35",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^5.4.0",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"sugar-high": "^0.6.0",
"tailwindcss": "4.0.0-alpha.13",
"typescript": "5.3.3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^15.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.4.2"
}
}