-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
70 lines (70 loc) · 1.88 KB
/
package.json
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
{
"name": "gitbutler-docs",
"version": "0.0.0",
"type": "module",
"scripts": {
"build:openapi": "node scripts/generate-docs.mjs",
"build": "pnpm build:openapi && next build",
"dev": "next dev",
"start": "next start"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.2",
"@shikijs/transformers": "^1.22.2",
"cmdk": "^1.0.4",
"fumadocs-core": "14.4.0",
"fumadocs-mdx": "11.1.1",
"fumadocs-openapi": "^5.5.10",
"fumadocs-twoslash": "^2.0.1",
"fumadocs-ui": "14.4.0",
"next": "^15.0.3",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"shiki": "^1.22.2",
"tailwind-merge": "^2.5.4",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@next/eslint-plugin-next": "^15.0.3",
"@types/mdast": "^4.0.4",
"@types/mdx": "^2.0.13",
"@types/node": "22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.14.0",
"eslint-config-next": "^15.0.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"lint-staged": "^15.2.10",
"mermaid": "^11.4.0",
"open-props": "^1.7.7",
"postcss": "^8.4.49",
"postcss-nesting": "^13.0.1",
"prettier-plugin-tailwindcss": "^0.6.8",
"reading-time": "^1.5.0",
"remark-youtube": "^1.3.2",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"unified": "^11.0.5"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,json,html}": [
"prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"eslint --fix"
]
},
"packageManager": "pnpm@9.3.0"
}