-
Notifications
You must be signed in to change notification settings - Fork 161
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.29 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.29 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
{
"name": "@graphprotocol/docs",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "next",
"predev": "tsup ./src/i18n.ts ./src/mdxPlugins/*.ts --format esm",
"build": "rm -rf .next && rm -rf out && next build",
"prebuild": "pnpm predev",
"prebuild:ci": "pnpm fetch-remote-docs && pnpm fetch-api-reference && pnpm fix-pages-structure",
"postbuild": "next-sitemap --config next-sitemap.config.mjs && node scripts/sitemap-ci.js",
"typecheck": "tsc",
"fetch-remote-docs": "tsx scripts/fetch-remote-docs.ts",
"fetch-api-reference": "tsx scripts/fetch-api-reference.ts",
"fix-pages-structure": "tsx scripts/fix-pages-structure.ts",
"move-pages": "tsx scripts/move-pages.ts"
},
"dependencies": {
"@docsearch/react": "^3.9.0",
"@edgeandnode/common": "^7.0.4",
"@edgeandnode/gds": "^6.9.0",
"@edgeandnode/go": "^10.5.1",
"@emotion/react": "^11.14.0",
"@graphprotocol/contracts": "^7.3.0",
"@pinax/graph-networks-registry": "^0.7.1",
"@react-hookz/web": "^25.2.0",
"@readme/httpsnippet": "^11.1.0",
"@readme/openapi-parser": "^4.1.2",
"fetch-har": "^11.1.1",
"hast": "^1.0.0",
"hast-util-whitespace": "^3.0.0",
"lodash": "^4.17.23",
"mdast-util-mdx-jsx": "^3.2.0",
"mdast-util-to-hast": "^13.2.1",
"mixpanel-browser": "^2.74.0",
"motion": "^12.34.3",
"next": "^14.2.35",
"next-seo": "^6.8.0",
"next-sitemap": "^4.2.3",
"nextra": "^3.3.1",
"openapi-types": "^12.1.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-ga4": "^2.1.0",
"react-intersection-observer": "^9.16.0",
"react-markdown": "^10.1.0",
"rehype-mdx-code-props": "^3.0.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"theme-ui": "^0.17.4",
"unist-util-visit": "^5.1.0",
"vfile": "^6.0.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/hast": "^3.0.4",
"@types/lodash": "^4.17.24",
"@types/mdast": "^4.0.4",
"@types/mixpanel-browser": "^2.66.0",
"@types/node": "^22.19.11",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@types/vfile": "^4.0.0",
"autoprefixer": "^10.4.24",
"fast-xml-parser": "^5.3.7",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.19",
"tsup": "^8.5.1",
"tsx": "4.20.4"
}
}