forked from denoland/doc_website
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 960 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
34
{
"name": "deno-doc",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write **.tsx **.ts **.js **.json"
},
"dependencies": {
"isomorphic-unfetch": "^3.0.0",
"next": "9.3.3",
"preact": "^10.3.4",
"preact-render-to-string": "^5.1.4",
"react": "github:preact-compat/react#1.0.0",
"react-dom": "github:preact-compat/react-dom#1.0.0",
"react-markdown": "^4.3.1",
"react-ssr-prepass": "npm:preact-ssr-prepass@^1.0.1",
"react-syntax-highlighter": "^12.2.1",
"swr": "^0.2.0",
"tailwindcss": "^1.2.0"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^2.1.0",
"@types/node": "^13.7.7",
"@types/react": "^16.9.23",
"@types/react-syntax-highlighter": "^11.0.4",
"autoprefixer": "^9.7.4",
"postcss-import": "^12.0.1",
"prettier": "^2.0.4",
"typescript": "^3.8.3"
}
}