Skip to content

Commit a59c88c

Browse files
Merge pull request #59 from TreeHacks/directory-filtering-2023
Directory filtering 2023
2 parents c797107 + 2731818 commit a59c88c

20 files changed

+1469
-841
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
22
.env
3-
.DS_Store
3+
.DS_Store
4+
build/

package-lock.json

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

package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
"main": "src/index.js",
66
"dependencies": {
77
"@aws-amplify/api": "^1.3.3",
8+
"@emotion/react": "^11.10.5",
9+
"@emotion/styled": "^11.10.5",
10+
"@mui/material": "^5.11.1",
811
"@testing-library/jest-dom": "^4.2.4",
912
"@testing-library/react": "^9.3.2",
1013
"@testing-library/user-event": "^7.1.2",
@@ -15,11 +18,10 @@
1518
"fuse.js": "^3.4.6",
1619
"lodash": "^4.17.19",
1720
"lodash.debounce": "^4.0.8",
18-
"node-sass": "^4.13.1",
1921
"query-string": "^5.1.1",
20-
"react": "^16.12.0",
22+
"react": "^18.2.0",
2123
"react-bootstrap-typeahead": "^3.4.7",
22-
"react-dom": "^16.12.0",
24+
"react-dom": "^18.2.0",
2325
"react-ga": "^2.7.0",
2426
"react-jsonschema-form": "^1.8.1",
2527
"react-jsonschema-form-extras": "^0.9.48",
@@ -29,6 +31,7 @@
2931
"react-router-dom": "^5.1.2",
3032
"react-scripts": "^3.4.1",
3133
"react-show-more-text": "^1.3.0",
34+
"sass": "^1.56.1",
3235
"typescript": "^3.7.5"
3336
},
3437
"engines": {

public/.DS_Store

0 Bytes
Binary file not shown.

public/images/favicon/favicon.ico

-11.2 KB
Binary file not shown.

public/images/favicon/favicon.png

1.49 KB
Loading

public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" />
55
<link crossorigin="use-credentials" rel="manifest" href="./manifest.json" />
66

7-
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
7+
<link rel="icon" href="/images/favicon/favicon.png" />
88
<meta name="viewport" content="width=device-width, initial-scale=1" />
99
<meta name="theme-color" content="#000000" />
1010
<meta

public/logo192.png

-5.22 KB
Binary file not shown.

public/logo512.png

-9.44 KB
Binary file not shown.

public/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
"type": "image/x-icon"
99
},
1010
{
11-
"src": "logo192.png",
11+
"src": "favicon/favicon.png",
1212
"type": "image/png",
1313
"sizes": "192x192"
1414
},
1515
{
16-
"src": "logo512.png",
16+
"src": "favicon/favicon.png",
1717
"type": "image/png",
1818
"sizes": "512x512"
1919
}

0 commit comments

Comments
 (0)