1
1
mirror of https://github.com/jxnblk/mdx-deck.git synced 2024-09-20 11:27:14 +03:00
mdx-deck/package.json
2019-02-17 15:01:55 -05:00

115 lines
3.0 KiB
JSON

{
"name": "mdx-deck",
"version": "1.8.2",
"description": "MDX-based presentation decks",
"main": "dist/index.js",
"bin": {
"mdx-deck": "./cli.js"
},
"scripts": {
"prepare": "babel src -d dist",
"watch": "babel src -d dist --watch",
"start": "./cli.js docs/index.mdx -p 8080",
"build": "./cli.js build docs/index.mdx -d site",
"__pdf": "./cli.js pdf docs/index.mdx -d site",
"__screenshot": "./cli.js screenshot docs/index.mdx -d docs",
"help": "./cli.js",
"test": "jest"
},
"keywords": [],
"author": "Brent Jackson",
"license": "MIT",
"repository": "github:jxnblk/mdx-deck",
"dependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@mdx-js/mdx": "^0.15.7",
"@mdx-js/tag": "^0.15.6",
"@reach/router": "^1.2.1",
"ansi-html": "0.0.7",
"babel-loader": "^8.0.5",
"babel-plugin-styled-components": "^1.10.0",
"chalk": "^2.4.2",
"clipboardy": "^1.2.3",
"connect": "^3.6.6",
"connect-history-api-fallback": "^1.6.0",
"find-up": "^3.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"get-port": "^4.1.0",
"hhmmss": "^1.0.0",
"html-entities": "^1.2.1",
"koa": "^2.7.0",
"koa-static": "^5.0.0",
"koa-webpack": "^5.2.1",
"loader-utils": "^1.2.3",
"lodash.debounce": "^4.0.8",
"lodash.get": "^4.4.2",
"meow": "^5.0.0",
"mini-html-webpack-plugin": "^0.2.3",
"mkdirp": "^0.5.1",
"normalize-newline": "^3.0.0",
"pkg-conf": "^2.1.0",
"progress-bar-webpack-plugin": "^1.12.1",
"prop-types": "^15.7.2",
"querystring": "^0.2.0",
"react": "^16.8.2",
"react-dev-utils": "^7.0.3",
"react-dom": "^16.8.2",
"react-swipeable": "^5.0.1",
"react-syntax-highlighter": "^10.1.3",
"remark-emoji": "^2.0.2",
"remark-unwrap-images": "^0.1.0",
"rimraf": "^2.6.3",
"styled-components": "^4.1.3",
"styled-system": "^3.2.1",
"webpack": "^4.29.4",
"webpack-hot-client": "^4.1.1",
"webpack-merge": "^4.2.1",
"webpack-node-externals": "^1.7.2"
},
"peerDependencies": {},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@rebass/grid": "^6.0.0-7",
"husky": "^1.3.1",
"jest": "^24.1.0",
"jest-styled-components": "^6.3.1",
"lint-staged": "^8.1.4",
"mdx-deck-code-surfer": "^0.5.5",
"prettier": "^1.16.4",
"react-test-renderer": "^16.8.2"
},
"jest": {
"roots": [
"<rootDir>/test/"
],
"testMatch": [
"**/test/**/*.js"
],
"testURL": "http://localhost/",
"coverageReporters": [
"html"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"jsxBracketSameLine": true
}
}