/
lelderbe
/
homework-react
Обзор
Документация
Войти
/
lelderbe
/
homework-react
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
package.json
112 строк
4 KB
lelderbe
test: add Cypress tests
03 июн 2024, 22:55
03 июн 2024, 22:55
591f013
Код
Авторство
О чём код?
{ "name": "react-pro", "version": "1.0.0", "main": "index.js", "license": "MIT", "devDependencies": { "@babel/core": "^7.22.1", "@babel/preset-env": "^7.22.4", "@babel/preset-react": "^7.22.3", "@babel/preset-typescript": "^7.21.5", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.10", "@svgr/webpack": "^8.0.1", "@testing-library/dom": "^10.1.0", "@testing-library/jest-dom": "^6.4.5", "@testing-library/react": "^15.0.7", "@testing-library/user-event": "^14.5.2", "@types/jest": "^29.5.12", "@types/react": "^18.2.0", "@types/react-dom": "^18.2.1", "@types/react-router": "^5.1.20", "@types/react-router-dom": "^5.3.3", "@typescript-eslint/eslint-plugin": "^5.59.11", "@typescript-eslint/parser": "^5.59.11", "autoprefixer": "^10.4.14", "babel-loader": "^9.1.2", "clean-webpack-plugin": "^4.0.0", "commitizen": "^4.3.0", "cross-env": "^7.0.3", "css-loader": "^6.8.1", "cssnano": "^6.0.1", "cypress": "10.10.0", "cz-conventional-changelog": "^3.3.0", "dotenv": "^16.4.5", "eslint": "^8.42.0", "eslint-config-prettier": "^8.8.0", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-import": "^2.27.5", "eslint-plugin-jsx-a11y": "^6.7.1", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-react": "^7.32.2", "eslint-plugin-react-hooks": "^4.6.0", "html-webpack-plugin": "^5.5.1", "husky": "^8.0.3", "identity-obj-proxy": "^3.0.0", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "jest-fetch-mock": "^3.0.3", "lint-staged": "^13.2.2", "merge": "^2.1.1", "mini-css-extract-plugin": "^2.7.6", "postcss-loader": "^7.3.3", "prettier": "^2.8.8", "react-refresh": "^0.14.0", "style-loader": "^3.3.3", "stylelint": "^15.7.0", "stylelint-config-standard": "^33.0.0", "stylelint-order": "^6.0.3", "ts-jest": "^29.1.4", "ts-loader": "^9.4.3", "typescript": "^5.0.4", "typescript-plugin-css-modules": "^5.0.1", "url-loader": "^4.1.1", "webpack": "^5.81.0", "webpack-cli": "^5.0.2", "webpack-dev-server": "^4.15.0" }, "scripts": { "build": "cross-env NODE_ENV=production webpack --config webpack/webpack.config.js --env env=prod", "start": "webpack serve --config webpack/webpack.config.js --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": "yarn stylelint:fix && yarn lint && yarn format", "jest": "jest --config=./jest/jest.config.ts --verbose", "jest:watch": "jest --config=./jest/jest.config.ts --verbose --watch", "cy:run": "cypress run --config-file=\"./cypress/cypress.config.ts\"", "cy:open": "cross-env APP_URL=http://localhost:8080 cypress open --config-file=\"./cypress/cypress.config.ts\"", "prepare": "husky install", "commit": "yarn test && cz" }, "dependencies": { "@emotion/react": "^11.11.4", "@emotion/styled": "^11.11.5", "@hookform/resolvers": "^3.3.4", "@mui/icons-material": "^5.15.15", "@mui/lab": "^5.0.0-alpha.170", "@mui/material": "^5.15.15", "@reduxjs/toolkit": "^2.2.3", "classnames": "^2.3.2", "react": "^18.2.0", "react-dom": "^18.2.0", "react-hook-form": "^7.51.3", "react-redux": "^9.1.1", "react-router-dom": "^6.22.3", "react-toastify": "^10.0.5", "redux": "^5.0.1", "redux-persist": "^6.0.0", "yup": "^1.4.0" }, "lint-staged": { "*.{css,scss}": "yarn stylelint:fix", "*.{js,jsx,ts,tsx}": "yarn lint", "*.{js,jsx,ts,tsx,json,css,scss,md}": "yarn format" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "homepage": "./" }