Skip to content

Commit e98ba3d

Browse files
committed
Merge branch 'master-new'
2 parents cdb2288 + a53b973 commit e98ba3d

34 files changed

+7998
-10235
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,3 @@
1515
npm-debug.log*
1616
yarn-debug.log*
1717
yarn-error.log*
18-

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ This repo is for the frontend React app that we build over the course of the tut
88

99
To support the different chapters and steps of the tutorial; we use branches to represent the project codebase at the various points. Here is an index of the various chapters and branches in order.
1010

11-
- [Part I](../../tree/part-1)
12-
- [Part II](../../tree/master)
13-
- [Code Splitting in Create React App](../../tree/code-splitting-in-create-react-app)
11+
- [Initialize the Frontend Repo](../../tree/initialize-the-frontend-repo)
12+
- [Configure AWS Amplify](../../tree/configure-aws-amplify)
13+
- [Redirect on Login](../../tree/redirect-on-login)
14+
- [Create a Build Script](../../tree/create-a-build-script)
1415

1516
#### Usage
1617

@@ -34,5 +35,3 @@ $ npm run start
3435
This repo is maintained by [Anomaly Innovations](https://anoma.ly); makers of [Seed](https://seed.run) and [Serverless Stack](https://serverless-stack.com).
3536

3637
[Email]: mailto:[email protected]
37-
38-

netlify.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
# Always redirect any request to our index.html
2727
# and return the status code 200.
2828
[[redirects]]
29-
from = "/*"
30-
to = "/index.html"
31-
status = 200
29+
from = "/*"
30+
to = "/index.html"
31+
status = 200

package-lock.json

Lines changed: 7385 additions & 9553 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 24 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,36 @@
11
{
2-
"name": "notes-app",
2+
"name": "empty-client",
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
6-
"aws-amplify": "^1.1.6",
7-
"react": "^16.5.2",
6+
"aws-amplify": "^1.1.40",
7+
"react": "^16.9.0",
88
"react-bootstrap": "^0.32.4",
9-
"react-dom": "^16.5.2",
10-
"react-router-bootstrap": "^0.24.4",
11-
"react-router-dom": "^4.3.1",
12-
"react-scripts": "2.0.4",
13-
"react-stripe-elements": "^1.6.0"
9+
"react-dom": "^16.9.0",
10+
"react-router-bootstrap": "^0.25.0",
11+
"react-router-dom": "^5.0.1",
12+
"react-scripts": "3.1.2",
13+
"react-stripe-elements": "^5.0.1"
1414
},
1515
"scripts": {
1616
"start": "react-scripts start",
1717
"build": "react-scripts build",
18-
"test": "react-scripts test --env=jsdom",
18+
"test": "react-scripts test",
1919
"eject": "react-scripts eject"
2020
},
21-
"browserslist": [
22-
">0.2%",
23-
"not dead",
24-
"not ie <= 11",
25-
"not op_mini all"
26-
]
21+
"eslintConfig": {
22+
"extends": "react-app"
23+
},
24+
"browserslist": {
25+
"production": [
26+
">0.2%",
27+
"not dead",
28+
"not op_mini all"
29+
],
30+
"development": [
31+
"last 1 chrome version",
32+
"last 1 firefox version",
33+
"last 1 safari version"
34+
]
35+
}
2736
}

public/android-chrome-192x192.png

0 Bytes
Loading

public/android-chrome-256x256.png

0 Bytes
Loading

public/apple-touch-icon.png

0 Bytes
Loading

public/favicon-16x16.png

0 Bytes
Loading

public/favicon-32x32.png

0 Bytes
Loading

0 commit comments

Comments
 (0)