Skip to content

Commit

Permalink
feat: setup environment
Browse files Browse the repository at this point in the history
  • Loading branch information
tensegrity666 committed Sep 2, 2020
1 parent 9146a4c commit eb81ea8
Show file tree
Hide file tree
Showing 6 changed files with 92 additions and 2 deletions.
88 changes: 88 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"redux": "^4.0.5"
},
Expand Down Expand Up @@ -46,6 +47,7 @@
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"express": "^4.17.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.13",
"prettier": "^2.1.1",
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/components/app/index.test.js → src/app/index.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import { render } from '@testing-library/react';
import App from './App';
import App from '.';

test('renders learn react link', () => {
const { getByText } = render(<App />);
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import { render } from 'react-dom';
import App from './components/app';
import App from './app';
import * as serviceWorker from './serviceWorker';
import './index.css';

Expand Down
File renamed without changes.

0 comments on commit eb81ea8

Please sign in to comment.