Skip to content

Instantly share code, notes, and snippets.

@kvedantmahajan
Created November 18, 2019 07:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kvedantmahajan/0ef7563f76e96d0c5534a5630cfd101a to your computer and use it in GitHub Desktop.
Save kvedantmahajan/0ef7563f76e96d0c5534a5630cfd101a to your computer and use it in GitHub Desktop.
package.json root final
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint './packages/**/*.{ts,tsx}'",
"lint:fix": "eslint './packages/**/*.{ts,tsx}' --fix",
"build": "yarn workspace ui-components tsc && yarn workspace ui-core tsc"
},
"devDependencies": {
"lerna": "^3.18.4"
},
"dependencies": {
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.6.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.3.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"typescript": "^3.7.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment