-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.49 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.49 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
{
"name": "@graphql-config/website",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"lint": "eslint --ignore-path ../.gitignore --ext js,jsx,cjs,mjs,ts,tsx,cts,mts .",
"dev": "next",
"build": "next build",
"pagefind": "pagefind --site .next/server/app --output-path out/_pagefind",
"postbuild": "next-sitemap && pnpm pagefind",
"start": "next start",
"analyze": "cross-env ANALYZE=true pnpm run build"
},
"dependencies": {
"@theguild/components": "9.7.0",
"next": "^15.0.0",
"next-sitemap": "^4.2.3",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@theguild/tailwind-config": "0.6.3",
"@types/node": "22.14.0",
"@types/react": "19.1.0",
"@typescript-eslint/eslint-plugin": "8.29.0",
"@typescript-eslint/parser": "8.29.0",
"cross-env": "7.0.3",
"eslint": "9.24.0",
"eslint-config-next": "15.2.4",
"eslint-config-prettier": "10.1.1",
"pagefind": "1.3.0",
"postcss-import": "16.1.0",
"postcss-lightningcss": "1.0.1",
"tailwindcss": "3.4.17",
"typescript": "5.8.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">= 16.0.0",
"pnpm": "^10.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"sharp"
]
}
}