-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Alejandro Hernandez
committed
Nov 21, 2023
1 parent
0f572b2
commit 06fa714
Showing
21 changed files
with
2,777 additions
and
2,006 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
module.exports = { | ||
root: true, | ||
extends: [ | ||
"eslint:recommended", | ||
"plugin:import/recommended", | ||
"plugin:react/recommended", | ||
"plugin:react/jsx-runtime", | ||
], | ||
parserOptions: { | ||
ecmaVersion: "latest", | ||
sourceType: "module", | ||
ecmaFeatures: { | ||
jsx: true, | ||
}, | ||
}, | ||
env: { | ||
browser: true, | ||
es2023: true, | ||
}, | ||
rules: { | ||
"import/extensions": [2, { js: "always" }], | ||
"react/display-name": "off", | ||
"react/prop-types": "off", | ||
"no-unused-vars": ["error", { ignoreRestSiblings: true }], | ||
}, | ||
settings: { | ||
react: { | ||
version: "detect", | ||
}, | ||
}, | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,38 @@ | ||
{ | ||
"name": "macro-planning", | ||
"license": "MIT", | ||
"version": "0.0.0", | ||
"private": true, | ||
"version": "0.1.0", | ||
"type": "module", | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"dev": "vite --open", | ||
"build": "vite build", | ||
"preview": "vite preview", | ||
"predeploy": "vite build", | ||
"test": "vitest run", | ||
"lint": "eslint ./src", | ||
"lint": "eslint --ext js,jsx .", | ||
"deploy": "gh-pages -d build" | ||
}, | ||
"dependencies": { | ||
"@chakra-ui/react": "^2.3.7", | ||
"@emotion/react": "^11.10.5", | ||
"@emotion/styled": "^11.10.5", | ||
"@tanstack/react-table": "^8.3.3", | ||
"ajv": "^8.11.0", | ||
"framer-motion": "^7.5.3", | ||
"futil": "^1.71.5", | ||
"@chakra-ui/react": "^2.8.2", | ||
"@emotion/react": "^11.11.1", | ||
"@emotion/styled": "^11.11.0", | ||
"@tanstack/react-table": "^8.10.7", | ||
"ajv": "^8.12.0", | ||
"framer-motion": "^10.16.5", | ||
"futil": "^1.76.0", | ||
"lodash": "^4.17.21", | ||
"mobx": "^6.7.0", | ||
"mobx-react-lite": "^3.4.0", | ||
"mobx-state-tree": "^5.1.6", | ||
"mobx": "^6.11.0", | ||
"mobx-react-lite": "^3.4.3", | ||
"mobx-state-tree": "^5.3.0", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"react-icons": "^4.6.0", | ||
"safe-stable-stringify": "^2.4.0" | ||
"react-icons": "^4.12.0", | ||
"safe-stable-stringify": "^2.4.3" | ||
}, | ||
"devDependencies": { | ||
"@vitejs/plugin-react": "^3.0.1", | ||
"eslint": "^8.32.0", | ||
"eslint-plugin-import": "^2.27.5", | ||
"eslint-plugin-react": "^7.31.10", | ||
"gh-pages": "^4.0.0", | ||
"prettier": "^2.7.1", | ||
"vite": "^4.0.4", | ||
"vitest": "^0.27.2" | ||
"@vitejs/plugin-react": "^4.2.0", | ||
"eslint": "^8.54.0", | ||
"eslint-plugin-import": "^2.29.0", | ||
"eslint-plugin-react": "^7.33.2", | ||
"gh-pages": "^6.1.0", | ||
"prettier": "^3.1.0", | ||
"vite": "^5.0.0", | ||
"vitest": "^0.34.6" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = { | ||
semi: false, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.