Last active
November 30, 2019 23:53
-
-
Save DanielCender/3165c59eab0e3c61ccff8680a3116063 to your computer and use it in GitHub Desktop.
Example Lerna sub-package package.json file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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