mirror of
https://github.com/jxnblk/mdx-deck.git
synced 2024-11-10 14:21:06 +03:00
42 lines
760 B
JSON
42 lines
760 B
JSON
{
|
|
"private": true,
|
|
"version": "2.0.0-0",
|
|
"workspaces": [
|
|
"packages/*",
|
|
"templates/*",
|
|
"docs"
|
|
],
|
|
"scripts": {
|
|
"start": "yarn workspace @mdx-deck/docs start",
|
|
"build": "yarn workspace @mdx-deck/docs build",
|
|
"test": "jest"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.3.4",
|
|
"@babel/preset-env": "^7.3.4",
|
|
"@babel/preset-react": "^7.0.0",
|
|
"husky": "^1.3.1",
|
|
"jest": "^24.3.1",
|
|
"lerna": "^3.13.1",
|
|
"lint-staged": "^8.1.5",
|
|
"prettier": "^1.16.4"
|
|
},
|
|
"jest": {
|
|
"coverageReporters": [
|
|
"lcov",
|
|
"html"
|
|
]
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{md,js,json}": [
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|