-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.26 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.26 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
{
"name": "dev-tools-website",
"private": true,
"version": "0.0.1",
"description": "DevTools marketing site + docs (Next.js + Nextra)",
"scripts": {
"dev": "next dev -p 3030",
"build": "node scripts/fetch-github-data.js && next build && node scripts/inject-canonicals.js",
"start": "next start -p 3030",
"export": "node scripts/fetch-github-data.js && next build && node scripts/inject-canonicals.js",
"preview": "npm run build && npx serve out -l 3030",
"sitemap": "node scripts/generate-sitemap.js"
},
"dependencies": {
"@mdx-js/react": "^3.1.1",
"@next/third-parties": "^16.1.4",
"@types/mdx": "^2.0.13",
"gray-matter": "^4.0.3",
"motion": "^12.29.2",
"next": "^14.2.0",
"next-mdx-remote": "^5.0.0",
"nextra": "^2.13.2",
"nextra-theme-docs": "^2.13.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reading-time": "^1.5.0",
"remark-gfm": "^4.0.1",
"sharp": "^0.33.2"
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"autoprefixer": "^10.4.23",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"tailwindcss-cli": "^0.1.2"
}
}