-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.25 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.25 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
72
73
74
75
76
77
78
{
"name": "bm-docs",
"version": "3.0.0",
"private": true,
"description": "Documentation for BanManager WebUI",
"scripts": {
"dev": "next",
"build": "node scripts/generate-navigation.mjs && next build",
"start": "next start -p $PORT",
"refresh": "rm -rf .next/cache",
"prebuild": "node scripts/generate-navigation.mjs",
"heroku-postbuild": "npm run build",
"test": "npm run lint && npm run build",
"lint": "eslint '*/**/*.{js,ts,tsx}' --fix",
"postbuild": "next-sitemap",
"generate-nav": "node scripts/generate-navigation.mjs",
"generate-og": "node scripts/generate-og-images.mjs"
},
"author": "James Mortemore (jamesmortemore@gmail.com)",
"license": "MIT",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git@github.com:BanManagement/banmanagement.com.git"
},
"bugs": {
"url": "https://github.com/BanManagement/banmanagement.com/issues"
},
"dependencies": {
"@docsearch/react": "3.9.0",
"@headlessui/react": "1.7.19",
"@tailwindcss/typography": "0.5.19",
"@xstate/react": "1.6.3",
"autoprefixer": "10.4.27",
"clsx": "2.1.1",
"date-fns": "3.6.0",
"fast-glob": "3.3.3",
"formik": "2.4.9",
"github-slugger": "2.0.0",
"gray-matter": "4.0.3",
"highlight.js": "11.11.1",
"js-yaml": "4.1.1",
"mdast-util-to-string": "4.0.0",
"minecraft-text": "1.2.18",
"next": "14.2.35",
"next-mdx-remote": "5.0.0",
"next-seo": "6.8.0",
"next-sitemap": "4.2.3",
"postcss": "8.5.6",
"prop-types": "15.8.1",
"react": "18.3.1",
"react-copy-to-clipboard": "5.1.0",
"react-dom": "18.3.1",
"react-icons": "5.5.0",
"react-remove-scroll": "2.7.2",
"react-syntax-highlighter": "15.6.6",
"react-table": "7.8.0",
"regenerator-runtime": "0.14.1",
"rehype-autolink-headings": "7.1.0",
"rehype-highlight": "7.0.2",
"remark-gfm": "4.0.1",
"tailwind-heropatterns": "0.0.8",
"tailwindcss": "3.4.19",
"unist-util-visit": "5.1.0",
"xstate": "4.38.3"
},
"devDependencies": {
"@eslint/js": "^9.39.0",
"@next/eslint-plugin-next": "^15.3.3",
"eslint": "9.39.2",
"eslint-plugin-react": "7.37.5",
"globals": "^17.0.0",
"satori": "^0.19.0",
"sharp": "^0.34.5"
}
}