-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.46 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
45
46
47
48
49
50
51
52
53
{
"name": "mdx-site",
"version": "1.1.0",
"repository": "[email protected]:ericclemmons/mdx-site.git",
"main": "dist/index.js",
"bin": "dist/bin/mdx-site.js",
"files": [
"dist",
"template"
],
"author": "Eric Clemmons <[email protected]>",
"license": "MIT",
"scripts": {
"prebuild": "node -e \"require('fs-extra').emptyDir('dist')\"",
"build": "tsc",
"dev": "cd example && node --require ts-node/register ../src/bin/mdx-site.tsx",
"prerelease": "yarn build",
"release": "np",
"postbuild": "chmod +x $npm_package_bin_mdx_site"
},
"devDependencies": {
"@types/finalhandler": "^1.1.0",
"@types/fs-extra": "^8.0.0",
"@types/html-minifier": "^3.5.3",
"@types/micro": "^7.3.3",
"@types/microrouter": "^3.1.0",
"@types/node": "^12.6.8",
"@types/ora": "^3.2.0",
"@types/webpack-env": "^1.14.0",
"np": "^5.0.3"
},
"dependencies": {
"@mdx-js/runtime": "^1.1.0",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.5",
"escape-string-regexp": "^2.0.0",
"front-matter": "^3.0.2",
"fs-extra": "^8.1.0",
"globby": "^10.0.1",
"hot-module-replacement": "^3.0.3",
"html-minifier": "^4.0.0",
"micro": "^9.3.4",
"microrouter": "^3.1.3",
"ora": "^3.4.0",
"prism-react-renderer": "^0.1.7",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-social-icons": "^4.1.0",
"serve-handler": "^6.1.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
}
}