-
Notifications
You must be signed in to change notification settings - Fork 335
/
package.json
44 lines (44 loc) · 1.42 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
{
"name": "tokio-website",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build && npm run build:rss",
"build:rss": "tsc --outDir dist --noEmit false && sed -i.bak 's/markdown\"/markdown.js\"/g' dist/lib/api.js && rm dist/lib/api.js.bak && node scripts/generate-rss-feed.js",
"fmt": "prettier --write --prose-wrap always '{components,content,pages,lib,styles}/**/*.{js,jsx,ts,tsx,scss}'",
"fmt:check": "prettier --check --prose-wrap always '{components,content,pages,lib,styles}/**/*.{js,jsx,ts,tsx,scss}'"
},
"dependencies": {
"bulma": "^0.8.2",
"classnames": "2.5.1",
"glob": "11.0.0",
"gray-matter": "^4.0.3",
"highlight.js": "11.10.0",
"lowlight": "^3.1.0",
"next": "15.0.1",
"react": "19.0.0-rc-69d4b800-20241021",
"react-dom": "19.0.0-rc-69d4b800-20241021",
"rehype-highlight": "7.0.1",
"rehype-raw": "7.0.0",
"rehype-slug": "6.0.0",
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"rss": "^1.2.2",
"sass": "1.80.4",
"unified": "^11.0.5",
"unified-stream": "^3.0.0",
"unist-util-visit": "5.0.0"
},
"devDependencies": {
"@types/node": "^22.8.1",
"@types/react": "npm:[email protected]",
"prettier": "3.3.3",
"typescript": "^5.6.3"
},
"overrides": {
"@types/react": "npm:[email protected]"
}
}