-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.75 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.75 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
{
"name": "docs",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:ci": "tsc -b && vite build",
"build:clean": "rm -rf dist && npm run build",
"build:production": "npm run build:clean && npm run build:verify",
"build:verify": "node scripts/verify-build.js",
"lint": "eslint .",
"preview": "vite preview",
"serve": "npx serve dist -s -c serve.json",
"serve:local": "npx http-server dist -p 3000 -c-1 --cors"
},
"dependencies": {
"@types/react-syntax-highlighter": "^15.5.13",
"framer-motion": "^11.18.2",
"fuse.js": "^7.1.0",
"gray-matter": "^4.0.3",
"highlight.js": "^11.11.1",
"lucide-react": "^0.536.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"react-hot-toast": "^2.5.2",
"react-markdown": "^10.1.0",
"react-router-dom": "^6.30.1",
"react-syntax-highlighter": "^15.6.6",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@types/babel__generator": "^7.27.0",
"@types/babel__template": "^7.4.4",
"@types/babel__traverse": "^7.28.0",
"@types/node": "^24.10.1",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.21",
"eslint": "^9.32.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"postcss": "^8.5.6",
"tailwindcss": "3.3",
"typescript": "~5.8.3",
"typescript-eslint": "^8.39.0",
"vite": "^5.4.2"
}
}