forked from tokio-rs/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"name": "tokio-website",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build && npm run build:rss && next export",
"build:rss": "node ./scripts/generate-rss-feed.js",
"start": "next start",
"fmt": "prettier --write --prose-wrap always '{components,content,pages,lib,styles}/**/*.{js,jsx,ts,tsx,scss}'"
},
"dependencies": {
"@next/font": "^13.1.1",
"bulma": "^0.8.2",
"classnames": "^2.3.1",
"glob": "^7.1.7",
"gray-matter": "^4.0.3",
"highlight.js": "^11.7.0",
"next": "13.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"rehype-highlight": "^6.0.0",
"rehype-raw": "^6.1.1",
"rehype-slug": "^5.1.0",
"rehype-stringify": "^9.0.3",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"rss": "^1.2.2",
"sass": "^1.38.1",
"unified": "^10.1.2",
"unified-stream": "^2.0.0",
"unist-util-visit": "^4.1.1"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"prettier": "^2.8.2",
"typescript": "^4.9.4"
}
}