-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.31 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
{
"name": "@faablecloud/docs",
"version": "0.0.0-dev",
"dependencies": {
"@next/third-parties": "^16.2.1",
"@tailwindcss/postcss": "^4.2.2",
"next": "^16.2.3",
"nextra": "^4.6.1",
"nextra-theme-docs": "^4.6.1",
"pagefind": "^1.4.0",
"postcss": "^8.5.8",
"posthog-js": "^1.364.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.2.2"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"postbuild": "pagefind --site .next/server/app --output-path public/_pagefind && npm run check:links && npm run check:sitemap",
"check:links": "node scripts/check-links.mjs",
"check:sitemap": "node scripts/check-sitemap.mjs",
"issue-badge": "node scripts/issue-badge.mjs",
"lint": "eslint .",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,mjs,md,mdx,json,css}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mjs,md,mdx,json,css}\"",
"prepare": "husky"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"eslint": "^9.39.0",
"eslint-config-next": "^16.2.3",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.5",
"lint-staged": "^16.2.7",
"prettier": "^3.6.2"
},
"overrides": {
"zod": "4.3.6"
},
"engines": {
"node": "22.x"
}
}