-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
101 lines (101 loc) · 2.75 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "blog",
"version": "1.0.0",
"scripts": {
"lint": "next lint && prettier --write '**/*.{js,ts,tsx}' --loglevel warn",
"dev": "next dev",
"build": "concurrently \"pnpm:build-*\"",
"build-next": "next build",
"build-rss": "ts-node --project ./node.tsconfig.json scripts/rss",
"analyze": "ANALYZE=true pnpm build-next",
"start": "next start"
},
"pre-commit": "lint",
"license": "MIT",
"dependencies": {
"@fec/remark-a11y-emoji": "4.0.2",
"@mdx-js/loader": "3.1.0",
"@mdx-js/react": "3.1.0",
"@next/bundle-analyzer": "15.1.6",
"@next/eslint-plugin-next": "15.1.6",
"@next/mdx": "15.1.6",
"@octokit/rest": "20.0.2",
"@radix-ui/react-tabs": "^1.1.2",
"@supabase/supabase-js": "2.39.7",
"@vercel/analytics": "1.4.1",
"@vercel/toolbar": "0.1.30",
"bright": "1.0.0",
"diff": "5.2.0",
"geist": "^1.3.1",
"globby": "14.0.2",
"htmlparser2": "9.1.0",
"lodash.debounce": "4.0.8",
"next": "15.1.6",
"next-mdx-remote": "5.0.0",
"next-remote-watch": "2.0.0",
"next-themes": "0.4.4",
"postcss": "8.4.49",
"prettier": "3.4.2",
"react": "19.0.0",
"react-diff-viewer": "3.1.1",
"react-dom": "19.0.0",
"react-tweet": "3.2.1",
"rehype-highlight": "7.0.1",
"rehype-img-size": "1.0.1",
"remark-frontmatter": "5.0.0",
"remark-toc": "9.0.0",
"rss-parser": "3.13.0",
"tiny-glob": "0.2.9",
"youtubei": "0.0.1-rc.36"
},
"devDependencies": {
"@types/diff": "5.0.3",
"@types/mdx": "2.0.13",
"@types/node": "22.10.2",
"@types/prettier": "3.0.0",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/rss": "0.0.30",
"@typescript-eslint/eslint-plugin": "8.18.2",
"@typescript-eslint/parser": "8.18.2",
"clsx": "2.1.1",
"concurrently": "8.2.2",
"critters": "0.0.20",
"dotenv": "16.3.1",
"eslint": "8.50.0",
"eslint-config-next": "15.1.6",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-mdx": "2.2.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"gray-matter": "4.0.3",
"marked": "12.0.0",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-hover-media-feature": "1.0.2",
"postcss-nested": "6.0.1",
"postcss-preset-env": "9.1.4",
"rehype-autolink-headings": "7.1.0",
"rehype-slug": "6.0.0",
"remark-gfm": "3.0.1",
"rss": "1.2.2",
"ts-node": "10.9.1",
"typescript": "5.2.2",
"typescript-plugin-css-modules": "5.0.1"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"next-unused": {
"alias": {
"@components": "components/",
"@data": "data/",
"@lib": "lib/",
"@styles": "styles/"
},
"include": [
"components",
"lib"
]
}
}