-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.33 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.33 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
111
112
{
"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.86",
"@ai-sdk/react": "^2.0.106",
"@apollo/client": "^3.14.0",
"@faustwp/blocks": "^6.1.8",
"@faustwp/cli": "^3.3.6",
"@faustwp/core": "^3.3.6",
"@headlessui/react": "^2.2.9",
"@jsdevtools/rehype-url-inspector": "^2.0.2",
"@next/third-parties": "^15.5.7",
"@octokit/core": "^7.0.6",
"@shikijs/transformers": "^3.19.0",
"@sindresorhus/slugify": "^3.0.0",
"@wpengine/atlas-next": "^3.0.2",
"ai": "^5.0.106",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"feed": "^5.1.0",
"graphql": "^16.12.0",
"http-status-codes": "^2.3.0",
"lodash.debounce": "^4.0.8",
"next": "^15.5.12",
"next-mdx-remote-client": "^2.1.7",
"next-sitemap": "^4.2.3",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"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.1.13"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.17",
"@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.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.17"
},
"engines": {
"node": "^22",
"npm": "use-pnpm"
},
"packageManager": "pnpm@10.24.0+sha512.01ff8ae71b4419903b65c60fb2dc9d34cf8bb6e06d03bde112ef38f7a34d6904c424ba66bea5cdcf12890230bf39f9580473140ed9c946fef328b6e5238a345a",
"lint-staged": {
"*": "pnpm format",
"*.{js,jsx}": "pnpm lint"
},
"pnpm": {
"onlyBuiltDependencies": [
"@tailwindcss/oxide",
"sharp",
"unrs-resolver"
],
"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",
"svelte@<4.2.19": ">=4.2.19",
"svelte@<=5.51.4": ">=5.51.5",
"svelte@<=5.53.4": ">=5.53.5"
},
"patchedDependencies": {
"eslint-config-neon": "patches/eslint-config-neon.patch"
}
}
}