Skip to content

Instantly share code, notes, and snippets.

@DanielCender
Last active November 30, 2019 23:53
Show Gist options
  • Save DanielCender/3165c59eab0e3c61ccff8680a3116063 to your computer and use it in GitHub Desktop.
Save DanielCender/3165c59eab0e3c61ccff8680a3116063 to your computer and use it in GitHub Desktop.
Example Lerna sub-package package.json file
{
"name": "frontend",
"version": "1.0.0",
"main": "index.html",
"license": "MIT",
"scripts": {
"lint": "eslint --debug index.js",
"dev": "parcel index.html",
"build": "parcel build index.html"
},
"devDependencies": {
"eslint": "^6.7.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^1.7.0",
"parcel-bundler": "^1.12.4"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment