-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "shower-mdx",
"version": "1.0.0",
"description": "a tool to convert mdx into shower template",
"main": "index.js",
"repository": "https://github.com/varya/shower-mdx.git",
"author": "Varya Stepanova",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"deploy": "gh-pages -d out",
"postinstall": "node ./scripts/copy_assets_to_public.js"
},
"dependencies": {
"@mdx-js/loader": "^1.6.22",
"@next/mdx": "^10.0.6",
"@shower/ribbon": "^3.3.0",
"@shower/shower": "^3.0.0",
"@splitbee/web": "^0.2.4",
"gray-matter": "^4.0.2",
"next": "^10.0.6",
"next-mdx-remote": "^2.1.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"remark-attr": "^0.11.1",
"remark-mark-plus": "^1.0.21",
"remark-sectionize": "^1.1.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.19.0",
"eslint-plugin-react": "^7.22.0",
"gh-pages": "^3.1.0"
}
}