forked from tokio-rs/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 924 Bytes
/
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
{
"name": "tokio-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && npm run build:rss && next export",
"build:rss": "node ./.next/serverless/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": {
"bulma": "^0.8.2",
"classnames": "^2.2.6",
"github-slugger": "^1.3.0",
"glob": "^7.1.6",
"gray-matter": "^4.0.2",
"next": "9.4.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-markdown": "^4.3.1",
"react-syntax-highlighter": "^12.2.1",
"remark-custom-blocks": "^2.5.0",
"rss": "^1.2.2",
"sass": "^1.26.5"
},
"devDependencies": {
"@types/node": "^14.0.1",
"@types/react": "^16.9.35",
"prettier": "^2.0.5",
"typescript": "^3.9.2"
}
}