mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
82165673fb
Summary: This PR is part of https://github.com/react-native-community/releases/issues/157#issuecomment-582504146 Adding eslint back to the template package.json ## Changelog [Internal] [Fixed] - Add eslint back in template Pull Request resolved: https://github.com/facebook/react-native/pull/27983 Test Plan: (edited) - npx react-native init RN062 --version 0.62.0-rc.1 - yarn add -d eslint - add npm script for lint - yarn lint Differential Revision: D19784567 Pulled By: TheSavior fbshipit-source-id: 9ce24c0b674c2b1ea9fee3ed5614e8922f992f72
30 lines
677 B
JSON
30 lines
677 B
JSON
{
|
|
"name": "HelloWorld",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"android": "react-native run-android",
|
|
"ios": "react-native run-ios",
|
|
"start": "react-native start",
|
|
"test": "jest",
|
|
"lint": "eslint ."
|
|
},
|
|
"dependencies": {
|
|
"react": "16.12.0",
|
|
"react-native": "1000.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.8.4",
|
|
"@babel/runtime": "^7.8.4",
|
|
"@react-native-community/eslint-config": "^0.0.7",
|
|
"babel-jest": "^25.1.0",
|
|
"eslint": "^6.5.1",
|
|
"jest": "^25.1.0",
|
|
"metro-react-native-babel-preset": "^0.58.0",
|
|
"react-test-renderer": "16.12.0"
|
|
},
|
|
"jest": {
|
|
"preset": "react-native"
|
|
}
|
|
}
|