-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.05 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.05 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
{
"name": "nextra-docs-template",
"version": "0.0.1",
"description": "Nextra docs template",
"packageManager": "pnpm@10.9.0",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint pages components --fix && pnpm format",
"lint:strict": "eslint --max-warnings=0 pages components",
"typecheck": "tsc --noEmit --incremental false --moduleResolution node",
"test:watch": "jest --watch --passWithNoTests",
"test": "jest --passWithNoTests",
"format": "prettier -w .",
"format:check": "prettier -c .",
"postbuild": "next-sitemap --config next-sitemap.config.cjs",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shuding/nextra-docs-template.git"
},
"author": "Shu Ding <g@shud.in>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shuding/nextra-docs-template/issues"
},
"homepage": "https://github.com/shuding/nextra-docs-template#readme",
"dependencies": {
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.3.1",
"@swc/helpers": "^0.5.15",
"@theguild/remark-mermaid": "^0.3.0",
"@types/react": "^18.3.18",
"autoprefixer": "^10.4.21",
"lucide-react": "^0.460.0",
"next": "15.2.8",
"nextra": "3.3.1",
"nextra-docs-template": "0.0.11",
"nextra-theme-docs": "3.3.1",
"postcss": "^8.5.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sharp": "^0.33.5"
},
"devDependencies": {
"@next/eslint-plugin-next": "^15.3.1",
"@types/mdx": "^2.0.13",
"@types/node": "18.11.10",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"eslint": "^9",
"eslint-config-next": "15.3.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"next-sitemap": "^4.2.3",
"prettier": "^3.5.3",
"remark-gfm": "^4.0.1",
"tailwindcss": "^3.4.17",
"typescript": "^4.9.5"
},
"pnpm": {
"ignoredBuiltDependencies": [
"sharp"
]
}
}