-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.54 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.54 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
{
"name": "pgelephant-website",
"version": "1.0.0",
"description": "PostgreSQL High Availability Made Easy - Official Website",
"private": true,
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --fix --ignore-pattern '.next/**' --ignore-pattern 'node_modules/**'",
"lint:check": "eslint . --ignore-pattern '.next/**' --ignore-pattern 'node_modules/**'",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"analyze": "ANALYZE=true npm run build",
"export": "next export",
"sitemap": "next-sitemap",
"seo:audit": "npm run build && npm run lighthouse",
"lighthouse": "lighthouse http://localhost:3000 --output=html --output-path=./lighthouse-report.html --view",
"validate:schemas": "./scripts/validate-schemas.sh",
"clean": "rm -rf node_modules .next out",
"test": "npm run type-check && npm run lint:check && npm run validate:schemas && npm run build",
"precommit": "npm run type-check && npm run lint:check && npm run validate:schemas",
"render:favicons": "node scripts/render-svg-favicons.js"
},
"dependencies": {
"@types/react-syntax-highlighter": "^15.5.13",
"@vercel/analytics": "^1.3.7",
"@vercel/speed-insights": "^1.1.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"critters": "^0.0.23",
"framer-motion": "^12.0.6",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.461.0",
"next": "^15.5.7",
"prism-react-renderer": "^2.4.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^2.2.0",
"web-vitals": "^4.2.4"
},
"devDependencies": {
"@next/bundle-analyzer": "^15.5.7",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^24.2.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-config-next": "^15.5.7",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"puppeteer": "^22.15.0",
"sharp": "^0.33.5",
"tailwindcss": "^3.4.0",
"typescript": "^5.2.2",
"webpack-bundle-analyzer": "^4.10.2"
}
}