forked from jxnblk/mdx-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.48 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "mdx-go",
"version": "2.0.0-31",
"description": "Lightning-fast MDX-based dev server",
"bin": {
"mdx-go": "./cli.js"
},
"main": "lib/client/components.js",
"module": "lib/client/components.js",
"sideEffects": false,
"scripts": {
"start": "./cli.js examples/dev",
"build": "./cli.js build examples/dev -d temp",
"help": "./cli.js",
"test": "nyc ava"
},
"keywords": [
"mdx",
"react",
"dev-server",
"development",
"docs",
"documentation",
"static-site"
],
"author": "Brent Jackson",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@babel/runtime": "^7.8.3",
"@mdx-js/loader": "^1.5.4",
"@mdx-js/mdx": "^1.5.4",
"@mdx-js/tag": "^0.20.3",
"@reach/router": "^1.2.1",
"babel-loader": "^8.0.6",
"chalk": "^3.0.0",
"connect": "^3.7.0",
"connect-history-api-fallback": "^1.6.0",
"find-up": "^4.1.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"is-absolute-url": "^3.0.3",
"lodash.get": "^4.4.2",
"lodash.sortby": "^4.7.0",
"mdx-live": "^2.0.0-alpha.2",
"mdx-style": "^2.0.0-alpha.2",
"meow": "^6.0.0",
"pkg-conf": "^3.1.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dev-utils": "^10.0.0",
"react-dom": "^16.12.0",
"read-pkg-up": "^7.0.1",
"remark-autolink-headings": "^5.2.1",
"remark-emoji": "^2.0.2",
"remark-images": "^1.0.0",
"remark-slug": "^5.1.2",
"remark-unwrap-images": "1.0.0",
"resolve-cwd": "^3.0.0",
"rimraf": "^3.0.0",
"serve-static": "^1.14.1",
"update-notifier": "^4.0.0",
"webpack": "^4.41.5",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2",
"webpack-sources": "^1.4.3",
"webpackbar": "^4.0.0"
},
"devDependencies": {
"@babel/polyfill": "^7.8.3",
"@babel/register": "^7.8.3",
"ava": "^2.4.0",
"nyc": "^15.0.0",
"supertest": "^4.0.2"
},
"ava": {
"require": [
"@babel/register",
"@babel/polyfill"
]
}
}