Merge pull request #26 from LucidKobold/upgrades

Upgrades
This commit is contained in:
Lucid Kobold
2022-01-27 13:31:34 -06:00
committed by GitHub
4 changed files with 717 additions and 2092 deletions

View File

@@ -2,7 +2,7 @@
"private": true, "private": true,
"name": "lucid-creations-media-potty-chart", "name": "lucid-creations-media-potty-chart",
"homepage": "https://lucidcreations.media/introducing-code-name-potty-chart/", "homepage": "https://lucidcreations.media/introducing-code-name-potty-chart/",
"version": "v0.0.6.1-pre-alpha", "version": "v0.0.6.2-pre-alpha",
"author": { "author": {
"name": "Lucid Creations Media", "name": "Lucid Creations Media",
"url": "https://lucidcreations.media", "url": "https://lucidcreations.media",
@@ -16,29 +16,30 @@
"pretty": "prettier --write ." "pretty": "prettier --write ."
}, },
"dependencies": { "dependencies": {
"@chakra-ui/react": "^1.7.3", "@chakra-ui/react": "^1.8.1",
"@emotion/react": "^11.7.1", "@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0", "@emotion/styled": "^11.6.0",
"@types/react": "^17.0.38", "@types/react": "^17.0.38",
"date-fns": "^2.28.0", "date-fns": "^2.28.0",
"formik": "^2.2.9", "formik": "^2.2.9",
"framer-motion": "^5.5.5", "framer-motion": "^6.2.3",
"next": "12.0.7", "next": "12.0.9",
"react": "17.0.2", "react": "17.0.2",
"react-dom": "17.0.2", "react-dom": "17.0.2",
"sharp": "^0.29.3" "sharp": "^0.29.3"
}, },
"devDependencies": { "devDependencies": {
"@iconify/react": "^3.1.1", "@iconify/react": "^3.1.3",
"@typescript-eslint/eslint-plugin": "^5.8.0", "@types/node": "^17.0.12",
"eslint": "^8.5.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"eslint-config-next": "12.0.7", "eslint": "^8.7.0",
"eslint-config-next": "12.0.9",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1", "eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1", "eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0", "eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.5.1", "prettier": "^2.5.1",
"typescript": "4.5.4" "typescript": "4.5.5"
}, },
"packageManager": "yarn@3.1.0" "packageManager": "yarn@3.1.0"
} }

View File

@@ -7,7 +7,7 @@ const description =
// "Behavior and progress tracker for ABDLs and babyfurs alike. Track multiple littles and create any trackers you would like."; // "Behavior and progress tracker for ABDLs and babyfurs alike. Track multiple littles and create any trackers you would like.";
"Pre-alpha preview of the behavior and progress tracker for ABDLs and babyfurs."; "Pre-alpha preview of the behavior and progress tracker for ABDLs and babyfurs.";
const logo = "images/logo.svg" const logo = "images/logo.svg";
const logoOG = "/images/logo.png"; const logoOG = "/images/logo.png";
class Document extends NextDocument { class Document extends NextDocument {

View File

@@ -15,7 +15,7 @@ import appLogo from "../../public/images/logo.svg";
const Header = (): JSX.Element => { const Header = (): JSX.Element => {
const appName = "LCM Potty Chart"; const appName = "LCM Potty Chart";
const appVersion = "v0.0.6.1-pre-alpha"; const appVersion = "v0.0.6.2-pre-alpha";
// Add transparency while not at the top of the page. // Add transparency while not at the top of the page.
const [transparentNavbar, setTransparentNavbar] = useState<boolean>(false); const [transparentNavbar, setTransparentNavbar] = useState<boolean>(false);

2786
yarn.lock

File diff suppressed because it is too large Load Diff