@conorheffron/ironoc-frontend 9.0.8 → 9.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +51 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,11 +17,61 @@ The ironoc UI built with react for personal portfolio website.
|
|
|
17
17
|
## Prerequisites
|
|
18
18
|
|
|
19
19
|
- [Node.js](https://nodejs.org/) (`v24` (LTS) recommended)
|
|
20
|
-
- [npm](https://www.npmjs.com/) (comes with Node.js `11
|
|
20
|
+
- [npm](https://www.npmjs.com/) (comes with Node.js `11`)
|
|
21
21
|
|
|
22
22
|
## Tech Stack
|
|
23
23
|
- ReactJs 19, Axios, Apollo Client, GraphQL, HTML5+CSS
|
|
24
24
|
|
|
25
|
+
## Frontend Project Structure
|
|
26
|
+
```shell
|
|
27
|
+
frontend
|
|
28
|
+
├── README.md
|
|
29
|
+
├── package-lock.json
|
|
30
|
+
├── package.json
|
|
31
|
+
├── public
|
|
32
|
+
│ ├── favicon.ico
|
|
33
|
+
│ ├── index.html
|
|
34
|
+
│ ├── manifest.json
|
|
35
|
+
│ ├── robot-logo.png
|
|
36
|
+
│ └── robots.txt
|
|
37
|
+
└── src
|
|
38
|
+
├── App.css
|
|
39
|
+
├── App.js
|
|
40
|
+
├── App.test.js
|
|
41
|
+
├── AppNavbar.js
|
|
42
|
+
├── Footer.js
|
|
43
|
+
├── LoadingSpinner.js
|
|
44
|
+
├── components
|
|
45
|
+
│ ├── About.js
|
|
46
|
+
│ ├── CoffeeCarousel.js
|
|
47
|
+
│ ├── CoffeeHome.js
|
|
48
|
+
│ ├── ControlledCarousel.js
|
|
49
|
+
│ ├── Donate.js
|
|
50
|
+
│ ├── Home.js
|
|
51
|
+
│ ├── NotFound.js
|
|
52
|
+
│ ├── RepoDetails.js
|
|
53
|
+
│ ├── RepoIssues.js
|
|
54
|
+
│ └── __tests__
|
|
55
|
+
│ ├── About.test.js
|
|
56
|
+
│ ├── CoffeCarousel.test.js
|
|
57
|
+
│ ├── CoffeeHome.test.js
|
|
58
|
+
│ ├── ControlledCarousel.test.js
|
|
59
|
+
│ ├── Donate.test.js
|
|
60
|
+
│ ├── Home.test.js
|
|
61
|
+
│ ├── NotFound.test.js
|
|
62
|
+
│ ├── RepoDetails.test.js
|
|
63
|
+
│ └── RepoIssues.test.js
|
|
64
|
+
├── img
|
|
65
|
+
│ ├── darkblue-bg.png
|
|
66
|
+
│ ├── red-bg.png
|
|
67
|
+
│ ├── robot-logo.png
|
|
68
|
+
│ └── teal-bg.png
|
|
69
|
+
├── index.css
|
|
70
|
+
├── index.js
|
|
71
|
+
├── reportWebVitals.js
|
|
72
|
+
└── setupTests.js
|
|
73
|
+
```
|
|
74
|
+
|
|
25
75
|
#### Quick start
|
|
26
76
|
```shell
|
|
27
77
|
cd frontend
|