Created
November 18, 2019 07:33
-
-
Save kvedantmahajan/0ef7563f76e96d0c5534a5630cfd101a to your computer and use it in GitHub Desktop.
package.json root final
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": "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