Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

Open brush integration #20

Draft
wants to merge 16 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ node_modules/
.env
.env.dev
.env.live
build
.idea/*
Copy link
Contributor

@foxtrotluna foxtrotluna Nov 29, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nitpick, but .idea/* and other IDE related config ignores should be in your local global gitignore file IMO. Happy to leave this, but most places I've worked only have gitignore ignore files that might be generated/required by the app specifically.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fair point. It's good practice and is probably something I should be doing anyway.

29,149 changes: 26,045 additions & 3,104 deletions package-lock.json

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,30 @@
"version": "0.1.7",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-regular-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@reduxjs/toolkit": "^1.5.1",
"bootstrap": "^4.6.0",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.16",
"@reduxjs/toolkit": "^1.6.2",
"bootstrap": "^4.6.1",
"formik": "^2.2.9",
"icosa-viewer": "^0.5.1",
"icosa-viewer": "^0.6.0",
"moment": "^2.29.1",
"node-sass": "4.14.1",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-bootstrap": "^1.5.2",
"react-bootstrap": "^1.6.4",
"react-dom": "^17.0.2",
"react-google-login": "^5.2.2",
"react-lorem-ipsum": "^1.4.9",
"react-pro-sidebar": "^0.6.0",
"react-redux": "^7.2.3",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"react-redux": "^7.2.6",
"react-router-dom": "^5.3.0",
"react-scripts": "^4.0.3",
"recoil": "^0.1.3",
"redux": "^4.0.5",
"styled-components": "^5.2.3"
"redux": "^4.1.2",
"sass": "^1.69.5",
"styled-components": "^5.3.3"
},
"scripts": {
"start": "react-scripts start",
Expand Down
Loading