Commit
·
ce28d8b
1
Parent(s):
3317833
Add Material-UI, Emotion, Axios, and Prettier dependencies
Browse files- .yarn/install-state.gz +0 -0
- eslint.config.js +0 -28
- package.json +14 -1
- yarn.lock +0 -0
.yarn/install-state.gz
CHANGED
|
Binary files a/.yarn/install-state.gz and b/.yarn/install-state.gz differ
|
|
|
eslint.config.js
DELETED
|
@@ -1,28 +0,0 @@
|
|
| 1 |
-
import js from '@eslint/js'
|
| 2 |
-
import globals from 'globals'
|
| 3 |
-
import reactHooks from 'eslint-plugin-react-hooks'
|
| 4 |
-
import reactRefresh from 'eslint-plugin-react-refresh'
|
| 5 |
-
import tseslint from 'typescript-eslint'
|
| 6 |
-
|
| 7 |
-
export default tseslint.config(
|
| 8 |
-
{ ignores: ['dist'] },
|
| 9 |
-
{
|
| 10 |
-
extends: [js.configs.recommended, ...tseslint.configs.recommended],
|
| 11 |
-
files: ['**/*.{ts,tsx}'],
|
| 12 |
-
languageOptions: {
|
| 13 |
-
ecmaVersion: 2020,
|
| 14 |
-
globals: globals.browser,
|
| 15 |
-
},
|
| 16 |
-
plugins: {
|
| 17 |
-
'react-hooks': reactHooks,
|
| 18 |
-
'react-refresh': reactRefresh,
|
| 19 |
-
},
|
| 20 |
-
rules: {
|
| 21 |
-
...reactHooks.configs.recommended.rules,
|
| 22 |
-
'react-refresh/only-export-components': [
|
| 23 |
-
'warn',
|
| 24 |
-
{ allowConstantExport: true },
|
| 25 |
-
],
|
| 26 |
-
},
|
| 27 |
-
},
|
| 28 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package.json
CHANGED
|
@@ -10,18 +10,31 @@
|
|
| 10 |
"preview": "vite preview"
|
| 11 |
},
|
| 12 |
"dependencies": {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
"react": "^18.3.1",
|
| 14 |
-
"react-dom": "^18.3.1"
|
|
|
|
| 15 |
},
|
| 16 |
"devDependencies": {
|
| 17 |
"@eslint/js": "^9.17.0",
|
|
|
|
| 18 |
"@types/react": "^18.3.18",
|
| 19 |
"@types/react-dom": "^18.3.5",
|
| 20 |
"@vitejs/plugin-react": "^4.3.4",
|
| 21 |
"eslint": "^9.17.0",
|
|
|
|
|
|
|
|
|
|
| 22 |
"eslint-plugin-react-hooks": "^5.0.0",
|
| 23 |
"eslint-plugin-react-refresh": "^0.4.16",
|
| 24 |
"globals": "^15.14.0",
|
|
|
|
|
|
|
| 25 |
"typescript": "~5.6.2",
|
| 26 |
"typescript-eslint": "^8.18.2",
|
| 27 |
"vite": "^6.0.5"
|
|
|
|
| 10 |
"preview": "vite preview"
|
| 11 |
},
|
| 12 |
"dependencies": {
|
| 13 |
+
"@emotion/react": "latest",
|
| 14 |
+
"@emotion/styled": "latest",
|
| 15 |
+
"@mui/icons-material": "^6.4.1",
|
| 16 |
+
"@mui/material": "^6.4.1",
|
| 17 |
+
"@mui/styled-engine-sc": "^6.4.0",
|
| 18 |
+
"axios": "^1.7.9",
|
| 19 |
"react": "^18.3.1",
|
| 20 |
+
"react-dom": "^18.3.1",
|
| 21 |
+
"react-router-dom": "^7.1.3"
|
| 22 |
},
|
| 23 |
"devDependencies": {
|
| 24 |
"@eslint/js": "^9.17.0",
|
| 25 |
+
"@types/axios": "^0.14.4",
|
| 26 |
"@types/react": "^18.3.18",
|
| 27 |
"@types/react-dom": "^18.3.5",
|
| 28 |
"@vitejs/plugin-react": "^4.3.4",
|
| 29 |
"eslint": "^9.17.0",
|
| 30 |
+
"eslint-config-prettier": "^9.1.0",
|
| 31 |
+
"eslint-plugin-import": "^2.31.0",
|
| 32 |
+
"eslint-plugin-prettier": "^5.2.1",
|
| 33 |
"eslint-plugin-react-hooks": "^5.0.0",
|
| 34 |
"eslint-plugin-react-refresh": "^0.4.16",
|
| 35 |
"globals": "^15.14.0",
|
| 36 |
+
"prettier": "^3.4.2",
|
| 37 |
+
"prettier-eslint": "^16.3.0",
|
| 38 |
"typescript": "~5.6.2",
|
| 39 |
"typescript-eslint": "^8.18.2",
|
| 40 |
"vite": "^6.0.5"
|
yarn.lock
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|