-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.42 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "briefkasten-docs",
"description": "Briefkasten Documentation - Fumadocs",
"author": "ndom91 <[email protected]>",
"version": "0.1.0",
"license": "MIT",
"keywords": [
"next.js",
"prisma",
"bookmarks",
"selfhost"
],
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"generate:openapi": "node generate-openapi.mjs"
},
"dependencies": {
"@phosphor-icons/react": "^2.1.4",
"fumadocs-core": "10.1.2",
"fumadocs-mdx": "8.2.7",
"fumadocs-openapi": "^2.0.0",
"fumadocs-twoslash": "^1.0.2",
"fumadocs-typescript": "^1.0.2",
"fumadocs-ui": "10.1.2",
"next": "14.1.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-use": "^17.5.0",
"shiki": "1.2.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@types/mdx": "2.0.12",
"@types/react": "18.2.73",
"@types/react-dom": "18.2.23",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"autoprefixer": "10.4.19",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"lint-staged": "^15.2.2",
"open-props": "^1.6.21",
"postcss": "8.4.38",
"postcss-nesting": "^12.1.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwind": "^2.2.12",
"simple-git-hooks": "^2.11.1",
"tailwind-merge": "^2.2.2",
"tailwindcss": "3.4.3",
"typescript": "5.4.3"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": "2023"
},
"extends": [
"eslint:recommended",
"next",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"env": {
"browser": true,
"es6": true
},
"plugins": [
"prettier",
"@typescript-eslint"
],
"rules": {
"@next/next/no-img-element": "off"
}
},
"prettier": {
"semi": false
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit",
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,json,html}": [
"prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"eslint --fix"
]
}
}