You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.8 KiB
JSON
62 lines
1.8 KiB
JSON
{
|
|
"name": "shop",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"description": "Game Shop",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "vite",
|
|
"dev": "vite",
|
|
"build": "tsc -b && vite build",
|
|
"lint": "eslint .",
|
|
"preview": "vite preview",
|
|
"prepare": "cd .. && husky frontend/.husky",
|
|
"preter": "npx eslint-config-prettier"
|
|
},
|
|
"dependencies": {
|
|
"@emotion/react": "^11.14.0",
|
|
"@emotion/styled": "^11.14.1",
|
|
"@fontsource/roboto": "^5.2.8",
|
|
"@hookform/resolvers": "^5.2.2",
|
|
"@mui/icons-material": "^7.3.4",
|
|
"@mui/material": "^7.3.4",
|
|
"@reduxjs/toolkit": "^2.9.2",
|
|
"react": "^19.1.1",
|
|
"react-dom": "^19.1.1",
|
|
"react-hook-form": "^7.66.0",
|
|
"react-redux": "^9.2.0",
|
|
"react-router-dom": "^7.9.5",
|
|
"react-toastify": "^11.0.5",
|
|
"redux-thunk": "^3.1.0",
|
|
"yup": "^1.7.1"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.36.0",
|
|
"@types/node": "^24.6.0",
|
|
"@types/react": "^19.1.16",
|
|
"@types/react-dom": "^19.1.9",
|
|
"@vitejs/plugin-react": "^5.0.4",
|
|
"clsx": "^2.1.1",
|
|
"eslint": "^9.36.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
"eslint-plugin-react-refresh": "^0.4.22",
|
|
"globals": "^16.4.0",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^16.2.6",
|
|
"prettier": "3.6.2",
|
|
"typescript": "~5.9.3",
|
|
"typescript-eslint": "^8.45.0",
|
|
"vite": "^7.1.7"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,mjs,cjs,jsx,ts,tsx}": [
|
|
"npx prettier --write",
|
|
"npx eslint --fix"
|
|
],
|
|
"*.{css,json,md,html,js.flow}": [
|
|
"npx prettier --write"
|
|
]
|
|
}
|
|
}
|