-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
82 lines (82 loc) · 1.94 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
81
82
{
"name": "mirror-next",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@apollo/client": "^3.10.4",
"@heroicons/react": "^2.1.3",
"@tailwindcss/typography": "^0.5.13",
"arweave": "^1.15.1",
"autoprefixer": "^10.4.19",
"fs": "^0.0.1-security",
"graphql": "^16.8.1",
"image-size": "^1.1.1",
"metascraper": "^5.45.8",
"metascraper-author": "^5.45.7",
"metascraper-clearbit": "^5.45.7",
"metascraper-date": "^5.45.7",
"metascraper-description": "^5.45.7",
"metascraper-image": "^5.45.7",
"metascraper-lang": "^5.45.7",
"metascraper-logo": "^5.45.7",
"metascraper-logo-favicon": "^5.45.7",
"metascraper-publisher": "^5.45.7",
"metascraper-title": "^5.45.7",
"metascraper-url": "^5.45.7",
"net": "^1.0.2",
"next": "^14.2.3",
"postcss": "^8.4.38",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-embed": "^3.7.0",
"react-markdown": "^9.0.1",
"react-medium-image-zoom": "^4.3.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"remark-stringify": "^11.0.0",
"rss": "^1.2.2",
"shiki": "^1.6.0",
"slug": "^9.0.0",
"strip-markdown": "^6.0.0",
"swr": "^2.2.5",
"tailwindcss": "^3.4.3",
"timeago.js": "^4.0.2",
"tls": "^0.0.1",
"unified": "^11.0.4",
"unist-util-visit": "^5.0.0",
"viem": "^2.11.1"
},
"devDependencies": {
"eslint": "^9.3.0",
"prettier": "^2.2.1",
"prettier-plugin-sort-imports-desc": "^1.0.0",
"typescript": "5.4.5"
},
"prettier": {
"semi": false,
"tabWidth": 4,
"useTabs": true,
"printWidth": 120,
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "es5",
"bracketSpacing": true,
"plugins": [
"prettier-plugin-sort-imports-desc"
]
},
"pnpm": {
"patchedDependencies": {
"re2@1.20.11": "patches/re2@1.20.11.patch"
}
}
}