-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.58 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.58 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
{
"name": "stackmirea-docs",
"version": "2.0.0",
"private": true,
"description": "Static-first documentation platform for StackMIREA.",
"scripts": {
"dev": "next dev",
"predev": "npm run prepare:content",
"build": "next build",
"export": "node -e \"console.log('Static export is produced by next build when output=\\'export\\'')\"",
"start": "npx serve out -p 3000",
"lint": "next lint",
"typecheck": "tsc --noEmit --incremental false",
"prepare:content": "npm run content:sync && npm run search:build",
"content:sync": "node scripts/sync-content.mjs",
"search:build": "node scripts/build-search-index.mjs",
"validate:content": "node scripts/validate-content.mjs",
"prebuild": "npm run prepare:content"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"lucide-react": "^0.468.0",
"next": "^14.2.26",
"next-mdx-remote": "^5.0.0",
"next-themes": "^0.4.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rehype-slug": "^6.0.0",
"remark-directive": "^4.0.0",
"remark-gfm": "^4.0.1",
"shiki": "^1.24.4",
"tailwind-merge": "^2.6.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^22.13.9",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.26",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=20.0.0"
}
}