2019-10-05 08:44:49 +00:00
|
|
|
{
|
|
|
|
"private": true,
|
2020-10-30 11:36:42 +00:00
|
|
|
"version": "0.7.1",
|
2019-10-05 08:44:49 +00:00
|
|
|
"description": "Slate collaborative plugin & microservice",
|
|
|
|
"scripts": {
|
|
|
|
"bootstrap": "lerna bootstrap",
|
2020-10-30 11:36:42 +00:00
|
|
|
"changelog": "auto-changelog -p ./packages/bridge/package.json --template changelog-template.hbs && git add CHANGELOG.md",
|
2020-05-10 13:50:12 +00:00
|
|
|
"clean": "rimraf ./packages/**/lib/ && rimraf ./packages/**/tsconfig.tsbuildinfo && lerna clean --yes",
|
2020-10-30 11:36:42 +00:00
|
|
|
"release": "yarn prebuild && yarn build && lerna version && lerna publish from-package && yarn changelog",
|
2020-05-11 06:21:49 +00:00
|
|
|
"deploy:site": "git subtree push --prefix packages/example heroku master",
|
2020-05-10 13:50:12 +00:00
|
|
|
"dev": "lerna run --stream build:js && concurrently \"yarn watch\" \"lerna run dev --stream\"",
|
2020-05-11 06:21:49 +00:00
|
|
|
"build": "lerna run build:module --stream",
|
2019-10-05 21:24:52 +00:00
|
|
|
"watch": "lerna run --parallel watch",
|
2019-10-22 20:41:04 +00:00
|
|
|
"clean:module": "lerna clean --yes",
|
2020-05-10 13:50:12 +00:00
|
|
|
"prebuild": "yarn clean",
|
2019-10-22 20:41:04 +00:00
|
|
|
"test": "lerna run test --stream",
|
2019-10-05 08:44:49 +00:00
|
|
|
"format": "prettier --write"
|
|
|
|
},
|
2020-05-10 13:50:12 +00:00
|
|
|
"workspaces": [
|
|
|
|
"packages/*"
|
|
|
|
],
|
2019-10-05 08:44:49 +00:00
|
|
|
"author": "cudr",
|
|
|
|
"license": "MIT",
|
2020-05-10 13:50:12 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/cudr/slate-collaborative.git"
|
|
|
|
},
|
2019-10-05 08:44:49 +00:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
2020-06-21 22:23:34 +00:00
|
|
|
"pre-commit": "lint-staged",
|
|
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
2019-10-05 08:44:49 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
2019-10-19 20:29:09 +00:00
|
|
|
"*.{js,jsx,ts,tsx,babelrc}": [
|
2019-10-05 08:44:49 +00:00
|
|
|
"yarn run format",
|
|
|
|
"git add"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-06-21 22:23:34 +00:00
|
|
|
"@commitlint/cli": "^9.0.1",
|
|
|
|
"@commitlint/config-conventional": "^9.0.1",
|
|
|
|
"auto-changelog": "^2.1.0",
|
2019-10-05 08:44:49 +00:00
|
|
|
"concurrently": "^4.1.2",
|
|
|
|
"husky": "^3.0.5",
|
2020-05-10 13:50:12 +00:00
|
|
|
"lerna": "^3.20.2",
|
2019-10-05 08:44:49 +00:00
|
|
|
"lint-staged": "^9.2.5",
|
2020-05-10 13:50:12 +00:00
|
|
|
"prettier": "^1.18.2",
|
|
|
|
"rimraf": "^3.0.2"
|
2020-07-01 22:17:20 +00:00
|
|
|
}
|
2019-10-05 08:44:49 +00:00
|
|
|
}
|