|
1 | 1 | {
|
| 2 | + "version": "0.0.0", |
| 3 | + "type": "module", |
2 | 4 | "repository": "graphql/graphql.github.io website",
|
3 | 5 | "private": true,
|
4 |
| - "version": "0.0.0", |
5 | 6 | "scripts": {
|
6 |
| - "dev": "next", |
7 | 7 | "//prebuild": "tsx --env-file=.env src/get-github-info.ts",
|
8 |
| - "build": "next build", |
9 |
| - "postbuild": "next-sitemap --config next-sitemap.config.cjs", |
10 |
| - "start": "next start", |
| 8 | + "build": "next build && next-image-export-optimizer", |
| 9 | + "dev": "next", |
11 | 10 | "format": "pnpm format:check --write",
|
12 | 11 | "format:check": "prettier --cache --check \"**/*.{js,jsx,ts,tsx,json,md}\"",
|
13 | 12 | "lint": "eslint --ignore-path .gitignore .",
|
| 13 | + "postbuild": "next-sitemap --config next-sitemap.config.cjs", |
| 14 | + "start": "next start", |
14 | 15 | "test": "echo \"no tests\" && exit 1"
|
15 | 16 | },
|
16 |
| - "type": "module", |
17 | 17 | "dependencies": {
|
18 | 18 | "@graphql-tools/schema": "10.0.3",
|
19 |
| - "codemirror": "5.65.1", |
20 |
| - "codemirror-graphql": "1.3.2", |
21 |
| - "graphql": "16.8.1", |
22 |
| - "marked": "5.0.2", |
23 |
| - "numbro": "2.3.6", |
24 |
| - "parser-front-matter": "1.6.4", |
25 |
| - "string-similarity": "^4.0.4", |
26 |
| - "timeago.js": "4.0.2", |
27 |
| - "@radix-ui/react-radio-group": "^1.1.3", |
28 |
| - "leaflet": "^1.9.4", |
29 |
| - "iframe-resizer-react": "^1.1.0", |
30 |
| - "gray-matter": "^4.0.3", |
31 | 19 | "@headlessui/react": "^1.7.17",
|
32 | 20 | "@heroicons/react": "^2.0.18",
|
33 | 21 | "@radix-ui/react-icons": "^1.3.0",
|
| 22 | + "@radix-ui/react-radio-group": "^1.1.3", |
| 23 | + "@svgr/webpack": "^8.0.1", |
| 24 | + "@tailwindcss/nesting": "0.0.0-insiders.565cd3e", |
| 25 | + "@tailwindcss/typography": "^0.5.10", |
| 26 | + "autoprefixer": "^10.4.17", |
34 | 27 | "clsx": "^2.1.0",
|
| 28 | + "codemirror": "5.65.1", |
| 29 | + "codemirror-graphql": "1.3.2", |
| 30 | + "date-fns": "^2.30.0", |
35 | 31 | "fast-glob": "^3.3.2",
|
| 32 | + "graphql": "16.8.1", |
| 33 | + "gray-matter": "^4.0.3", |
| 34 | + "iframe-resizer-react": "^1.1.0", |
| 35 | + "leaflet": "^1.9.4", |
36 | 36 | "markdown-to-jsx": "^7.4.0",
|
| 37 | + "marked": "5.0.2", |
37 | 38 | "next": "^14.1.4",
|
| 39 | + "next-image-export-optimizer": "^1.12.3", |
38 | 40 | "next-query-params": "^5.0.0",
|
39 | 41 | "next-sitemap": "^4.2.3",
|
40 | 42 | "next-with-less": "^3.0.1",
|
41 | 43 | "nextra": "3.0.0-alpha.22",
|
42 | 44 | "nextra-theme-docs": "3.0.0-alpha.22",
|
| 45 | + "numbro": "2.3.6", |
43 | 46 | "p-limit": "^4.0.0",
|
| 47 | + "parser-front-matter": "1.6.4", |
| 48 | + "postcss": "^8.4.33", |
| 49 | + "prettier-plugin-pkg": "^0.18.1", |
44 | 50 | "react": "^18.2.0",
|
45 | 51 | "react-dom": "^18.2.0",
|
| 52 | + "react-medium-image-zoom": "5.1.8", |
46 | 53 | "server-only": "0.0.1",
|
47 | 54 | "server-only-context": "^0.1.0",
|
| 55 | + "string-similarity": "^4.0.4", |
48 | 56 | "string-strip-html": "^13.4.5",
|
49 |
| - "unist-util-visit": "^5.0.0", |
50 |
| - "use-query-params": "^2.2.1", |
51 | 57 | "tailwindcss": "^3.4.1",
|
52 |
| - "@tailwindcss/nesting": "0.0.0-insiders.565cd3e", |
53 |
| - "@tailwindcss/typography": "^0.5.10", |
54 |
| - "postcss": "^8.4.33", |
55 |
| - "@svgr/webpack": "^8.0.1", |
56 |
| - "autoprefixer": "^10.4.17", |
| 58 | + "timeago.js": "4.0.2", |
57 | 59 | "tsx": "^4.7.0",
|
58 |
| - "react-medium-image-zoom": "5.1.8", |
59 |
| - "date-fns": "^2.30.0" |
| 60 | + "unist-util-visit": "^5.0.0", |
| 61 | + "use-query-params": "^2.2.1" |
60 | 62 | },
|
61 | 63 | "devDependencies": {
|
| 64 | + "@types/codemirror": "5.60.7", |
62 | 65 | "@types/node": "^20.11.30",
|
63 | 66 | "@types/react": "^18.2.73",
|
64 |
| - "@types/codemirror": "5.60.7", |
65 | 67 | "@types/string-similarity": "^4.0.2",
|
| 68 | + "@typescript-eslint/eslint-plugin": "7.4.0", |
66 | 69 | "@typescript-eslint/parser": "7.4.0",
|
67 | 70 | "eslint": "8.57.0",
|
| 71 | + "eslint-config-prettier": "^9.1.0", |
68 | 72 | "eslint-plugin-tailwindcss": "3.15.1",
|
69 | 73 | "prettier": "3.2.5",
|
70 | 74 | "typescript": "^5.4.3"
|
| 75 | + }, |
| 76 | + "pnpm": { |
| 77 | + "patchedDependencies": { |
| 78 | + |
| 79 | + } |
71 | 80 | }
|
72 | 81 | }
|
0 commit comments