This commit is contained in:
Manav Rathi 2024-06-03 15:06:23 +05:30
parent 6b6a81b6a8
commit ac32a33358
No known key found for this signature in database
2 changed files with 8 additions and 9 deletions

View File

@ -33,6 +33,5 @@ module.exports = {
"warn",
{ allowConstantExport: true },
],
},
};

View File

@ -6,9 +6,9 @@
"scripts": {
"build": "tsc && vite build",
"dev": "vite",
"preview": "vite preview",
"lint": "yarn prettier --check --log-level warn . && yarn eslint && yarn tsc",
"lint-fix": "yarn prettier --write --log-level warn . && yarn eslint --fix && yarn tsc"
"lint-fix": "yarn prettier --write --log-level warn . && yarn eslint --fix && yarn tsc",
"preview": "vite preview"
},
"dependencies": {
"react": "^18",
@ -18,18 +18,18 @@
"devDependencies": {
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.2",
"vite": "^5.2",
"eslint": "^8",
"prettier": "^3",
"typescript": "^5",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"@vitejs/plugin-react": "^4.2",
"eslint": "^8",
"eslint-plugin-react": "^7.34",
"eslint-plugin-react-hooks": "^4.6",
"eslint-plugin-react-refresh": "^0.4.7",
"prettier": "^3",
"prettier-plugin-organize-imports": "^3.2",
"prettier-plugin-packagejson": "^2.5"
"prettier-plugin-packagejson": "^2.5",
"typescript": "^5",
"vite": "^5.2"
},
"packageManager": "yarn@1.22.21"
}