-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.26 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.26 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "faustjs-org-site",
"private": true,
"scripts": {
"predev": "faust generatePossibleTypes",
"dev": "faust dev",
"prebuild": "faust generatePossibleTypes",
"build": "faust build",
"postbuild": "concurrently \"pnpm build:sitemap\" \"pnpm build:search\"",
"generate": "faust generatePossibleTypes",
"stylesheet": "faust generateGlobalStylesheet",
"start": "faust start",
"test:format": "prettier . --check",
"test:lint": "eslint --quiet",
"test:search": "NODE_ENV=test node --env-file=.env.local ./scripts/smart-search.mjs",
"build:search": "node --env-file-if-exists=.env.local ./scripts/smart-search.mjs",
"build:sitemap": "next-sitemap --config next-sitemap.config.mjs",
"lint": "eslint --fix",
"format": "prettier . --write",
"prepare": "husky"
},
"dependencies": {
"@ai-sdk/google-vertex": "^3.0.137",
"@ai-sdk/react": "^2.0.190",
"@apollo/client": "^3.14.0",
"@faustwp/blocks": "^6.1.8",
"@faustwp/cli": "^3.4.1",
"@faustwp/core": "^3.4.1",
"@headlessui/react": "^2.2.10",
"@jsdevtools/rehype-url-inspector": "^2.0.2",
"@next/third-parties": "^15.5.18",
"@octokit/core": "^7.0.6",
"@shikijs/transformers": "^3.19.0",
"@sindresorhus/slugify": "^3.0.0",
"@wpengine/atlas-next": "^3.0.2",
"ai": "^5.0.188",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"feed": "^5.2.1",
"graphql": "^16.14.0",
"http-status-codes": "^2.3.0",
"lodash.debounce": "^4.0.8",
"next": "^15.5.12",
"next-mdx-remote-client": "^2.1.10",
"next-sitemap": "^4.2.3",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-icons": "^5.5.0",
"react-intersection-observer": "^9.16.0",
"react-markdown": "^10.1.0",
"rehype-callouts": "^2.1.2",
"rehype-external-links": "^3.0.0",
"rehype-pretty-code": "^0.14.1",
"rehype-slug": "^6.0.0",
"remark-flexible-toc": "^1.2.4",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-smartypants": "^3.0.2",
"remark-stringify": "^11.0.0",
"shiki": "^3.19.0",
"strip-markdown": "^6.0.0",
"unified": "^11.0.5",
"vfile-matter": "^5.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.0",
"@tailwindcss/typography": "^0.5.19",
"concurrently": "^9.2.1",
"eslint": "^9.39.1",
"eslint-config-neon": "^0.2.9",
"eslint-plugin-mdx": "^3.6.2",
"eslint-plugin-unicorn": "^59.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"next-secure-headers": "^2.2.0",
"postcss": "^8.5.6",
"postcss-nesting": "^13.0.2",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.7.4",
"tailwindcss": "^4.3.0"
},
"engines": {
"node": "^22",
"npm": "use-pnpm"
},
"packageManager": "pnpm@10.33.4+sha512.1c67b3b359b2d408119ba1ed289f34b8fc3c6873412bec6fd264fbdc82489e510fcbecb9ce9d22dae7f3b76269d8441046014bdca53b9979cd7a561ad631b800",
"lint-staged": {
"*": "pnpm format",
"*.{js,jsx}": "pnpm lint"
},
"pnpm": {
"onlyBuiltDependencies": [
"@tailwindcss/oxide",
"sharp",
"unrs-resolver"
],
"patchedDependencies": {
"eslint-config-neon": "patches/eslint-config-neon.patch"
},
"overrides": {
"@eslint/plugin-kit@<0.3.4": "^0.3.4",
"minimatch@>=10.0.0 <10.2.1": "^10.2.1",
"minimatch@>=10.0.0 <10.2.3": "^10.2.3",
"ajv@>=7.0.0-alpha.0 <8.18.0": "^8.18.0",
"postcss@<8.5.10": "^8.5.10"
}
}
}