-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
80 lines (80 loc) · 2.23 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
{
"name": "wpgraphql.com-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "faust dev",
"build": "faust build",
"start": "faust start",
"lint": "yarn test:lint --fix",
"test:format": "prettier '*.{js,jsx,ts,tsx,css,mdx,json}'",
"test:lint": "faust lint",
"prebuild": "yarn generate",
"postbuild": "next-sitemap",
"predev": "yarn generate",
"format": "yarn test:format --write",
"generate": "faust generatePossibleTypes",
"prepare": "husky install"
},
"browserslist": [
"> 1%"
],
"dependencies": {
"@apollo/client": "^3.7.0",
"@docsearch/react": "^3.3.0",
"@faustwp/cli": "3.1.0",
"@faustwp/core": "3.1.0",
"@headlessui/react": "^1.7.3",
"@heroicons/react": "2.0.12",
"@js-temporal/polyfill": "^0.4.2",
"@jsdevtools/rehype-url-inspector": "^2.0.2",
"@next/bundle-analyzer": "^12.3.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.7",
"clsx": "^1.2.1",
"cross-fetch": "^3.1.5",
"crypto-hash": "^2.0.1",
"feed": "^4.2.2",
"graphql": "^16.3.0",
"http-status-codes": "^2.2.0",
"next": "12.3.1",
"next-mdx-remote": "^4.1.0",
"next-sitemap": "3.1.3",
"octokit": "^2.0.9",
"postinstall-postinstall": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.6.0",
"rehype-external-links": "^2.0.1",
"rehype-parse": "^8.0.4",
"rehype-prism-plus": "^1.3.2",
"rehype-slug": "^5.0.1",
"rehype-stringify": "^9.0.3",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"remark-smartypants": "^2.0.0",
"slugger": "^1.0.1",
"unified": "^10.1.2",
"unist-util-visit": "^4.1.0"
},
"devDependencies": {
"autoprefixer": "^10.4.12",
"eslint": "^8.25.0",
"eslint-config-next": "^12.3.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": ">=6",
"lint-staged": ">=10",
"postcss": "^8.4.17",
"postcss-focus-visible": "^7.1.0",
"postcss-import": "^15.0.0",
"prettier": "^2.5.0",
"tailwindcss": "^3.0.23",
"typescript": "4.8.4"
},
"lint-staged": {
"src/*.{js, ts}": "yarn lint --cache",
"*.": "yarn format"
}
}