mirror of
https://github.com/carloscuesta/gitmoji.git
synced 2025-12-08 20:14:12 +00:00
* 🏗️ Define monorepo architecture * 🚚 Extract `gitmojis` as an isolated package * 🚚 Extract `website` as an isolated package * 🚚 Clean-up root package.json * ➕ Install `turbo` * 🔧 Setup turborepo * 👷 Use `turbo` in `ci` workflow * 👷 Update `npm-publish` workflow with `turbo` * ♻️ Migrate yarn from `classic` to `berry` * 📝 Update contributing guide * 🎨 Update readme * 📝 Add readme file for `gitmojis` package * 🚚 Move `public` folder to `website` package
25 lines
402 B
JSON
25 lines
402 B
JSON
{
|
|
"name": "gitmoji",
|
|
"private": true,
|
|
"engines": {
|
|
"node": "16"
|
|
},
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"prepare": "husky install",
|
|
"dev": "yarn turbo dev"
|
|
},
|
|
"devDependencies": {
|
|
"husky": "^8.0.0",
|
|
"lint-staged": "^13.0.0",
|
|
"prettier": "2.8.1",
|
|
"turbo": "^1.6.3"
|
|
},
|
|
"volta": {
|
|
"node": "16.15.0"
|
|
},
|
|
"packageManager": "yarn@3.3.1"
|
|
}
|