Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 541 Bytes

README.md

File metadata and controls

37 lines (28 loc) · 541 Bytes
  1. init project
yarn init
echo "node_modules" >> .gitignore
git init
  1. Add dependencies
# add runtime dependencies
yarn add react react-dom prop-types axios

# add dev dependencies
yarn add itg-react-scripts eslint-config-adorable --dev
  1. add start script to package.json
"scripts": {
  "start": "itg-react-scripts start"
}
  1. add eslint config to package.json
"eslintConfig": {
  "extends": [ "adorable" ]
}
  1. create public/index.html file
  2. create src/ files
  3. run yarn start