/
lizardking
/
react_final
Обзор
Документация
Войти
/
lizardking
/
react_final
Код
Запросы
1
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
package.json
134 строки
5 KB
LizardKing
Final
24 ноя 2025, 16:19
24 ноя 2025, 16:19
f53ceaf
Код
Авторство
О чём код?
{ "name": "react-final", "version": "1.0.0", "license": "MIT", "type": "module", "devDependencies": { "@babel/core": "^7.22.1", "@babel/preset-env": "^7.28.5", "@babel/preset-react": "^7.28.5", "@babel/preset-typescript": "^7.28.5", "@conarti/eslint-plugin-feature-sliced": "^1.0.5", "@eslint/js": "^9.35.0", "@pmmmwh/react-refresh-webpack-plugin": "^0.6.1", "@svgr/core": "^8.1.0", "@svgr/webpack": "^8.0.1", "@swc/cli": "^0.7.9", "@swc/core": "^1.7.0", "@types/react": "^19.2.5", "@types/react-dom": "^19.1.9", "@typescript-eslint/eslint-plugin": "^8.46.4", "@typescript-eslint/parser": "^8.46.4", "@vitejs/plugin-react": "^5.0.2", "autoprefixer": "^10.4.14", "babel-loader": "^10.0.0", "clean-webpack-plugin": "^4.0.0", "commitizen": "^4.3.1", "copy-webpack-plugin": "^13.0.1", "cross-env": "^10.1.0", "css-loader": "^7.1.2", "cssnano": "^7.1.2", "cz-conventional-changelog": "^3.3.0", "dotenv": "^17.2.3", "esbuild": "^0.25.2", "esbuild-css-modules-plugin": "^3.1.5", "esbuild-html-plugin": "^1.1.0", "esbuild-plugin-copy": "^2.1.1", "esbuild-plugin-svgr": "^3.1.1", "eslint": "^9.39.1", "eslint-config-prettier": "^10.1.8", "eslint-import-resolver-typescript": "^4.4.4", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-import": "^2.32.0", "eslint-plugin-import-x": "^4.16.1", "eslint-plugin-jsx-a11y": "^6.10.2", "eslint-plugin-perfectionist": "^4.15.0", "eslint-plugin-prettier": "^5.5.4", "eslint-plugin-promise": "^7.2.1", "eslint-plugin-react": "^7.37.5", "eslint-plugin-react-hooks": "^7.0.1", "eslint-plugin-react-refresh": "^0.4.20", "eslint-plugin-sonarjs": "^3.0.5", "eslint-plugin-unicorn": "^62.0.0", "fast-glob": "^3.3.3", "globals": "^16.5.0", "html-webpack-plugin": "^5.6.4", "husky": "^9.1.7", "lint-staged": "^16.2.6", "merge": "^2.1.1", "mini-css-extract-plugin": "^2.9.4", "postcss-loader": "^8.2.0", "prettier": "^3.6.2", "react-refresh": "^0.18.0", "react-router-dom": "^7.9.1", "style-loader": "^4.0.0", "stylelint": "^16.25.0", "stylelint-config-recommended": "^17.0.0", "stylelint-config-standard": "^39.0.1", "stylelint-order": "^7.0.0", "ts-loader": "^9.5.4", "tsx": "^4.19.0", "typescript": "~5.8.3", "typescript-eslint": "^8.43.0", "typescript-plugin-css-modules": "^5.2.0", "url-loader": "^4.1.1", "vite": "^7.1.6", "vite-css-modules": "^1.11.1", "vite-plugin-svgr": "^4.5.0", "vite-tsconfig-paths": "^5.1.4", "webpack": "^5.102.1", "webpack-cli": "^6.0.1", "webpack-dev-server": "^5.2.2", "webpack-merge": "^6.0.1" }, "scripts": { "build": "cross-env NODE_ENV=production webpack --config webpack/webpack.config.cjs --env env=prod", "start": "webpack serve --config webpack/webpack.config.cjs --env env=dev", "stylelint": "stylelint \"src/**/*.css\"", "stylelint:fix": "stylelint \"src/**/*.css\" --fix", "lint": "eslint --fix \"./src/**/*.{js,jsx,ts,tsx,json}\"", "format": "prettier --write \"./src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\" --ignore-path ./.prettierignore", "test": "npm run stylelint:fix && npm run lint && npm run format", "prepare": "husky install", "commit": "npm test && cz", "dev": "vite", "preview": "vite preview", "vite-build": "tsc -b && vite build", "es:app:dev": "tsx esbuild.app.config.ts --mode=dev", "es:app:serve": "tsx esbuild.app.config.ts --mode=dev --serve", "es:app:prod": "tsx esbuild.app.config.ts --mode=prod", "es:lib:dev": "tsx esbuild.lib.config.ts --mode=dev", "es:lib:prod": "tsx esbuild.lib.config.ts --mode=prod", "swc:esm": "swc src -d dist/esbuild/swc/esm --config-file .swcrc.esm.json", "swc:cjs": "swc src -d dist/esbuild/swc/cjs --config-file .swcrc.cjs.json" }, "dependencies": { "@emotion/react": "^11.13.0", "@emotion/styled": "^11.13.0", "@hookform/resolvers": "^5.2.2", "@mui/icons-material": "^7.3.5", "@mui/lab": "^7.0.1-beta.19", "@mui/material": "^7.3.5", "@reduxjs/toolkit": "^2.9.0", "classnames": "^2.3.2", "framer-motion": "^12.23.24", "react": "^19.2.0", "react-dom": "^19.2.0", "react-hook-form": "^7.64.0", "react-redux": "^9.2.0", "react-toastify": "^11.0.5", "redux": "^5.0.1", "yup": "^1.7.1" }, "lint-staged": { "*.{css,scss}": "npm stylelint:fix", "*.{js,jsx,ts,tsx}": "npm lint", "*.{js,jsx,ts,tsx,json,css,scss,md}": "npm format" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "homepage": "./" }