1
1
mirror of https://github.com/jxnblk/mdx-deck.git synced 2024-09-20 03:18:57 +03:00
mdx-deck/package.json
2019-07-16 13:43:55 -04:00

45 lines
801 B
JSON

{
"private": true,
"workspaces": [
"packages/*",
"templates/*",
"examples/*",
"docs"
],
"scripts": {
"start": "yarn workspace @mdx-deck/docs start",
"build": "yarn workspace @mdx-deck/docs build",
"export": "yarn workspace @mdx-deck/export pdf",
"test": "jest"
},
"devDependencies": {
"husky": "^3.0.0",
"jest": "^24.3.1",
"lerna": "^3.13.1",
"lint-staged": "^9.1.0",
"prettier": "^1.16.4"
},
"jest": {
"coverageReporters": [
"lcov",
"html"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/.cache/",
"/public/"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
]
}
}