You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cudr_slate-collaborative/package.json

36 lines
811 B

{
"private": true,
"version": "0.0.1",
"description": "Slate collaborative plugin & microservice",
"scripts": {
"bootstrap": "lerna bootstrap",
"dev": "concurrently \"lerna run --parallel watch\" \"lerna run dev --stream\"",
"build": "lerna run build --stream",
"prebuild": "lerna clean --yes && rm -rf ./packages/**/lib/",
"format": "prettier --write"
},
"workspaces": [
"packages/*"
],
"author": "cudr",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,babelrc}": [
"yarn run format",
"git add"
]
},
"devDependencies": {
"concurrently": "^4.1.2",
"husky": "^3.0.5",
"lerna": "^3.16.4",
"lint-staged": "^9.2.5",
"prettier": "^1.18.2"
}
}